epic-ts
[kivitendo-erp.git] / templates / webpages / wh / warehouse_selection_assembly.html
1 [%- USE T8 %]
2 [%- USE L %]
3 [%- USE HTML %][%- USE JavaScript %][%- USE LxERP %]
4 <h1>[% title %]</h1>
5
6  <script type="text/javascript" src="js/common.js"></script>
7  <script type="text/javascript" src="js/part_selection.js"></script>
8  <script type="text/javascript">
9   <!--
10       warehouses = new Array();
11       [%- USE WAREHOUSES_it = Iterator(WAREHOUSES) %][%- FOREACH warehouse = WAREHOUSES_it %]
12       warehouses[[% WAREHOUSES_it.count - 1 %]] = new Array();
13       warehouses[[% WAREHOUSES_it.count - 1 %]]['id'] = [% warehouse.id %];
14       warehouses[[% WAREHOUSES_it.count - 1 %]]['bins'] = new Array();
15       [% USE BINS_it = Iterator(warehouse.BINS) %][% FOREACH bin = BINS_it %]
16       warehouses[[% WAREHOUSES_it.count - 1%]]['bins'][[% BINS_it.count - 1 %]] = new Array();
17       warehouses[[% WAREHOUSES_it.count - 1%]]['bins'][[% BINS_it.count - 1 %]]['description'] = "[% JavaScript.escape(bin.description) %]";
18       warehouses[[% WAREHOUSES_it.count - 1%]]['bins'][[% BINS_it.count - 1 %]]['id'] = [% bin.id %];
19       [% END %]
20       [% END %]
21
22       function warehouse_selected(warehouse_id, bin_id) {
23         var control = document.getElementById("bin_id");
24
25         for (var i = control.options.length - 1; i >= 0; i--) {
26           control.options[i] = null;
27         }
28
29         var warehouse_index = 0;
30
31         for (i = 0; i < warehouses.length; i++)
32           if (warehouses[i]['id'] == warehouse_id) {
33             warehouse_index = i;
34             break;
35           }
36
37         var warehouse = warehouses[warehouse_index];
38         var bin_index = 0;
39
40         for (i = 0; i < warehouse['bins'].length; i++)
41           if (warehouse['bins'][i]['id'] == bin_id) {
42             bin_index = i;
43             break;
44           }
45
46         for (i = 0; i < warehouse['bins'].length; i++) {
47           control.options[i] = new Option(warehouse['bins'][i]['description'], warehouse['bins'][i]['id']);
48         }
49
50
51         control.options[bin_index].selected = true;
52       }
53
54       $(function() {
55         warehouse_selected([% warehouse_id %], [% bin_id %]);
56       })
57     -->
58  </script>
59
60  <form name="Form" method="post" action="wh.pl">
61
62   <input type="hidden" name="nextsub" value="transfer_assembly">
63   <input type="hidden" name="update_nextsub" value="transfer_assembly_update_part">
64
65   [% IF saved_message %]
66   <p>[% saved_message %]</p>
67   [% END %]
68
69   <p>
70    <table>
71     <tr>
72      <th align="right" nowrap>[% 'Destination warehouse' | $T8 %]</th>
73      <td>
74       <select name="warehouse_id" onchange="warehouse_selected(warehouses[this.selectedIndex]['id'], 0)">
75        [%- FOREACH warehouse = WAREHOUSES %]
76        <option value="[% HTML.escape(warehouse.id) %]"[% IF warehouse_id == warehouse.id %] selected[% END %]>[% warehouse.description %]</option>
77        [%- END %]
78       </select>
79      </td>
80     </tr>
81
82     <tr>
83      <th align="right" nowrap>[% 'Destination bin' | $T8 %]:</th>
84      <td><select id="bin_id" name="bin_id"></select></td>
85     </tr>
86
87     <tr>
88      <th align="right" nowrap>[% 'Assembly Number' | $T8 %]</th>
89      <td>
90       <input type="hidden" name="parts_id" id="parts_id" value="[% HTML.escape(parts_id) %]">
91       <input type="hidden" name="old_partnumber" id="old_partnumber" value="[% HTML.escape(partnumber) %]">
92       <input name="partnumber" size="30" value="[% HTML.escape(partnumber) %]">
93      </td>
94     </tr>
95
96     <tr>
97      <th align="right" nowrap>[% 'Assembly Description' | $T8 %]</th>
98      <td>
99       <input name="description" size="30" value="[% HTML.escape(description) %]">
100       <input type="button" onclick="part_selection_window('partnumber', 'description', 'parts_id', 0, 'Form', 'assemblies:click_button=update_button')" value="?">
101      </td>
102     </tr>
103
104     <tr>
105      <th align="right" nowrap>[% 'Charge number' | $T8 %]</th>
106      <td><input name="chargenumber" size="30" value="[% HTML.escape(chargenumber) %]"></td>
107     </tr>
108
109     [% IF INSTANCE_CONF.get_show_bestbefore %]
110     <tr>
111      <th align="right" nowrap>[% 'Best Before' | $T8 %]</th>
112      <td>
113       [% L.date_tag('bestbefore', bestbefore) %]
114      </td>
115     </tr>
116     [% END %]
117
118     <tr>
119      <th align="right" nowrap>[% 'Quantity' | $T8 %]</th>
120      <td>
121       <input name="qty" size="10" value="[% HTML.escape(LxERP.format_amount(qty)) %]">
122       <select name="unit">
123        [%- FOREACH unit = UNITS %]<option[% IF unit.selected %] selected[% END %]>[% HTML.escape(unit.name) %]</option>[% END %]
124       </select>
125      </td>
126     </tr>
127
128     <tr>
129      <th align="right" nowrap>[% 'Optional comment' | $T8 %]</th>
130      <td><input name="comment" size="30" value="[% HTML.escape(comment) %]"></td>
131     </tr>
132
133    </table>
134   </p>
135
136   <p>
137    <input type="submit" class="submit" name="action" id="update_button" value="[% 'Update' | $T8 %]">
138    [%- IF parts_id %]
139    <input type="submit" class="submit" name="action" value="[% 'Create Assembly' | $T8 %]">
140    [%- END %]
141   </p>
142  </form>
143