Commit f020dce2 authored by Nicolas Wavrant's avatar Nicolas Wavrant

erp5_payroll_l10n_fr: always declare application dates for individual taxes

parent 4c59a549
......@@ -73,8 +73,8 @@ def makeCTPBlock(movement, category):
def makeTaxableBaseBlock(movement, category):
return {
'code': category,
'start_date': (movement.getStartDate() if category in ('07', '28', '29', '31') else ''),
'stop_date': (movement.getStopDate() if category in ('07', '28', '29', '31') else ''),
'start_date': movement.getStartDate(),
'stop_date': movement.getStopDate(),
'base': movement.base,
'contract_id': movement.PaySheetTransactionLine_getInsuranceContractId()
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment