Commit a056536a authored by Kevin Deldycke's avatar Kevin Deldycke

Show taxable net salary details on paysheet PDF.

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@10958 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 6deec1cb
...@@ -162,24 +162,26 @@ ...@@ -162,24 +162,26 @@
<td><tal:block replace="python: details[\'totals\'][\'taxable_net_salary\']"\n <td><tal:block replace="python: details[\'totals\'][\'taxable_net_salary\']"\n
condition="python: details[\'totals\'].has_key(\'taxable_net_salary\')"/> </td>\n condition="python: details[\'totals\'].has_key(\'taxable_net_salary\')"/> </td>\n
</tr>\n </tr>\n
\n <tal:block repeat="group python: details[\'groups\']">\n
<!--\n <tal:block condition="python: group[\'id\'] not in [GROSS_SALARY_GROUP_ID, ADDENDUM_GROUP_ID]"\n
<tal:block repeat="category paysheet_categories">\n repeat="line python: group[\'sublines\']">\n
<tal:block define="paysheet_lines python: paysheet_categories[category][\'lines\']">\n <tr tal:condition="python: line[\'taxable\'] == True" stylecmd="(\'LEFTPADDING\',8)">\n
<tal:block repeat="line paysheet_lines">\n <td><tal:block content="python: \' \' + line[\'service_title\']"/> </td>\n
<tr tal:condition="python: line.has_key(\'taxable\') and line[\'taxable\']==\'yes\'">\n <td><tal:block content="python: line[\'salary_range_title\']"/> </td>\n
<td> <tal:block content="python: line[\'title\']"/></td>\n <td><tal:block content="python: line[\'base\']"\n
<td> <tal:block content="python: line[\'base_name\']"/></td>\n condition="python: line[\'base\'] != None"/> </td>\n
<td> <tal:block replace="python: \'%.2f\' % line[\'base\']" tal:condition="python: line[\'base\'] not in (\'\', None)"></tal:block></td>\n <td><tal:block content="python: line[\'employer_rate\']"\n
<td> </td>\n condition="python: line[\'employer_rate\'] != None"/> </td>\n
<td> </td>\n <td><tal:block content="python: line[\'employer_share\']"\n
<td> <tal:block replace="python: \'%.3f %%\' % line[\'employee_share_rate\']" tal:condition="python: line[\'employee_share_rate\'] not in (\'\', None)"></tal:block></td>\n condition="python: line[\'employer_share\'] != None"/> </td>\n
<td> <tal:block replace="python: \'%.2f\' % abs(float(line[\'employee_share\']))" tal:condition="python: line[\'employee_share\'] not in (\'\', None)"></tal:block></td>\n <td><tal:block content="python: line[\'employee_rate\']"\n
</tr>\n condition="python: line[\'employee_rate\'] != None"/> </td>\n
</tal:block>\n <td><tal:block content="python: line[\'employee_share\']"\n
condition="python: line[\'employee_share\'] != None"/> </td>\n
</tr>\n
</tal:block>\n </tal:block>\n
</tal:block>\n </tal:block>\n
-->\n \n
<tr tal:attributes="stylecmd boldstyle">\n <tr tal:attributes="stylecmd boldstyle">\n
<td>Salaire Net</td>\n <td>Salaire Net</td>\n
<td> </td>\n <td> </td>\n
......
2006-10-26 Kevin 2006-10-26 Kevin
* Calculate taxable grand total on printing.
* Fix french employer rate. * Fix french employer rate.
* Fix some UI and fields name.
* Print total payment on PDF. * Print total payment on PDF.
* Format PDF values according currency. * Format PDF values according currency.
......
115 117
\ No newline at end of file \ No newline at end of file
0.2.7 0.2.8
\ No newline at end of file \ No newline at end of file
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