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