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