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