Rechte unter Kunden&Lieferanten/Lieferungen beachten
[kivitendo-erp.git] / templates / webpages / ct / get_delivery.html
1 [%- USE T8 %]
2 [% USE HTML %][% USE LxERP %]
3 <div id="delivery">
4 <table width="100%">
5   <tr>
6     <td>
7       <table width="100%">
8         <tr class="listheading">
9           <th class="listheading">[% 'Shipping Address' | $T8 %]</th>
10           <th class="listheading">[% 'Invoice' | $T8 %]</th>
11           <th class="listheading">[% 'Order' | $T8 %]</th>
12           <th class="listheading">[% 'Invdate' | $T8 %]</th>
13           <th class="listheading">[% 'Description' | $T8 %]</th>
14           <th class="listheading">[% 'Qty' | $T8 %]</th>
15           <th class="listheading">[% 'Unit' | $T8 %]</th>
16 [%- IF is_customer %]
17           <th class="listheading">[% 'Sell Price' | $T8 %]</th>
18 [%- ELSE %]
19           <th class="listheading">[% 'Last Cost' | $T8 %]</th>
20 [%- END %]
21         </tr>
22 [%- FOREACH row = DELIVERY %]
23 [%-
24     row.script = is_customer ?  ( row.invoice ? 'is' : 'ar' )
25                              :  ( row.invoice ? 'ir' : 'ap' )
26 -%]
27         <tr class="listrow[% loop.count % 2 %]">
28           <td>[% HTML.escape(row.shiptoname) UNLESS loop.prev.shiptoname == row.shiptoname %]&nbsp;</td>
29           <td>[% IF row.id %]<a href='[% row.script %].pl?action=edit&id=[% HTML.escape(row.id) %]'>[% END %][% HTML.escape(row.invnumber)   || '&nbsp;' %][% IF row.id %]</a>[% END %]</td>
30           <td>[% IF row.oe_id %]<a href='oe.pl?action=edit&type=[% IF is_customer %]sales_order[% ELSE %]purchase_order[% END %]&vc=customer&id=[% HTML.escape(row.oe_id) %]'>[% END %][% HTML.escape(row.ordnumber)   || '&nbsp;' %][% IF row.oe_id %]</a>[% END %]</td>
31           <td>[% HTML.escape(row.transdate)   || '&nbsp;' %]</td>
32           <td>[% HTML.escape(row.description) || '&nbsp;' %]</td>
33           <td>[% HTML.escape(row.qty)         || '&nbsp;' %]</td>
34           <td>[% HTML.escape(row.unit)        || '&nbsp;' %]</td>
35           <td>[% LxERP.format_amount(row.sellprice, 2) || '&nbsp;' %]</td>
36         </tr>
37 [%- END %]
38
39      </table>
40 [%- IF DELIVERY.size == 15 %]
41      <p>[% 'This list is capped at 15 items to keep it fast. If you need a full list, please use reports.' | $T8 %]</p>
42 [%- END %]
43 </div>