Merge branch 'b-3.6.1' into mebil
[kivitendo-erp.git] / templates / webpages / customer_vendor / get_delivery.html
1 [% USE T8 %]
2 [% USE HTML %]
3 [% USE LxERP %]
4 <div id="delivery">
5   <table width="100%">
6     <tr>
7       <td>
8         <table width="100%">
9           <tr class="listheading">
10             <th class="listheading">[% 'Shipping Address' | $T8 %]</th>
11             <th class="listheading">[% 'Invoice' | $T8 %]</th>
12             <th class="listheading">[% 'Order' | $T8 %]</th>
13             <th class="listheading">[% 'Invdate' | $T8 %]</th>
14             <th class="listheading">[% 'Description' | $T8 %]</th>
15             <th class="listheading">[% 'Qty' | $T8 %]</th>
16             <th class="listheading">[% 'Unit' | $T8 %]</th>
17             [% IF ( SELF.is_customer() ) %]
18               <th class="listheading">[% 'Sell Price' | $T8 %]</th>
19             [% ELSE %]
20               <th class="listheading">[% 'Last Cost' | $T8 %]</th>
21             [%- END %]
22           </tr>
23
24
25           [% FOREACH row = SELF.delivery %]
26             [% row.script = SELF.is_vendor() ? ( row.invoice ? 'ir' : 'ap' ) : ( row.invoice ? 'is' : 'ar' ) %]
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               [%- IF INSTANCE_CONF.get_feature_experimental_order -%]
31                 <td>[% IF row.oe_id %]<a href='controller.pl?action=Order/edit&type=[% IF SELF.is_customer %]sales_order[% ELSE %]purchase_order[% END %]&id=[% HTML.escape(row.oe_id) %]'>[% END %][% HTML.escape(row.ordnumber)   || '&nbsp;' %][% IF row.oe_id %]</a>[% END %]</td>
32               [%- ELSE -%]
33                 <td>[% IF row.oe_id %]<a href='oe.pl?action=edit&type=[% IF SELF.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>
34               [%- END -%]
35               <td>[% HTML.escape(row.transdate)   || '&nbsp;' %]</td>
36               <td>[% HTML.escape(row.description) || '&nbsp;' %]</td>
37               <td>[% HTML.escape(row.qty)         || '&nbsp;' %]</td>
38               <td>[% HTML.escape(row.unit)        || '&nbsp;' %]</td>
39               <td>[% LxERP.format_amount(row.sellprice, 2) || '&nbsp;' %]</td>
40             </tr>
41           [% END %]
42
43         </table>
44
45         [% IF DELIVERY.size == 15 %]
46           <p>[% 'This list is capped at 15 items to keep it fast. If you need a full list, please use reports.' | $T8 %]</p>
47         [% END %]
48
49       </td>
50     </tr>
51   </table>
52 </div>