6528c6c74be0db2ac36faa1b6a75a34fd095fe44
[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     <td nowrap>
52       [%- L.input_tag("order.orderitems[].qty_as_number",
53                       ITEM.qty_as_number,
54                       size = 5,
55                       class="recalc reformat_number numeric") %]
56       [%- IF ITEM.part.formel -%]
57         [%- L.button_tag("kivi.Order.show_calculate_qty_dialog(this)", LxERP.t8("*/")) %]
58         [%- L.hidden_tag("formula[+]", ITEM.part.formel) -%]
59       [%- END -%]
60     </td>
61     <td>
62       [%- L.select_tag("order.orderitems[].price_factor_id",
63                        ALL_PRICE_FACTORS,
64                        default = ITEM.price_factor_id,
65                        title_key = 'description',
66                        with_empty = 1,
67                        class="recalc") %]
68     </td>
69     <td nowrap>
70       [%- L.select_tag("order.orderitems[].unit",
71                       ITEM.part.available_units,
72                       default = ITEM.unit,
73                       title_key = 'name',
74                       value_key = 'name',
75                       class = 'unitselect') %]
76     </td>
77     <td>
78       [%- L.button_tag("kivi.Order.price_chooser_item_row(this)",
79                        ITEM.active_price_source.source_description _ ' | ' _ ITEM.active_discount_source.source_description,
80                        name = "price_chooser_button") %]
81     </td>
82     <td>
83       [%- L.hidden_tag("order.orderitems[].active_price_source", ITEM.active_price_source.source) %]
84       [%- SET EDIT_PRICE = (AUTH.assert('edit_prices', 1) && ITEM.active_price_source.source == '') %]
85       <div name="editable_price" [%- IF !EDIT_PRICE %]style="display:none"[%- END %] class="numeric">
86         [%- L.input_tag("order.orderitems[].sellprice_as_number",
87                         ITEM.sellprice_as_number,
88                         size = 10,
89                         disabled=(EDIT_PRICE? '' : 1),
90                         class="recalc reformat_number numeric") %]
91       </div>
92       <div name="not_editable_price" [%- IF EDIT_PRICE %]style="display:none"[%- END %]>
93         [%- L.div_tag(ITEM.sellprice_as_number, name="sellprice_text", class="numeric") %]
94         [%- L.hidden_tag("order.orderitems[].sellprice_as_number",
95                          ITEM.sellprice_as_number,
96                          disabled=(EDIT_PRICE? 1 : '')) %]
97       </div>
98     </td>
99     <td>
100       [%- L.hidden_tag("order.orderitems[].active_discount_source", ITEM.active_discount_source.source) %]
101       [%- SET EDIT_DISCOUNT = (AUTH.assert('edit_prices', 1) && ITEM.active_discount_source.source == '') %]
102       <div name="editable_discount" [%- IF !EDIT_DISCOUNT %]style="display:none"[%- END %] class="numeric">
103         [%- L.input_tag("order.orderitems[].discount_as_percent",
104                         ITEM.discount_as_percent,
105                         size = 5,
106                         disabled=(EDIT_DISCOUNT? '' : 1),
107                         class="recalc reformat_number numeric") %]
108       </div>
109       <div name="not_editable_discount" [%- IF EDIT_DISCOUNT %]style="display:none"[%- END %]>
110         [%- L.div_tag(ITEM.discount_as_percent, name="discount_text", class="numeric") %]
111         [%- L.hidden_tag("order.orderitems[].discount_as_percent",
112                          ITEM.discount_as_percent,
113                          disabled=(EDIT_DISCOUNT? 1 : '')) %]
114       </div>
115     </td>
116     <td align="right">
117       [%- L.div_tag(LxERP.format_amount(ITEM.linetotal, 2, 0), name="linetotal") %]
118     </td>
119
120   </tr>
121
122   <tr [%- IF !MYCONFIG.show_form_details -%]style="display:none"[%- END -%]>
123     <td colspan="100%">
124       [%- IF MYCONFIG.show_form_details || ITEM.render_second_row %]
125         <div name="second_row" data-loaded="1">
126           [%- PROCESS order/tabs/_second_row.html ITEM=ITEM TYPE=TYPE %]
127         </div>
128       [%- ELSE %]
129         <div name="second_row">
130           [%- LxERP.t8("Loading...") %]
131         </div>
132       [%- END %]
133     </td>
134   </tr>
135
136 </tbody>