Commit 3a5fe122 authored by Nicolas Wavrant's avatar Nicolas Wavrant

erp5_payroll_l10n_fr: declare dates on trainee's invidual contributions

parent 92bfec97
......@@ -215,15 +215,15 @@ for movement in context.PaySheetTransaction_getMovementList():
trainee_bonus = movement.base
result['taxable_base'][('02', '')] = {
'code': '02',
'start_date': '',
'stop_date': '',
'start_date': movement.getStartDate(),
'stop_date': movement.getStopDate(),
'base': 0.,
'contract_id': ''
}
result['taxable_base'][('03', '')] = {
'code': '03',
'start_date': '',
'stop_date': '',
'start_date': movement.getStartDate(),
'stop_date': movement.getStopDate(),
'base': 0.,
'contract_id': ''
}
......
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