Auftrags-Controller: gelieferte Menge in Auftragsposition anzeigen.
[kivitendo-erp.git] / templates / webpages / order / tabs / _row.html
1 [%- USE T8 %]
2 [%- USE HTML %]
3 [%- USE LxERP %]
4 [%- USE L %]
5 [%- USE P %]
6
7 <tbody class="row_entry listrow"[%- IF MYCONFIG.show_form_details -%] data-expanded="1"[%- END -%]>
8   <tr>
9     <td align="center">
10       [%- IF MYCONFIG.show_form_details %]
11         [% L.img_tag(src="image/collapse.svg",
12                      alt=LxERP.t8('Hide details'), title=LxERP.t8('Hide details'), class="expand") %]
13       [%- ELSE %]
14         [% L.img_tag(src="image/expand.svg",
15                      alt=LxERP.t8('Show details'), title=LxERP.t8('Show details'), class="expand") %]
16       [%- END %]
17       [% L.hidden_tag("orderitem_ids[+]", ID) %]
18       [% L.hidden_tag("converted_from_orderitems_ids[+]", ITEM.converted_from_orderitems_id) %]
19       [% L.hidden_tag("order.orderitems[+].id", ITEM.id, id='item_' _ ID) %]
20       [% L.hidden_tag("order.orderitems[].parts_id", ITEM.parts_id) %]
21     </td>
22     <td>
23       <div name="position" class="numeric">
24         [% HTML.escape(ITEM.position) %]
25       </div>
26     </td>
27     <td align="center">
28       <img src="image/updown.png" alt="[%- LxERP.t8('reorder item') %]" class="dragdrop">
29     </td>
30     <td align="center">
31       [%- L.button_tag("kivi.Order.delete_order_item_row(this)",
32                        LxERP.t8("X"),
33                        confirm=LxERP.t8("Are you sure?")) %]
34     </td>
35     <td>
36       <div name="partnumber">[% HTML.escape(ITEM.part.partnumber) %]</div>
37     </td>
38     <td>
39       <div name="partclassification">[% ITEM.part.presenter.typeclass_abbreviation %]</div>
40     </td>
41     <td>
42       [% L.areainput_tag("order.orderitems[].description",
43                      ITEM.description,
44                      size='40',
45                      style='width: 300px') %]
46       [%- IF ITEM.render_longdescription -%]
47         [%- L.hidden_tag("order.orderitems[].longdescription", ITEM.longdescription) %]
48       [%- END -%]
49       [%- L.button_tag("kivi.Order.show_longdescription_dialog(this)", LxERP.t8("L")) %]
50     </td>
51     [%- IF (TYPE == "sales_order" || TYPE == "purchase_order") -%]
52     <td nowrap>
53       [%- L.div_tag(LxERP.format_amount(ITEM.shipped_qty, 2, 0) _ ' ' _ ITEM.unit, name="shipped_qty", class="numeric") %]
54     </td>
55     [%- END -%]
56     <td nowrap>
57       [%- L.input_tag("order.orderitems[].qty_as_number",
58                       ITEM.qty_as_number,
59                       size = 5,
60                       class="recalc reformat_number numeric") %]
61       [%- IF ITEM.part.formel -%]
62         [%- L.button_tag("kivi.Order.show_calculate_qty_dialog(this)", LxERP.t8("*/")) %]
63         [%- L.hidden_tag("formula[+]", ITEM.part.formel) -%]
64       [%- END -%]
65     </td>
66     <td>
67       [%- L.select_tag("order.orderitems[].price_factor_id",
68                        ALL_PRICE_FACTORS,
69                        default = ITEM.price_factor_id,
70                        title_key = 'description',
71                        with_empty = 1,
72                        class="recalc") %]
73     </td>
74     <td nowrap>
75       [%- L.select_tag("order.orderitems[].unit",
76                       ITEM.part.available_units,
77                       default = ITEM.unit,
78                       title_key = 'name',
79                       value_key = 'name',
80                       class = 'unitselect') %]
81     </td>
82     <td>
83       [%- L.button_tag("kivi.Order.price_chooser_item_row(this)",
84                        ITEM.active_price_source.source_description _ ' | ' _ ITEM.active_discount_source.source_description,
85                        name = "price_chooser_button") %]
86     </td>
87     <td>
88       [%- L.hidden_tag("order.orderitems[].active_price_source", ITEM.active_price_source.source) %]
89       [%- SET EDIT_PRICE = (AUTH.assert('edit_prices', 1) && ITEM.active_price_source.source == '') %]
90       <div name="editable_price" [%- IF !EDIT_PRICE %]style="display:none"[%- END %] class="numeric">
91         [%- L.input_tag("order.orderitems[].sellprice_as_number",
92                         ITEM.sellprice_as_number,
93                         size = 10,
94                         disabled=(EDIT_PRICE? '' : 1),
95                         class="recalc reformat_number numeric") %]
96       </div>
97       <div name="not_editable_price" [%- IF EDIT_PRICE %]style="display:none"[%- END %]>
98         [%- L.div_tag(ITEM.sellprice_as_number, name="sellprice_text", class="numeric") %]
99         [%- L.hidden_tag("order.orderitems[].sellprice_as_number",
100                          ITEM.sellprice_as_number,
101                          disabled=(EDIT_PRICE? 1 : '')) %]
102       </div>
103     </td>
104     <td>
105       [%- L.hidden_tag("order.orderitems[].active_discount_source", ITEM.active_discount_source.source) %]
106       [%- SET EDIT_DISCOUNT = (AUTH.assert('edit_prices', 1) && ITEM.active_discount_source.source == '') %]
107       <div name="editable_discount" [%- IF !EDIT_DISCOUNT %]style="display:none"[%- END %] class="numeric">
108         [%- L.input_tag("order.orderitems[].discount_as_percent",
109                         ITEM.discount_as_percent,
110                         size = 5,
111                         disabled=(EDIT_DISCOUNT? '' : 1),
112                         class="recalc reformat_number numeric") %]
113       </div>
114       <div name="not_editable_discount" [%- IF EDIT_DISCOUNT %]style="display:none"[%- END %]>
115         [%- L.div_tag(ITEM.discount_as_percent, name="discount_text", class="numeric") %]
116         [%- L.hidden_tag("order.orderitems[].discount_as_percent",
117                          ITEM.discount_as_percent,
118                          disabled=(EDIT_DISCOUNT? 1 : '')) %]
119       </div>
120     </td>
121     <td align="right">
122       [%- L.div_tag(LxERP.format_amount(ITEM.linetotal, 2, 0), name="linetotal") %]
123     </td>
124
125   </tr>
126
127   <tr [%- IF !MYCONFIG.show_form_details -%]style="display:none"[%- END -%]>
128     <td colspan="100%">
129       [%- IF MYCONFIG.show_form_details || ITEM.render_second_row %]
130         <div name="second_row" data-loaded="1">
131           [%- PROCESS order/tabs/_second_row.html ITEM=ITEM TYPE=TYPE %]
132         </div>
133       [%- ELSE %]
134         <div name="second_row">
135           [%- LxERP.t8("Loading...") %]
136         </div>
137       [%- END %]
138     </td>
139   </tr>
140
141 </tbody>