commit
259e36e139
|
|
@ -2414,8 +2414,8 @@ class HrPayslipRun(models.Model):
|
||||||
[data] = self.read()
|
[data] = self.read()
|
||||||
from_date = str(self.date_start)
|
from_date = str(self.date_start)
|
||||||
to_date = str(self.date_end)
|
to_date = str(self.date_end)
|
||||||
holiday_start_date = str(self.holiday_start_date)
|
holiday_start_date = str(self.holiday_start_date) if self.holiday_start_date else False
|
||||||
holiday_end_date = str(self.holiday_end_date)
|
holiday_end_date = str(self.holiday_end_date) if self.holiday_end_date else False
|
||||||
start_time = time.time()
|
start_time = time.time()
|
||||||
|
|
||||||
#worked_days, emps, dictionary = [], [], []
|
#worked_days, emps, dictionary = [], [], []
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue