Auftrags-Controller: weitere Felder in zweiter Zeile
authorBernd Bleßmann <bernd@kivitendo-premium.de>
Mon, 5 Dec 2016 13:13:16 +0000 (14:13 +0100)
committerBernd Bleßmann <bernd@kivitendo-premium.de>
Thu, 8 Dec 2016 14:57:19 +0000 (15:57 +0100)
- Seriennummer
- Liefertermin
- Option f. Zwischensumme
- Listenpreis
- Lagerstand (onhand)

SL/Controller/Order.pm
templates/webpages/order/tabs/_second_row.html

index b11e364..a24d1d3 100644 (file)
@@ -594,7 +594,7 @@ sub action_get_item_longdescription {
   $_[0]->render(\ $longdescription, { type => 'text' });
 }
 
-# load the second row for one or more items (cvars only for now)
+# load the second row for one or more items
 #
 # This action gets the html code for all items second rows by rendering a template for
 # the second row and sets the html code via client js.
index cb1048d..cc2646e 100644 (file)
@@ -4,6 +4,24 @@
 [%- USE L %]
 
 <table>
+  <tr>
+    <th>[%- 'Serial No.' | $T8 %]</th>
+    <td>[%- L.input_tag("order.orderitems[].serialnumber", ITEM.serialnumber, size = 15) %]</td>
+    <th>[%- 'Reqdate' | $T8 %]</th>
+    <td>[% L.date_tag("order.orderitems[].reqdate", ITEM.reqdate) %]</td>
+    <th>[%- 'Subtotal' | $T8 %]</th>
+    <td>[% L.yes_no_tag("order.orderitems[].subtotal", ITEM.subtotal) %]</td>
+    [%- IF ITEM.order.is_sales %]
+      <th>[%- 'LP' | $T8 %]</th>
+      <td>[%- LxERP.format_amount(ITEM.part.listprice, 2, 0) %]</td>
+    [%- END %]
+    <th>[%- 'On Hand' | $T8 %]</th>
+    <td>
+      <span[%- IF ITEM.part.onhand < ITEM.part.rop -%] class="plus0"[%- END -%]>
+        [%- LxERP.format_amount(ITEM.part.onhand_as_number, 2, 0) -%]&nbsp;[%- ITEM.part.unit -%]
+      </span>
+    </td>
+  </tr>
   <tr>
     [%- SET n = 0 %]
     [%- FOREACH var = ITEM.cvars_by_config %]