MHD-Behandlung in Fehlermeldung bei unzureichender Lagermenge.
[kivitendo-erp.git] / templates / webpages / oe / report_for_todo_list_de.html
1 [% USE HTML %][% USE LxERP %]
2
3 <div class="listtop">Überfällige Angebote und Preisanfragen</div>
4
5 <p>
6  <table width="100%">
7   <tr>
8    <td class="listheading">Datum</td>
9    <td class="listheading">gültig bis</td>
10    <td class="listheading">Angebot / Preisanfrage</td>
11    <td class="listheading">Kunde / Lieferant</td>
12    <td class="listheading">Vorgangsbezeichnung</td>
13    <td class="listheading">Betrag</td>
14    <td class="listheading">Bearbeiter</td>
15   </tr>
16
17   [%- FOREACH row = QUOTATIONS %]
18   <tr class="listrow[% loop.count % 2 %]">
19    <td>[% HTML.escape(row.transdate) %]</td>
20    <td>[% HTML.escape(row.reqdate) %]</td>
21    <td>
22     <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) %]">
23      [% IF row.vc == 'customer' %]
24      Angebot
25      [% ELSE %]
26      Preisanfrage
27      [% END %]
28      [% HTML.escape(row.quonumber) %]
29     </a>
30    </td>
31    <td>
32     [% IF row.vc == 'customer' %]
33     [% HTML.escape(row.customer) %]
34     [% ELSE %]
35     [% HTML.escape(row.vendor) %]
36     [% END %]
37    </td>
38    <td>[% HTML.escape(row.transaction_description) %]</td>
39    <td>[% HTML.escape(LxERP.format_amount(row.amount, 2)) %]</td>
40    <td>[% HTML.escape(row.employee) %]</td>
41   </tr>
42   [%- END %]
43  </table>
44 </p>