23a7b63f9d6262e22de617abab44a88e5ec727f2
[kivitendo-erp.git] / templates / webpages / dbupgrade / default_bin_parts_no_warehouse.html
1 [%- USE T8 %]
2 [%- USE HTML %]
3 [%- USE LxERP %]
4
5 <div class="listtop">[% '<b>Default Bins Migration !READ CAREFULLY!</b>' | $T8 %]</div>
6 <form name="Form" method="post" action="login.pl">
7 <input type="hidden" name="action" value="login">
8 <input type="hidden" name="continued" value="1">
9
10 <p>[% 'There are Bins defined in your master data.' | $T8 %]</p>
11 <p>[% 'The Bins in master data were only a information text field.' | $T8 %]</p>
12 <p>[% 'This has been changed in this version.' | $T8 %]</p>
13 <p>[% 'Unfortunately you have no warehouse defined.' | $T8 %]</p>
14
15 <p>[% 'Three Options:' | $T8 %]</p>
16 <p>[% '<b> I DO NOT CARE</b> Please click continue and the following data (see list) will be deleted:' | $T8 %]</p>
17 <p>[% '<b> I DO CARE!</b> Please click back and cancel the update and come back after there has been at least one warehouse defined with bin(s).:' | $T8 %]</p>
18 <p>[% '<b> I DO CARE!</b> Please check create warehouse and bins and define a name for the warehouse (Bins will be created automatically) and then continue'  | $T8 %]</p>
19
20 <table>
21   <tr>
22     <th class="listheading">[% 'Partnumber' | $T8 %]</th>
23     <th class="listheading">[% 'Description' | $T8 %]</th>
24     <th class="listheading">[% 'Master Data Bin Text Deleted' | $T8 %]</th>
25   </tr>
26
27   [% SET row_odd = '1' %][% FOREACH row = PARTS %]
28   <tr class="listrow[% IF row_odd %]1[% SET row_odd = '0' %][% ELSE %]0[% SET row_odd = '1' %][% END %]">
29    <td align="left"> [% HTML.escape(row.partnumber) %]</a></td>
30     <td align="left"> [% HTML.escape(row.description) %]</a></td>
31     <td align="right">[% HTML.escape(row.bin) %]
32     <input type="hidden" name='partid_[% loop.count %]' value='[% HTML.escape(row.id) %]'>
33     <input type="hidden" id="bin_[% loop.count %]" name="bin_[% loop.count %]" value="[% HTML.escape(row.bin) %]">
34    </tr>
35   [% SET rowcount = loop.count %]
36   [% END %]
37   <input type="hidden" name="rowcount" value="[% rowcount %]">
38 <tr><td colspan="5"><hr/></td></tr>
39 <tr><td colspan="5"><input type="checkbox" name="create_new_bins"> [% '<b>Automatically create new bins</b> in the following new warehouse ' | $T8 %] <input type="text" name="new_warehouse"></td></tr>
40 <tr><td colspan="5"><hr/></td></tr>
41 <tr><td><input type="button" class="submit" onclick="history.back()" value="[% 'Back' | $T8 %]"> </td><td colspan="3" align="center"><td><input style="background-color:#FA1400" type="submit" value="[% 'Continue' | $T8 %]"></td></tr>
42 </table>
43 </form>