[I18N] Update translation templates with latest term changes
[odoo/odoo.git] / addons / hr_payroll / views / report_contributionregister.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <openerp>
3 <data>
4 <template id="report_contributionregister">
5     <t t-call="report.html_container">
6         <t t-foreach="docs" t-as="o">
7             <t t-call="report.external_layout">
8                 <div class="page">
9                     <h2>PaySlip Lines by Contribution Register</h2>
10
11
12                     <div class="row mt32 mb32">
13                         <div class="col-xs-3">
14                             <strong>Register Name:</strong>
15                             <p t-field="o.name"/>
16                         </div>
17                         <div class="col-xs-3">
18                             <strong>Date From:</strong>
19                             <p t-esc="data['form']['date_from']"/>
20                         </div>
21                         <div class="col-xs-3">
22                             <strong>Date To:</strong>
23                             <p t-esc="data['form']['date_to']"/>
24                         </div>
25                     </div>
26
27                     <table class="table table-condensed">
28                         <thead>
29                             <tr>
30                                 <th>PaySlip Name</th>
31                                 <th>Code</th>
32                                 <th>Name</th>
33                                 <th>Quantity/Rate</th>
34                                 <th>Amount</th>
35                                 <th>Total</th>
36                             </tr>
37                         </thead>
38                         <tbody>
39                             <tr t-foreach="get_payslip_lines(o)" t-as="r">
40                                 <td><span t-esc="r.get('payslip_name')"/></td>
41                                 <td><span t-esc="r['code']"/></td>
42                                 <td><span t-esc="r['name']"/></td>
43                                 <td><span t-esc="formatLang(r['quantity'])"/></td>
44                                 <td><span t-esc="formatLang(r['amount'])"/></td>
45                                 <td><span t-esc=" formatLang(r['total'], currency_obj=o.company_id and o.company_id.currency_id)"/></td>
46                             </tr>
47                         </tbody>
48                     </table>
49
50                     <div class="row">
51                         <div class="col-xs-4 pull-right">
52                             <table class="table table-condensed">
53                                 <tr class="border-black">
54                                     <td><strong>Total</strong></td>
55                                     <td class="text-right">
56                                         <span t-esc="formatLang(sum_total(), currency_obj = o.company_id and o.company_id.currency_id)"/>
57                                     </td>
58                                 </tr>
59                             </table>
60                         </div>
61                     </div>
62                 </div>
63             </t>
64         </t>
65     </t>
66 </template>
67 </data>
68 </openerp>