minor fix

This commit is contained in:
wilson gomez 2022-02-04 10:50:27 -05:00
parent 38388ad3f0
commit 766c10971b

View file

@ -508,7 +508,8 @@ class Payroll(metaclass=PoolMeta):
[
('employee', '=', self.employee),
('state', '=', 'in_progress'),
('start_date', '<=', self.end)
('start_date', '<=', self.end),
('unit_price_formula', '!=', None)
]
])
absenteeism_days = 0