6df5e45d5d6e146570c02989457000202ded3857
[kivitendo-erp.git] / templates / webpages / customer_vendor_turnover / count_turnover.html
1 [%- USE T8 %]
2 [%- USE LxERP %]
3 [%- USE L %]
4 [%- USE HTML %]
5 <div id="turnover_statistic">
6   <table width="100%">
7     <tbody>
8       <tr>
9         <td class="listheading">[% 'Month/Year' | $T8 %]</td>
10         <td class="listheading">[% 'Invoices' | $T8 %]</td>
11         <td class="listheading">[% 'Turnover' | $T8 %]</td>
12         <td class="listheading">[% 'Net.Turnover' | $T8 %]</td>
13         <td class="listheading">[% 'Paid' | $T8 %]</td>
14       </tr>
15       [%- FOREACH row = SELF.turnover_statistic %]
16       <tr class="listrow[% loop.count % 2 %]">
17         <td>[% row.date_part | html %]</td>
18         <td>[% row.count | html %]</td>
19         <td class="numeric">[%- LxERP.format_amount(row.amount,2) %]</td>
20         <td class="numeric">[%- LxERP.format_amount(row.netamount,2) %]</td>
21         <td class="numeric">[%- LxERP.format_amount(row.paid,2) %]</td>
22       </tr>
23       [% END %]
24
25     </tbody>
26   </table>
27 </div>