ct.pl als Controller
[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               <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
41         [% IF DELIVERY.size == 15 %]
42           <p>[% 'This list is capped at 15 items to keep it fast. If you need a full list, please use reports.' | $T8 %]</p>
43         [% END %]
44
45       </td>
46     </tr>
47   </table>
48 </div>