Auftrags-Controller: zweite Zeile laden mit Icons und alle zweiten Zeilen laden.
[kivitendo-erp.git] / templates / webpages / order / tabs / _row.html
1 [%- USE T8 %]
2 [%- USE HTML %]
3 [%- USE LxERP %]
4 [%- USE L %]
5
6 <tbody class="row_entry">
7
8   <tr class="listrow0">
9     <td align="center">
10       [%- IF MYCONFIG.show_form_details %]
11         [% L.img_tag(src="image/collapse3.gif",
12                      alt=LxERP.t8('Hide details'), title=LxERP.t8('Hide details'), class="expand") %]
13       [%- ELSE %]
14         [% L.img_tag(src="image/expand3.gif",
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("order.orderitems[+].id", ITEM.id, id='item_' _ ID) %]
19       [% L.hidden_tag("order.orderitems[].parts_id", ITEM.parts_id) %]
20     </td>
21     <td>
22       <div name="position" class="numeric">
23         [% HTML.escape(ITEM.position) %]
24       </div>
25     </td>
26     <td align="center">
27       <img src="image/updown.png" alt="[%- LxERP.t8('reorder item') %]" class="dragdrop">
28     </td>
29     <td align="center">
30       [%- L.button_tag("kivi.Order.delete_order_item_row(this)",
31                        LxERP.t8("X"),
32                        confirm=LxERP.t8("Are you sure?")) %]
33     </td>
34     <td>
35       <div name="partnumber">[% HTML.escape(ITEM.part.partnumber) %]</div>
36     </td>
37     <td>
38       [% L.input_tag("order.orderitems[].description",
39                      ITEM.description,
40                      style='width: 300px') %]
41       [%- L.button_tag("kivi.Order.show_longdescription_dialog(this)", LxERP.t8("L")) %]
42     </td>
43     <td>
44       [%- L.input_tag("order.orderitems[].qty_as_number",
45                       ITEM.qty_as_number,
46                       size = 5,
47                       class="recalc reformat_number numeric") %]
48     </td>
49     <td>
50       [%- L.select_tag("order.orderitems[].price_factor_id",
51                        ALL_PRICE_FACTORS,
52                        default = ITEM.price_factor_id,
53                        title_key = 'description',
54                        with_empty = 1,
55                        class="recalc") %]
56     </td>
57     <td nowrap>
58       [%- L.select_tag("order.orderitems[].unit",
59                       ITEM.part.available_units,
60                       default = ITEM.unit,
61                       title_key = 'name',
62                       value_key = 'name',
63                       class = 'unitselect') %]
64     </td>
65     <td>
66       [%- L.button_tag("kivi.Order.price_chooser_item_row(this)",
67                        ITEM.active_price_source.source_description _ ' | ' _ ITEM.active_discount_source.source_description,
68                        name = "price_chooser_button") %]
69     </td>
70     <td>
71       [%- L.hidden_tag("order.orderitems[].active_price_source", ITEM.active_price_source.source) %]
72       [%- SET EDIT_PRICE = (AUTH.assert('edit_prices', 1) && ITEM.active_price_source.source == '') %]
73       <div name="editable_price" [%- IF !EDIT_PRICE %]style="display:none"[%- END %] class="numeric">
74         [%- L.input_tag("order.orderitems[].sellprice_as_number",
75                         ITEM.sellprice_as_number,
76                         size = 10,
77                         disabled=(EDIT_PRICE? '' : 1),
78                         class="recalc reformat_number numeric") %]
79       </div>
80       <div name="not_editable_price" [%- IF EDIT_PRICE %]style="display:none"[%- END %]>
81         [%- L.div_tag(ITEM.sellprice_as_number, name="sellprice_text", class="numeric") %]
82         [%- L.hidden_tag("order.orderitems[].sellprice_as_number",
83                          ITEM.sellprice_as_number,
84                          disabled=(EDIT_PRICE? 1 : '')) %]
85       </div>
86     </td>
87     <td>
88       [%- L.hidden_tag("order.orderitems[].active_discount_source", ITEM.active_discount_source.source) %]
89       [%- SET EDIT_DISCOUNT = (AUTH.assert('edit_prices', 1) && ITEM.active_discount_source.source == '') %]
90       <div name="editable_discount" [%- IF !EDIT_DISCOUNT %]style="display:none"[%- END %] class="numeric">
91         [%- L.input_tag("order.orderitems[].discount_as_percent",
92                         ITEM.discount_as_percent,
93                         size = 5,
94                         disabled=(EDIT_DISCOUNT? '' : 1),
95                         class="recalc reformat_number numeric") %]
96       </div>
97       <div name="not_editable_discount" [%- IF EDIT_DISCOUNT %]style="display:none"[%- END %]>
98         [%- L.div_tag(ITEM.discount_as_percent, name="discount_text", class="numeric") %]
99         [%- L.hidden_tag("order.orderitems[].discount_as_percent",
100                          ITEM.discount_as_percent,
101                          disabled=(EDIT_DISCOUNT? 1 : '')) %]
102       </div>
103     </td>
104     <td align="right">
105       [%- L.div_tag(LxERP.format_amount(ITEM.linetotal, 2, 0), name="linetotal") %]
106     </td>
107
108   </tr>
109
110   <tr class="listrow1" [%- IF !MYCONFIG.show_form_details -%]style="display:none"[%- END -%]>
111     <td colspan="100%">
112       [%- IF MYCONFIG.show_form_details %]
113         <div name="second_row" data-loaded="1">
114           [%- PROCESS order/tabs/_second_row.html ITEM=ITEM %]
115         </div>
116       [%- ELSE %]
117         <div name="second_row">
118           [%- LxERP.t8("Loading...") %]
119         </div>
120       [%- END %]
121     </td>
122   </tr>
123
124 </tbody>