Project

General

Profile

Actions

Patch #14735

open

Allow negative time entries

Added by Jérôme BATAILLE over 10 years ago. Updated over 5 years ago.

Status:
New
Priority:
Normal
Assignee:
-
Category:
Time tracking
Target version:
-
Start date:
Due date:
% Done:

0%

Estimated time:

Files

Actions #1

Updated by Rahil Rafiq over 10 years ago

  • File zakatcalc.xls added
Actions #2

Updated by Jérôme BATAILLE over 10 years ago

Here is the first patch (Redmine::CoreExtensions::String::Conversions.to_hours).

I will furnish the last one (TimeEntry model validations) soon.

Actions #3

Updated by Etienne Massip over 10 years ago

  • File deleted (zakatcalc.xls)
Actions #4

Updated by Jean-Philippe Lang about 10 years ago

Why should we allow negative time entries BTW?

Actions #5

Updated by Daniel Felix about 10 years ago

Well I'm not sure either.

Maybe for a different use case like planning time savings. But I don't need this.

Actions #6

Updated by Jérôme BATAILLE about 10 years ago

Jean-Philippe Lang wrote:

Why should we allow negative time entries BTW?

It's very simple, time spent are reported in our billing software each month.
When the month is validated, we must not changed previous time spent.
So if we want to make fixes of previous months, but stay in line between Redmine and other software, we can use negative hours to cancel previous wrong time entries.
Thus time spent if fixed on the next month, with keeping previously entered values.

We have tested negative hours and it works pretty well.

Actions #7

Updated by Jérôme BATAILLE about 10 years ago

By the way, the previous patch has issues.
Here is a more correct version.

Actions #8

Updated by Etienne Massip about 10 years ago

  • Category set to Time tracking

Jérôme BATAILLE wrote:

Jean-Philippe Lang wrote:

Why should we allow negative time entries BTW?

It's very simple, time spent are reported in our billing software each month.
When the month is validated, we must not changed previous time spent.
So if we want to make fixes of previous months, but stay in line between Redmine and other software, we can use negative hours to cancel previous wrong time entries.
Thus time spent if fixed on the next month, with keeping previously entered values.

We have tested negative hours and it works pretty well.

Not sure either it's a good idea to store adjustments in Redmine which is not a billing system, maybe a plugin could do it?

Actions #9

Updated by Jérôme BATAILLE about 10 years ago

Etienne Massip wrote:

Not sure either it's a good idea to store adjustments in Redmine which is not a billing system, maybe a plugin could do it?

It's just a question of extending the possible values.
for now, it's : 0 <= spent_hours < 1000

It's only an enhancement to allow -1000 < spent_hours < 1000

The only places to modify are :
  • the display helpers :
    • to_hours
    • l_hours
  • the validation

Pretty simple.

We have done the missing modifications in our plugin, but it would be very great to have no need to put these in it.

To explain our Redmine use :

This enhancement is properly to address the issue of software separation.
In our company we had a lot of demands to extend Redmine to satisfy constraints :
  • time_spent in days
  • hours by day management
  • etc.
    We choiced to keep the way Redmine works, Redmine gathers hours that's all.

We are now modifying our business processes to track time with Redmine, and I suppose it's the normal choice that finish to appear, for companies that use Redmine as their main tracking software.
If you use it to be able to tell what are people are doing precisely, it's the right place to gather the duration of their actions.
The direct consequence is that collected time spent has to be exported each month (or more often) in another software with budget tracking constraints.

Thus time spent has to be exported, and then adapted to budget and billing constraints.

But allowing negative values is a simple way to allow Redmine to cope with input errors, while keeping a trace of the first input. This issue is linked too, to the fact that time_entries modifications are not journalized.

In fact we have even developed a big enhancement to be able to track too the budget and remaining time, and thus manage follow-up on our projects. Same choice, these data are exported and then adapted to budget and billing constraints.

So Redmine is really adapted to the buisness processes of a big company, but it has only to be tweaked on some very few and minor points.

Actions #10

Updated by Jérôme BATAILLE almost 10 years ago

Hi, any chance that this enhancement can be examined ?

The patch is very simple and straightforward. We have been using it for more than 2 years and it works perfectly.

Actions #11

Updated by Edilberto Monje over 9 years ago

Hi, In the patch (.diff) have a little error.

In the code of the patch miss a i letter. Check the next line:
s.gsub!(%r{^((?\d+)\s*(h|hours?))?\s*((\d+)\s*(m|min)?)?$}) { |m| ($1 || $4) ? ($2.to_i + $5.to_i / 60.0 * ($2.to_i > 0 ? 1 : -1)) : m0 } <<WRONG
s.gsub!(%r{^((
?\d+)\s*(h|hours?))?\s*((\d+)\s*(m|min)?)?$}i) { |m| ($1 || $4) ? ($2.to_i + $5.to_i / 60.0 * ($2.to_i > 0 ? 1 : -1)) : m0 } <<CORRECT

And it's necessary change the file /app/models/time_entry.rb :
........
def validate_time_entry
errors.add :hours, :invalid if hours && (hours <= -1000 || hours >= 1000)
errors.add :project_id, :invalid if project.nil?
errors.add :issue_id, :invalid if (issue_id && !issue) || (issue && project!=issue.project)
end
........
In order to admit values negatives.

Best.

Actions #12

Updated by Edilberto Monje over 9 years ago

One bug more: Report don't show negative values.

We can correct this changing the following lines in the files:

./app/views/timelog/_report_criteria.html.erb: <td class="hours"><%= html_hours("%.2f" % sum) if sum > 0 ></td>
./app/views/timelog/_report_criteria.html.erb: <td class="hours"><
= html_hours("%.2f" % total) if total > 0 ></td>
./app/views/timelog/report.html.erb: <td class="hours"><
= html_hours("%.2f" % sum) if sum > 0 ></td>
./app/views/timelog/report.html.erb: <td class="hours"><
= html_hours("%.2f" % total) if total > 0 %></td>

Change this lines inside the files as in the next:

./app/views/timelog/_report_criteria.html.erb: <td class="hours"><%= html_hours("%.2f" % sum) if sum > -1000 ></td>
./app/views/timelog/_report_criteria.html.erb: <td class="hours"><
= html_hours("%.2f" % total) if total > -1000 ></td>
./app/views/timelog/report.html.erb: <td class="hours"><
= html_hours("%.2f" % sum) if sum > -1000 ></td>
./app/views/timelog/report.html.erb: <td class="hours"><
= html_hours("%.2f" % total) if total > -1000 %></td>

Best.

Actions #13

Updated by Jérôme BATAILLE over 9 years ago

Edilberto, all your remarks about the other places to modify are correct.

what is the aim to add an i to the regular expression, we use it on our side without it.

Actions #14

Updated by Jérôme BATAILLE over 9 years ago

I have not found any mention of this i on the internet, and it's not used with the others regexp, could it be a typo ?

Actions #15

Updated by Joachim Müller about 9 years ago

+1 for allowing negative time entries

Actions #16

Updated by Sebastian Paluch over 5 years ago

+1

Jean-Philippe Lang wrote:

Why should we allow negative time entries BTW?

Editing spent time does not leave a trace in the journals, so, we don't allow to do that. Adding negative values allows to make corrections but keep the history.

Actions

Also available in: Atom PDF