Inventur: Part-Picker such auch nach Lieferantenartikelnummer
[kivitendo-erp.git] / templates / webpages / inventory / stocktaking / form.html
1 [%- USE T8 %]
2 [%- USE L %]
3 [%- USE P %]
4 [%- USE HTML %]
5 [%- USE LxERP %]
6
7 <h1>[% title | html %]</h1>
8
9 [%- INCLUDE 'common/flash.html' %]
10
11 <form method="post" action="controller.pl" id="stocktaking_form">
12
13  <p>
14   <label for="part_id">[% "Article" | $T8 %]</label>
15   [% P.part.picker("part_id", "", with_makemodel=1) %]
16  </p>
17
18  <p>
19    <div id="stock"></div>
20  </p>
21
22  <table id="stocktaking_settings_table">
23    <tr>
24      <th align="right" nowrap>[% 'Destination warehouse' | $T8 %]</th>
25      <td>[% L.select_tag('warehouse_id', SELF.warehouses, default=SELF.warehouse.id, title_key='description') %]
26        [% IF SELF.warehouse.id %]
27          [% L.select_tag('bin_id', SELF.warehouse.bins, default=SELF.bin.id, title_key='description') %]
28        [%- ELSE %]
29          <span id='bin_id'></span>
30        [% END %]
31      </td>
32    </tr>
33
34    <tr>
35      <th align="right" nowrap>[% 'Charge number' | $T8 %]</th>
36      <td>[% L.input_tag('chargenumber', "", size=30) %]</td>
37    </tr>
38
39    [% IF INSTANCE_CONF.get_show_bestbefore %]
40      <tr>
41        <th align="right" nowrap>[% 'Best Before' | $T8 %]</th>
42        <td>[% L.date_tag('bestbefore', "") %]</td>
43      </tr>
44    [%- END %]
45
46    <tr>
47      <th align="right" nowrap>[% 'Target Qty' | $T8 %]</th>
48      <td>
49        [% L.input_tag('target_qty', '', size=10, class='numeric') %]
50        [%- IF SELF.part.unit %]
51          [% L.select_tag('unit_id', SELF.part.available_units, title_key='name', default=SELF.unit.id) %]
52        [%- ELSE %]
53          [% L.select_tag('unit_id', SELF.units, title_key='name') %]
54        [%- END %]
55      </td>
56    </tr>
57
58    <tr>
59      <th align="right" nowrap>[% 'Cutoff Date' | $T8 %]</th>
60      <td>
61        [% L.date_tag('cutoff_date_as_date', SELF.stocktaking_cutoff_date) %]
62      </td>
63    </tr>
64
65    <tr>
66      <th align="right" nowrap>[% 'Optional comment' | $T8 %]</th>
67      <td>
68        [% L.input_tag('comment', SELF.stocktaking_comment, size=40) %]
69      </td>
70    </tr>
71  </table>
72
73 </form>
74
75 <p>
76   <div id="stocktaking_history">
77     [%- LxERP.t8("Loading...") %]
78   </div>
79 </p>