Auftrags-Controller: neue Eingabemakse für Aufträge basierend auf Controller
[kivitendo-erp.git] / templates / webpages / order / tabs / _item_input.html
1 [%- USE T8 %][%- USE HTML %][%- USE LxERP %][%- USE L %]
2
3  <div>
4   <table id="input_row_table_id">
5     <thead>
6       <tr class="listheading">
7         <th class="listheading" nowrap >[%- 'Part'         | $T8 %] </th>
8         <th class="listheading" nowrap >[%- 'Description'  | $T8 %] </th>
9         <th class="listheading" nowrap width="5" >[%- 'Qty'          | $T8 %] </th>
10         <th class="listheading" nowrap width="15">[%- 'Price'        | $T8 %] </th>
11         <th class="listheading" nowrap width="5" >[%- 'Discount'     | $T8 %] </th>
12         <th></th>
13       </tr>
14     </thead>
15     <tbody>
16       <tr valign="top" class="listrow">
17         <td>[% L.part_picker('add_item.parts_id', '', fat_set_item=1, style='width: 300px', class="add_item_input") %]</td>
18         <td>[% L.input_tag('add_item.description', '', class="add_item_input") %]</td>
19         <td>[% L.input_tag('add_item.qty_as_number', '', size = 5, style='text-align:right', class="add_item_input") %]</td>
20         <td>[% L.input_tag('add_item.sellprice_as_number', '', size = 10, style='text-align:right', class="add_item_input") %]</td>
21         <td>[% L.input_tag('add_item.discount_as_percent', '', size = 5, style='text-align:right', class="add_item_input") %]</td>
22         <td>[% L.button_tag('add_item()', LxERP.t8('Add part')) %]</td>
23       </tr>
24     </tbody>
25   </table>
26  </div>