Fixed issue #1315 - Time Accounting not showing all tickets, time is missing completly of specific ticket.
This commit is contained in:
parent
4011c88493
commit
f102c61f95
1 changed files with 3 additions and 3 deletions
|
@ -8,7 +8,7 @@ class TimeAccountingsController < ApplicationController
|
||||||
year = params[:year] || Time.zone.now.year
|
year = params[:year] || Time.zone.now.year
|
||||||
month = params[:month] || Time.zone.now.month
|
month = params[:month] || Time.zone.now.month
|
||||||
|
|
||||||
start_periode = Date.parse("#{year}-#{month}-01")
|
start_periode = Time.parse("#{year}-#{month}-01")
|
||||||
end_periode = start_periode.end_of_month
|
end_periode = start_periode.end_of_month
|
||||||
|
|
||||||
time_unit = {}
|
time_unit = {}
|
||||||
|
@ -217,7 +217,7 @@ class TimeAccountingsController < ApplicationController
|
||||||
year = params[:year] || Time.zone.now.year
|
year = params[:year] || Time.zone.now.year
|
||||||
month = params[:month] || Time.zone.now.month
|
month = params[:month] || Time.zone.now.month
|
||||||
|
|
||||||
start_periode = Date.parse("#{year}-#{month}-01")
|
start_periode = Time.parse("#{year}-#{month}-01")
|
||||||
end_periode = start_periode.end_of_month
|
end_periode = start_periode.end_of_month
|
||||||
|
|
||||||
time_unit = {}
|
time_unit = {}
|
||||||
|
@ -297,7 +297,7 @@ class TimeAccountingsController < ApplicationController
|
||||||
year = params[:year] || Time.zone.now.year
|
year = params[:year] || Time.zone.now.year
|
||||||
month = params[:month] || Time.zone.now.month
|
month = params[:month] || Time.zone.now.month
|
||||||
|
|
||||||
start_periode = Date.parse("#{year}-#{month}-01")
|
start_periode = Time.parse("#{year}-#{month}-01")
|
||||||
end_periode = start_periode.end_of_month
|
end_periode = start_periode.end_of_month
|
||||||
|
|
||||||
time_unit = {}
|
time_unit = {}
|
||||||
|
|
Loading…
Reference in a new issue