Templates werden nicht mehr übersetzt gespeichert.
[kivitendo-erp.git] / templates / webpages / oe / report_for_todo_list_master.html
1 [%- USE T8 %]
2 [% USE HTML %][% USE LxERP %]
3
4 <div class="listtop">[% 'Overdue sales quotations and requests for quotations' | $T8 %]</div>
5
6 <p>
7  <table width="100%">
8   <tr>
9    <td class="listheading">[% 'Date' | $T8 %]</td>
10    <td class="listheading">[% 'Valid until' | $T8 %]</td>
11    <td class="listheading">[% 'Sales quotation' | $T8 %] / [% 'Request quotation' | $T8 %]</td>
12    <td class="listheading">[% 'Customer' | $T8 %] / [% 'Vendor' | $T8 %]</td>
13    <td class="listheading">[% 'Transaction description' | $T8 %]</td>
14    <td class="listheading">[% 'Amount' | $T8 %]</td>
15    <td class="listheading">[% 'Employee' | $T8 %]</td>
16   </tr>
17
18   [%- FOREACH row = QUOTATIONS %]
19   <tr class="listrow[% loop.count % 2 %]">
20    <td>[% HTML.escape(row.transdate) %]</td>
21    <td>[% HTML.escape(row.reqdate) %]</td>
22    <td>
23     <a href="[% edit_url %]&vc=[% HTML.url(row.vc) %]&type=[% IF row.vc == 'customer' %]sales_quotation[% ELSE %]request_quotation[% END %]&id=[% HTML.url(row.id) %]">
24      [% IF row.vc == 'customer' %]
25      [% 'Sales quotation' | $T8 %]
26      [% ELSE %]
27      [% 'Request quotation' | $T8 %]
28      [% END %]
29      [% HTML.escape(row.quonumber) %]
30     </a>
31    </td>
32    <td>
33     [% IF row.vc == 'customer' %]
34     [% HTML.escape(row.customer) %]
35     [% ELSE %]
36     [% HTML.escape(row.vendor) %]
37     [% END %]
38    </td>
39    <td>[% HTML.escape(row.transaction_description) %]</td>
40    <td>[% HTML.escape(LxERP.format_amount(row.amount, 2)) %]</td>
41    <td>[% HTML.escape(row.employee) %]</td>
42   </tr>
43   [%- END %]
44  </table>
45 </p>