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