Revision b2978890
Von Hans Peter Schlaepfer vor mehr als 6 Jahren hinzugefügt
templates/webpages/wh/journal_filter.html | ||
---|---|---|
<form method="post" name="Form" action="wh.pl" id="form">
|
||
<div class="wrapper">
|
||
|
||
<table class="tbl-horizontal">
|
||
<tbody>
|
||
<tr>
|
||
<td>
|
||
<table>
|
||
<tr>
|
||
<th align="right" nowrap>[% 'Warehouse' | $T8 %]:</th>
|
||
<td>
|
||
<select name="warehouse_id" id="warehouse_id" onchange="warehouse_selected(warehouses[this.selectedIndex]['id'], 0)">
|
||
<option value="">---</option>
|
||
[%- FOREACH warehouse = WAREHOUSES %]
|
||
<th>[% 'Warehouse' | $T8 %]:</th>
|
||
<td>
|
||
<select name="warehouse_id" id="warehouse_id" onchange="warehouse_selected(warehouses[this.selectedIndex]['id'], 0)" class="wi-normal">
|
||
<option value="">---</option>
|
||
[% FOREACH warehouse = WAREHOUSES %]
|
||
<option value="[% HTML.escape(warehouse.id) %]">[% warehouse.description %]</option>
|
||
[%- END %]
|
||
</select>
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<th align="right" nowrap>[% 'Bin' | $T8 %]:</th>
|
||
<td><select name="bin_id" id="bin_id"></select></td>
|
||
</tr>
|
||
<tr>
|
||
<th align="right" nowrap>[% 'Part Number' | $T8 %]:</th>
|
||
<td><input name="partnumber" id="partnumber" size=20></td>
|
||
</tr>
|
||
<tr>
|
||
<th align="right" nowrap>[% 'Parts Classification' | $T8 %]:</th>
|
||
<td>[% P.part.select_classification('classification_id') %]</td>
|
||
</tr>
|
||
<tr>
|
||
<th align="right" nowrap>[% 'Part Description' | $T8 %]:</th>
|
||
<td><input name="description" size=40></td>
|
||
</tr>
|
||
<tr>
|
||
<th align="right" nowrap>[% 'Charge Number' | $T8 %]:</th>
|
||
<td><input name="chargenumber" size=40></td>
|
||
</tr>
|
||
[% IF INSTANCE_CONF.get_show_bestbefore %]
|
||
<tr>
|
||
<th align="right" nowrap>[% 'Best Before' | $T8 %]:</th>
|
||
<td>
|
||
[% L.date_tag('bestbefore') %]
|
||
</td>
|
||
</tr>
|
||
[% END %]
|
||
<tr>
|
||
<th align="right" nowrap>[% 'Transfer Quantity' | $T8 %]:</th>
|
||
<td>
|
||
<select name="qty_op">
|
||
[% END %]
|
||
</select>
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<th>[% 'Bin' | $T8 %]:</th>
|
||
<td>
|
||
<select name="bin_id" id="bin_id" class="wi-normal">
|
||
</select>
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<th>[% 'Part Number' | $T8 %]:</th>
|
||
<td><input type="text" name="partnumber" id="partnumber" class="wi-normal">
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<th>[% 'Parts Classification' | $T8 %]:</th>
|
||
<td>[% P.part.select_classification('classification_id', class='wi-normal') %]</td>
|
||
</tr>
|
||
<tr>
|
||
<th>[% 'Part Description' | $T8 %]:</th>
|
||
<td><input type="text" name="description" class="wi-normal">
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<th>[% 'Charge Number' | $T8 %]:</th>
|
||
<td><input type="text" name="chargenumber" class="wi-normal">
|
||
</td>
|
||
</tr>
|
||
[% IF INSTANCE_CONF.get_show_bestbefore %]
|
||
<tr>
|
||
<th>[% 'Best Before' | $T8 %]:</th>
|
||
<td> [% L.date_tag('bestbefore') %] </td>
|
||
</tr>
|
||
[% END %]
|
||
<tr>
|
||
<th>[% 'Transfer Quantity' | $T8 %]:</th>
|
||
<td>
|
||
<select name="qty_op" class="wi-normal">
|
||
<option value="dontcare">---</option>
|
||
<option value="atleast">[% 'At least' | $T8 %]</option>
|
||
<option value="atmost">[% 'At most' | $T8 %]</option>
|
||
<option value="exact">[% 'Exact' | $T8 %]</option>
|
||
</select>
|
||
<input name="qty">
|
||
<select name="qty_unit">
|
||
[%- FOREACH unit = UNITS %]<option>[% unit.name %]</option>[% END %]
|
||
</select>
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<th align="right" nowrap>[% 'From Date' | $T8 %]</th>
|
||
<td>
|
||
[% L.date_tag('fromdate') %]
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<th align="right">[% 'To Date' | $T8 %]</th>
|
||
<td>
|
||
[% L.date_tag('todate') %]
|
||
</td>
|
||
</tr>
|
||
</table>
|
||
</td>
|
||
</select>
|
||
<input name="qty" type="text" class="wi-verysmall">
|
||
<select name="qty_unit" class="wi-small">
|
||
[% FOREACH unit = UNITS %]
|
||
<option>[% unit.name %]</option>
|
||
[% END %]
|
||
</select>
|
||
</td>
|
||
</tr>
|
||
|
||
<tr height="5"><td> </td></tr>
|
||
|
||
<tr>
|
||
<th class="listheading" align="left" valign="top" colspan="6" nowrap>[% 'Include in Report' | $T8 %]</th>
|
||
<th>[% 'From Date' | $T8 %]</th>
|
||
<td> <span class="wi-date">[% L.date_tag('fromdate') %]</span> </td>
|
||
</tr>
|
||
<tr>
|
||
<td>
|
||
<table>
|
||
<tr>
|
||
<td><input name="l_partdescription" id="l_partdescription" class="checkbox" type="hidden" value="Y" checked></td>
|
||
<td nowrap><label for="l_partdescription">[% 'Part Description' | $T8 %]</label></td>
|
||
<td><input name="l_qty" id="l_qty" class="checkbox" type="hidden" value="Y" checked></td>
|
||
<td nowrap><label for="l_qty">[% 'Quantity' | $T8 %]</label></td>
|
||
</tr>
|
||
<tr>
|
||
<td align="right"><input name="l_date" id="l_date" class="checkbox" type="checkbox" value="Y" checked></td>
|
||
<td nowrap><label for="l_date">[% 'Date' | $T8 %]</label></td>
|
||
<td align="right"><input name="l_partnumber" id="l_partnumber" class="checkbox" type="checkbox" value="Y" checked></td>
|
||
<td nowrap><label for="l_partnumber">[% 'Part Number' | $T8 %]</label></td>
|
||
<td align="right"><input name="l_chargenumber" id="l_chargenumber" class="checkbox" type="checkbox" value="Y" checked></td>
|
||
<td nowrap><label for="l_chargenumber">[% 'Charge Number' | $T8 %]</label></td>
|
||
[% IF INSTANCE_CONF.get_show_bestbefore %]
|
||
<td align="right"><input name="l_bestbefore" id="l_bestbefore" class="checkbox" type="checkbox" value="Y" checked></td>
|
||
<td nowrap><label for="l_bestbefore">[% 'Best Before' | $T8 %]</label></td>
|
||
[% END %]
|
||
</tr>
|
||
<tr>
|
||
<td align="right"><input name="l_trans_id" id="l_trans_id" class="checkbox" type="checkbox" value="Y"></td>
|
||
<td nowrap><label for="l_trans_id">[% 'Trans Id' | $T8 %]</label></td>
|
||
<td align="right"><input name="l_trans_type" id="l_trans_type" class="checkbox" type="checkbox" value="Y" checked></td>
|
||
<td nowrap><label for="l_trans_type">[% 'Trans Type' | $T8 %]</label></td>
|
||
<td align="right"><input name="l_comment" id="l_comment" class="checkbox" type="checkbox" value="Y"></td>
|
||
<td nowrap><label for="l_comment">[% 'Comment' | $T8 %]</label></td>
|
||
</tr>
|
||
<tr>
|
||
<td align="right"><input name="l_warehouse_from" id="l_warehouse_from" class="checkbox" type="checkbox" value="Y" checked></td>
|
||
<td nowrap><label for="l_warehouse_from">[% 'Warehouse From' | $T8 %]</label></td>
|
||
<td align="right"><input name="l_bin_from" id="l_bin_from" class="checkbox" type="checkbox" value="Y" checked></td>
|
||
<td nowrap><label for="l_bin_from">[% 'Bin From' | $T8 %]</label></td>
|
||
<td align="right"><input name="l_warehouse_to" id="l_warehouse_to" class="checkbox" type="checkbox" value="Y" checked></td>
|
||
<td nowrap><label for="l_warehouse_to">[% 'Warehouse To' | $T8 %]</label></td>
|
||
<td align="right"><input name="l_bin_to" id="l_bin_to" class="checkbox" type="checkbox" value="Y" checked></td>
|
||
<td nowrap><label for="l_bin_to">[% 'Bin To' | $T8 %]</label></td>
|
||
</tr>
|
||
<tr>
|
||
<td align="right"><input name="l_employee" id="l_employee" class="checkbox" type="checkbox" value="Y"></td>
|
||
<td nowrap><label for="l_employee">[% 'Employee' | $T8 %]</label></td>
|
||
<td align="right"><input name="l_oe_id" id="l_oe_id" class="checkbox" type="checkbox" value="Y"></td>
|
||
<td nowrap><label for="l_oe_id">[% 'Document' | $T8 %]</label></td>
|
||
<td align="right"><input name="l_projectnumber" id="l_projectnumber" class="checkbox" type="checkbox" value="Y" checked></td>
|
||
<td nowrap><label for="l_projectnumber">[% 'Project Number' | $T8 %]</label></td>
|
||
</tr>
|
||
</table>
|
||
</td>
|
||
<th>[% 'To Date' | $T8 %]</th>
|
||
<td> <span class="wi-date">[% L.date_tag('todate') %]</span> </td>
|
||
</tr>
|
||
</table>
|
||
</form>
|
||
</tbody>
|
||
</table>
|
||
|
||
</div><!-- /.wrapper -->
|
||
|
||
<div class="form-addition control-panel">
|
||
<h3>[% 'Include in Report' | $T8 %]</h3>
|
||
|
||
<div class="col list">
|
||
<h4>[% 'Article data' | $T8 %]</h4>
|
||
<div>
|
||
<input name="l_partdescription" id="l_partdescription" type="checkbox" value="Y" checked>
|
||
<label for="l_partdescription">[% 'Part Description' | $T8 %]</label>
|
||
</div>
|
||
<div>
|
||
<input name="l_partnumber" id="l_partnumber" type="checkbox" value="Y" checked>
|
||
<label for="l_partnumber">[% 'Part Number' | $T8 %]</label>
|
||
</div>
|
||
<div>
|
||
<input name="l_chargenumber" id="l_chargenumber" type="checkbox" value="Y" checked>
|
||
<label for="l_chargenumber">[% 'Charge Number' | $T8 %]</label>
|
||
</div>
|
||
<div>
|
||
<input name="l_qty" id="l_qty" type="checkbox" value="Y" checked>
|
||
<label for="l_qty">[% 'Quantity' | $T8 %]</label>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="col list">
|
||
<h4>[% 'Storage' | $T8 %]</h4>
|
||
<div>
|
||
<input name="l_warehouse_from" id="l_warehouse_from" type="checkbox" value="Y" checked>
|
||
<label for="l_warehouse_from">[% 'Warehouse From' | $T8 %]</label>
|
||
</div>
|
||
<div>
|
||
<input name="l_bin_from" id="l_bin_from" type="checkbox" value="Y" checked>
|
||
<label for="l_bin_from">[% 'Bin From' | $T8 %]</label>
|
||
</div>
|
||
<div>
|
||
<input name="l_warehouse_to" id="l_warehouse_to" type="checkbox" value="Y" checked>
|
||
<label for="l_warehouse_to">[% 'Warehouse To' | $T8 %]</label>
|
||
</div>
|
||
<div>
|
||
<input name="l_bin_to" id="l_bin_to" type="checkbox" value="Y" checked>
|
||
<label for="l_bin_to">[% 'Bin To' | $T8 %]</label>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="col list">
|
||
<h4>[% 'Miscellaneous' | $T8 %]</h4>
|
||
<div>
|
||
<input name="l_date" id="l_date" type="checkbox" value="Y" checked>
|
||
<label for="l_date">[% 'Date' | $T8 %]</label>
|
||
</div>
|
||
[% IF INSTANCE_CONF.get_show_bestbefore %]
|
||
<div>
|
||
<input name="l_bestbefore" id="l_bestbefore" type="checkbox" value="Y" checked>
|
||
<label for="l_bestbefore">[% 'Best Before' | $T8 %]</label>
|
||
</div>
|
||
[% END %]
|
||
<div>
|
||
<input name="l_trans_id" id="l_trans_id" type="checkbox" value="Y">
|
||
<label for="l_trans_id">[% 'Trans Id' | $T8 %]</label>
|
||
</div>
|
||
<div>
|
||
<input name="l_trans_type" id="l_trans_type" type="checkbox" value="Y" checked>
|
||
<label for="l_trans_type">[% 'Trans Type' | $T8 %]</label>
|
||
</div>
|
||
<div>
|
||
<input name="l_comment" id="l_comment" type="checkbox" value="Y">
|
||
<label for="l_comment">[% 'Comment' | $T8 %]</label>
|
||
</div>
|
||
<div>
|
||
<input name="l_employee" id="l_employee" type="checkbox" value="Y">
|
||
<label for="l_employee">[% 'Employee' | $T8 %]</label>
|
||
</div>
|
||
<div>
|
||
<input name="l_oe_id" id="l_oe_id" type="checkbox" value="Y">
|
||
<label for="l_oe_id">[% 'Document' | $T8 %]</label>
|
||
</div>
|
||
<div>
|
||
<input name="l_projectnumber" id="l_projectnumber" type="checkbox" value="Y" checked>
|
||
<label for="l_projectnumber">[% 'Project Number' | $T8 %]</label>
|
||
</div>
|
||
</div>
|
||
|
||
</div><!-- /.form-addition -->
|
||
|
||
|
||
</form>
|
templates/webpages/wh/removal_parts_selection.html | ||
---|---|---|
|
||
<p>[% 'Removal from warehouse' | $T8 %]: [% warehouse_description %]</p>
|
||
|
||
<p>
|
||
<table>
|
||
<tr>
|
||
<td>[% 'Select type of removal' | $T8 %]:</td>
|
||
<td>
|
||
<select name="transfer_type_id">
|
||
[%- FOREACH type = TRANSFER_TYPES %]<option value="[% HTML.escape(type.id) %]">[% HTML.escape(type.description) %]</option>[% END %]
|
||
[% FOREACH type = TRANSFER_TYPES %]<option value="[% HTML.escape(type.id) %]">[% HTML.escape(type.description) %]</option>[% END %]
|
||
</select>
|
||
</td>
|
||
</tr>
|
||
... | ... | |
<td><input type="text" name="comment" size="60"></td>
|
||
</tr>
|
||
</table>
|
||
</p>
|
||
|
||
<p>
|
||
<table>
|
||
<tr>
|
||
<th class="listheading">[% 'Bin' | $T8 %]</th>
|
||
<th class="listheading">[% 'Part Number' | $T8 %]</th>
|
||
<th class="listheading">[% 'Part Description' | $T8 %]</th>
|
||
<th class="listheading">[% 'Charge Number' | $T8 %]</th>
|
||
<th>[% 'Bin' | $T8 %]</th>
|
||
<th>[% 'Part Number' | $T8 %]</th>
|
||
<th>[% 'Part Description' | $T8 %]</th>
|
||
<th>[% 'Charge Number' | $T8 %]</th>
|
||
[% IF INSTANCE_CONF.get_show_bestbefore %]
|
||
<th class="listheading">[% 'Best Before' | $T8 %]</th>
|
||
<th>[% 'Best Before' | $T8 %]</th>
|
||
[% END %]
|
||
<th class="listheading">[% 'EAN' | $T8 %]</th>
|
||
<th class="listheading">[% 'Available qty' | $T8 %]</th>
|
||
<th class="listheading">[% 'Removal qty' | $T8 %]</th>
|
||
<th>[% 'EAN' | $T8 %]</th>
|
||
<th>[% 'Available qty' | $T8 %]</th>
|
||
<th>[% 'Removal qty' | $T8 %]</th>
|
||
</tr>
|
||
[% FOREACH row = CONTENTS %]
|
||
<tr class="listrow[% loop.count % 2 %]">
|
||
... | ... | |
<td>[% HTML.escape(row.ean) %]</td>
|
||
<td>[% HTML.escape(row.qty) %]</td>
|
||
<td>
|
||
<input name="qty_[% loop.count %]">
|
||
<input type="text" name="qty_[% loop.count %]">
|
||
<select name="unit_[% loop.count %]">
|
||
[% FOREACH unit = row.UNITS %]<option[% IF unit.selected %] selected[% END %]>[% HTML.escape(unit.name) %]</option>[% END %]
|
||
</select>
|
||
</td>
|
||
</tr>
|
||
|
||
[% END %]
|
||
|
||
<input type="hidden" name="rowcount" value="[% CONTENTS.size %]">
|
||
|
||
<tr><td colspan="7"><hr size="3" noshade></td></tr>
|
||
|
||
</table>
|
||
</p>
|
||
</form>
|
templates/webpages/wh/report_filter.html | ||
---|---|---|
|
||
--></script>
|
||
|
||
<input type="hidden" name="nextsub" value="generate_report">
|
||
<form method="post" name="Form" action="wh.pl" id="form">
|
||
<div class="wrapper">
|
||
|
||
<table>
|
||
<input type="hidden" name="nextsub" value="generate_report">
|
||
|
||
<table class="tbl-horizontal">
|
||
<tbody>
|
||
<tr>
|
||
<th class="listheading" align="left" valign="top" colspan="6" nowrap>[% 'Filter' | $T8 %]</th>
|
||
<th>[% 'Warehouse' | $T8 %]:</th>
|
||
<td>
|
||
<select name="warehouse_id" id="warehouse_id" onchange="warehouse_selected(warehouses[this.selectedIndex]['id'], 0)" class="wi-normal">
|
||
<option value="">---</option>
|
||
[% FOREACH warehouse = WAREHOUSES %]
|
||
<option value="[% HTML.escape(warehouse.id) %]">[% warehouse.description %]</option>
|
||
[% END %]
|
||
</select>
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<td>
|
||
<table>
|
||
<tr>
|
||
<th align="right" nowrap>[% 'Warehouse' | $T8 %]:</th>
|
||
<td>
|
||
<select name="warehouse_id" id="warehouse_id" onchange="warehouse_selected(warehouses[this.selectedIndex]['id'], 0)">
|
||
<option value="">---</option>
|
||
[%- FOREACH warehouse = WAREHOUSES %]
|
||
<option value="[% HTML.escape(warehouse.id) %]">[% warehouse.description %]</option>
|
||
[%- END %]
|
||
</select>
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<th align="right" nowrap>[% 'Bin' | $T8 %]:</th>
|
||
<td><select name="bin_id" id="bin_id"></select></td>
|
||
</tr>
|
||
<tr>
|
||
<th align="right" nowrap>[% 'Part Number' | $T8 %]:</th>
|
||
<td><input name="partnumber" size=20></td>
|
||
</tr>
|
||
<tr>
|
||
<th align="right" nowrap>[% 'Parts Classification' | $T8 %]:</th>
|
||
<td>[% P.part.select_classification('classification_id') %]</td>
|
||
</tr>
|
||
<tr>
|
||
<th align="right" nowrap>[% 'Part Description' | $T8 %]:</th>
|
||
<td><input name="description" size=40></td>
|
||
</tr>
|
||
<tr>
|
||
<th align="right" nowrap>[% 'Charge Number' | $T8 %]:</th>
|
||
<td><input name="chargenumber" size=40></td>
|
||
</tr>
|
||
[% IF INSTANCE_CONF.get_show_bestbefore %]
|
||
<tr>
|
||
<th align="right" nowrap>[% 'Best Before' | $T8 %]:</th>
|
||
<td>
|
||
[% L.date_tag('bestbefore') %]
|
||
</td>
|
||
</tr>
|
||
[% END %]
|
||
<tr>
|
||
<th align="right" nowrap>[% 'Qty in stock' | $T8 %]:</th>
|
||
<td>
|
||
<select name="qty_op">
|
||
<option value="dontcare">---</option>
|
||
<option value="atleast">[% 'At least' | $T8 %]</option>
|
||
<option value="atmost">[% 'At most' | $T8 %]</option>
|
||
<option value="exact">[% 'Exact' | $T8 %]</option>
|
||
</select>
|
||
<input name="qty">
|
||
<select name="qty_unit">
|
||
[%- FOREACH unit = UNITS %]<option>[% unit.name %]</option>[% END %]
|
||
</select>
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<th align="right" nowrap>[% 'Stock Qty for Date' | $T8 %]:</th>
|
||
<td>[% L.date_tag('date') %]</td>
|
||
</tr>
|
||
</table>
|
||
</td>
|
||
<th>[% 'Bin' | $T8 %]:</th>
|
||
<td>
|
||
<select name="bin_id" id="bin_id" class="wi-normal">
|
||
</select>
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<th>[% 'Part Number' | $T8 %]:</th>
|
||
<td><input type="text" name="partnumber" class="wi-normal">
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<th>[% 'Parts Classification' | $T8 %]:</th>
|
||
<td>[% P.part.select_classification('classification_id', class='wi-normal') %]</td>
|
||
</tr>
|
||
|
||
<tr height="5"><td> </td></tr>
|
||
|
||
<tr>
|
||
<th class="listheading" align="left" valign="top" colspan="6" nowrap>[% 'Include in Report' | $T8 %]</th>
|
||
<th>[% 'Part Description' | $T8 %]:</th>
|
||
<td><input type="text" name="description" class="wi-normal">
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<td>
|
||
<input name="l_partdescription" type="hidden" value="Y">
|
||
<input name="l_qty" type="hidden" value="Y">
|
||
|
||
<table>
|
||
<tr>
|
||
<td align="right"><input name="l_warehousedescription" id="l_warehousedescription" class="checkbox" type="checkbox" value="Y" checked></td>
|
||
<td nowrap><label for="l_warehousedescription">[% 'Warehouse' | $T8 %]</label></td>
|
||
<td align="right"><input name="l_bindescription" id="l_bindescription" class="checkbox" type="checkbox" value="Y" checked></td>
|
||
<td nowrap><label for="l_bindescription">[% 'Bin' | $T8 %]</label></td>
|
||
</tr>
|
||
|
||
<tr>
|
||
<td align="right"><input name="l_partnumber" id="l_partnumber" class="checkbox" type="checkbox" value="Y" checked></td>
|
||
<td nowrap><label for="l_partnumber">[% 'Part Number' | $T8 %]</label></td>
|
||
<td align="right"><input name="l_chargenumber" id="l_chargenumber" class="checkbox" type="checkbox" value="Y" checked></td>
|
||
<td nowrap><label for="l_chargenumber">[% 'Charge Number' | $T8 %]</label></td>
|
||
[% IF INSTANCE_CONF.get_show_bestbefore %]
|
||
<td align="right"><input name="l_bestbefore" id="l_bestbefore" class="checkbox" type="checkbox" value="Y" checked></td>
|
||
<td nowrap><label for="l_bestbefore">[% 'Best Before' | $T8 %]</label></td>
|
||
<th>[% 'Charge Number' | $T8 %]:</th>
|
||
<td><input type="text" name="chargenumber" class="wi-normal">
|
||
</td>
|
||
</tr>
|
||
[% IF INSTANCE_CONF.get_show_bestbefore %]
|
||
<tr>
|
||
<th>[% 'Best Before' | $T8 %]:</th>
|
||
<td><span class="wi-date">[% L.date_tag('bestbefore') %]</span></td>
|
||
</tr>
|
||
[% END %]
|
||
<tr>
|
||
<th>[% 'Qty in stock' | $T8 %]:</th>
|
||
<td>
|
||
<select name="qty_op" class="wi-normal">
|
||
<option value="dontcare">---</option>
|
||
<option value="atleast">[% 'At least' | $T8 %]</option>
|
||
<option value="atmost">[% 'At most' | $T8 %]</option>
|
||
<option value="exact">[% 'Exact' | $T8 %]</option>
|
||
</select>
|
||
<input type="text" name="qty" class="wi-verysmall">
|
||
<select name="qty_unit" class="wi-small">
|
||
[% FOREACH unit = UNITS %]
|
||
<option>[% unit.name %]</option>
|
||
[% END %]
|
||
</tr>
|
||
|
||
<tr><td colspan="4"><hr noshade height="1"></td></tr>
|
||
|
||
<tr>
|
||
<td align="right"><input name="subtotal" id="subtotal" class="checkbox" type="checkbox" value="Y"></td>
|
||
<td nowrap><label for="subtotal">[% 'Subtotal' | $T8 %]</label></td>
|
||
<td align="right"><input name="include_empty_bins" id="include_empty_bins" class="checkbox" type="checkbox" value="Y"></td>
|
||
<td nowrap><label for="include_empty_bins">[% 'Include empty bins' | $T8 %]</label></td>
|
||
<td align="right"><input name="include_invalid_warehouses" id="include_invalid_warehouses" class="checkbox" type="checkbox" value="Y"></td>
|
||
<td nowrap><label for="include_invalid_warehouses">[% 'Include invalid warehouses ' | $T8 %]</label></td>
|
||
</tr>
|
||
|
||
<tr>
|
||
<td align="right"><input name="l_stock_value" id="l_stock_value" class="checkbox" type="checkbox" value="Y"></td>
|
||
<td nowrap><label for="l_stock_value">[% 'Stock value' | $T8 %]</label></td>
|
||
<td align="right"><input name="l_purchase_price" id="l_purchase_price" class="checkbox" type="checkbox" value="Y"></td>
|
||
<td nowrap><label for="l_purchase_price">[% 'Purchase price' | $T8 %]</label></td>
|
||
</tr>
|
||
|
||
</table>
|
||
</td>
|
||
</select>
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<th>[% 'Stock Qty for Date' | $T8 %]:</th>
|
||
<td><span class="wi-date">[% L.date_tag('date') %]</span></td>
|
||
</tr>
|
||
</table>
|
||
</form>
|
||
</tbody>
|
||
</table>
|
||
|
||
</div><!-- /.wrapper -->
|
||
|
||
<div class="form-addition control-panel">
|
||
<h3>[% 'Include in Report' | $T8 %]</h3>
|
||
<input name="l_partdescription" type="hidden" value="Y">
|
||
<input name="l_qty" type="hidden" value="Y">
|
||
|
||
<div class="list col">
|
||
<h4>[% 'Store & Articles' | $T8 %]</h4>
|
||
<input name="l_warehousedescription" id="l_warehousedescription" type="checkbox" value="Y" checked>
|
||
<label for="l_warehousedescription">[% 'Warehouse' | $T8 %]</label>
|
||
<input name="l_bindescription" id="l_bindescription" type="checkbox" value="Y" checked>
|
||
<label for="l_bindescription">[% 'Bin' | $T8 %]</label>
|
||
<input name="l_partnumber" id="l_partnumber" type="checkbox" value="Y" checked>
|
||
<label for="l_partnumber">[% 'Part Number' | $T8 %]</label>
|
||
<input name="l_chargenumber" id="l_chargenumber" type="checkbox" value="Y" checked>
|
||
<label for="l_chargenumber">[% 'Charge Number' | $T8 %]</label>
|
||
</div>
|
||
<div class="list col">
|
||
<h4>[% 'Options' | $T8 %]</h4>
|
||
[% IF INSTANCE_CONF.get_show_bestbefore %] <input name="l_bestbefore" id="l_bestbefore" type="checkbox" value="Y" checked>
|
||
<label for="l_bestbefore">[% 'Best Before' | $T8 %]</label>
|
||
[% END %] <input name="subtotal" id="subtotal" type="checkbox" value="Y">
|
||
<label for="subtotal">[% 'Subtotal' | $T8 %]</label>
|
||
<input name="include_empty_bins" id="include_empty_bins" type="checkbox" value="Y">
|
||
<label for="include_empty_bins">[% 'Include empty bins' | $T8 %]</label>
|
||
<input name="include_invalid_warehouses" id="include_invalid_warehouses" type="checkbox" value="Y">
|
||
<label for="include_invalid_warehouses">[% 'Include invalid warehouses ' | $T8 %]</label>
|
||
</div>
|
||
<div class="list col">
|
||
<h4>[% 'Values & Prices' | $T8 %]</h4>
|
||
<input name="l_stock_value" id="l_stock_value" type="checkbox" value="Y">
|
||
<label for="l_stock_value">[% 'Stock value' | $T8 %]</label>
|
||
<input name="l_purchase_price" id="l_purchase_price" type="checkbox" value="Y">
|
||
<label for="l_purchase_price">[% 'Purchase price' | $T8 %]</label>
|
||
</div>
|
||
</div>
|
||
<!-- /.form-addition -->
|
||
|
||
</form>
|
templates/webpages/wh/transfer_parts_selection.html | ||
---|---|---|
|
||
<p>[% 'Transfer from warehouse' | $T8 %]: [% warehouse_description %]</p>
|
||
|
||
<p>
|
||
<table>
|
||
<table class="tbl-horizontal">
|
||
<tbody>
|
||
<tr>
|
||
<th>[% 'Select type of transfer' | $T8 %]:</th>
|
||
<td>
|
||
... | ... | |
</tbody>
|
||
</table>
|
||
|
||
<p>
|
||
<table>
|
||
<table class="tbl-list">
|
||
<thead>
|
||
<tr>
|
||
<th class="listheading">[% 'Source bin' | $T8 %]</th>
|
||
<th class="listheading">[% 'Part Number' | $T8 %]</th>
|
||
<th class="listheading">[% 'Part Description' | $T8 %]</th>
|
||
<th class="listheading">[% 'Charge Number' | $T8 %]</th>
|
||
[% IF INSTANCE_CONF.get_show_bestbefore %]
|
||
<th class="listheading">[% 'Best Before' | $T8 %]</th>
|
||
[% END %]
|
||
<th class="listheading">[% 'EAN' | $T8 %]</th>
|
||
<th class="listheading">[% 'Available qty' | $T8 %]</th>
|
||
<th class="listheading" colspan="2">[% 'Transfer qty' | $T8 %]</th>
|
||
<th class="listheading" colspan="2">[% 'Destination warehouse and bin' | $T8 %]</th>
|
||
<th>[% 'Source bin' | $T8 %]</th>
|
||
<th>[% 'Part Number' | $T8 %]</th>
|
||
<th>[% 'Part Description' | $T8 %]</th>
|
||
<th>[% 'Charge Number' | $T8 %]</th>
|
||
[% IF INSTANCE_CONF.get_show_bestbefore %]
|
||
<th>[% 'Best Before' | $T8 %]</th>
|
||
[% END %]
|
||
<th>[% 'EAN' | $T8 %]</th>
|
||
<th>[% 'Available qty' | $T8 %]</th>
|
||
<th colspan="2">[% 'Transfer qty' | $T8 %]</th>
|
||
<th colspan="2">[% 'Destination warehouse and bin' | $T8 %]</th>
|
||
</tr>
|
||
|
||
</thead>
|
||
<tbody>
|
||
[% FOREACH row = CONTENTS %]
|
||
<tr>
|
||
<td>
|
||
... | ... | |
</td>
|
||
</tr>
|
||
[% END %]
|
||
</tbody>
|
||
</table>
|
||
|
||
<input type="hidden" name="rowcount" value="[% CONTENTS.size %]">
|
||
|
templates/webpages/wh/warehouse_selection.html | ||
---|---|---|
});
|
||
--></script>
|
||
|
||
<form name="Form" method="post" action="wh.pl" id="form">
|
||
<form name="Form" method="post" action="wh.pl" id="form">
|
||
<div class="wrapper">
|
||
|
||
[% IF saved_message %]
|
||
<p>[% saved_message %]</p>
|
||
... | ... | |
|
||
<p>[% 'If you enter values for the part number and / or part description then only those bins containing parts whose part number or part description match your input will be shown.' | $T8 %]</p>
|
||
|
||
<p>
|
||
<table>
|
||
<table class="tbl-horizontal">
|
||
<tbody>
|
||
<tr>
|
||
<th align="right" nowrap>[% 'Transfer from warehouse' | $T8 %]:</th>
|
||
<td>
|
||
<select name="warehouse_id" id="warehouse_id" onchange="warehouse_selected(warehouses[this.selectedIndex]['id'], 0)">
|
||
[%- FOREACH warehouse = WAREHOUSES %]
|
||
<option value="[% HTML.escape(warehouse.id) %]">[% warehouse.description %]</option>
|
||
[%- END %]
|
||
</select>
|
||
</td>
|
||
<th>[% 'Transfer from warehouse' | $T8 %]</th>
|
||
<td>
|
||
<select name="warehouse_id" id="warehouse_id" onchange="warehouse_selected(warehouses[this.selectedIndex]['id'], 0)" class="wi-lightwide">
|
||
[% FOREACH warehouse = WAREHOUSES %]
|
||
<option value="[% HTML.escape(warehouse.id) %]">[% warehouse.description %]</option>
|
||
[% END %]
|
||
</select>
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<th align="right" nowrap>[% 'Bin' | $T8 %]:</th>
|
||
<td><select id="bin_id" name="bin_id"></select></td>
|
||
<th>[% 'Bin' | $T8 %]</th>
|
||
<td>
|
||
<select id="bin_id" name="bin_id" class="wi-lightwide"></select>
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<th align="right" nowrap>[% 'Limit part selection' | $T8 %]:</th>
|
||
<td></td>
|
||
<th>[% 'Limit part selection' | $T8 %]</th>
|
||
<td><span class="plain-data"> </span></td>
|
||
</tr>
|
||
<tr>
|
||
<th align="right" nowrap>[% 'Part' | $T8 %]</th>
|
||
<td>
|
||
[% P.part.picker("part_id", '', size="30", part_type="part,assembly") %]
|
||
</td>
|
||
<th>[% 'Part' | $T8 %]</th>
|
||
<td>[% P.part.picker("part_id", '', part_type="part,assembly", class="wi-lightwide") %]</td>
|
||
</tr>
|
||
<tr>
|
||
<th align="right" nowrap>[% 'Charge number' | $T8 %]</th>
|
||
<td><input name="chargenumber" size="30"></td>
|
||
<th>[% 'Charge number' | $T8 %]</th>
|
||
<td><input type="text" name="chargenumber" class="wi-lightwide"></td>
|
||
</tr>
|
||
[% IF INSTANCE_CONF.get_show_bestbefore %]
|
||
<tr>
|
||
<th align="right" nowrap>[% 'Best Before' | $T8 %]</th>
|
||
<td>
|
||
[% L.date_tag('bestbefore') %]
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<th>[% 'Best Before' | $T8 %]</th>
|
||
<td><span class="wi-date">[% L.date_tag('bestbefore') %]</span></td>
|
||
</tr>
|
||
[% END %]
|
||
<tr>
|
||
<th align="right" nowrap>[% 'EAN' | $T8 %]</th>
|
||
<td><input name="ean" size="30"></td>
|
||
<th>[% 'EAN' | $T8 %]</th>
|
||
<td><input type="text" name="ean" class="wi-lightwide"></td>
|
||
</tr>
|
||
</tbody>
|
||
</table>
|
||
|
||
</div><!-- /.wrapper -->
|
||
</form>
|
templates/webpages/wh/warehouse_selection_assembly.html | ||
---|---|---|
})
|
||
--></script>
|
||
|
||
<form name="Form" method="post" action="wh.pl" id="form">
|
||
<form name="Form" method="post" action="wh.pl" id="form">
|
||
<div class="wrapper">
|
||
|
||
[% IF saved_message %]
|
||
<p>[% saved_message %]</p>
|
||
[% END %]
|
||
|
||
<p>
|
||
<table>
|
||
<tr>
|
||
<th align="right" nowrap>[% 'Assembly' | $T8 %]</th>
|
||
<td>
|
||
[% P.part.picker("parts_id", parts_id, part_type="assembly", class="initial_focus", fat_set_item="1") %]
|
||
</td>
|
||
</tr>
|
||
|
||
<table class="tbl-horizontal">
|
||
<tbody>
|
||
<tr>
|
||
<th align="right" nowrap>[% 'Destination warehouse' | $T8 %]</th>
|
||
<td>
|
||
<select name="warehouse_id" id="warehouse_id" onchange="warehouse_selected(warehouses[this.selectedIndex]['id'], 0)">
|
||
[%- FOREACH warehouse = WAREHOUSES %]
|
||
<option value="[% HTML.escape(warehouse.id) %]"[% IF warehouse_id == warehouse.id %] selected[% END %]>[% warehouse.description %]</option>
|
||
[%- END %]
|
||
</select>
|
||
</td>
|
||
<th>[% 'Assembly' | $T8 %]</th>
|
||
<td>[% P.part.picker("parts_id", parts_id, part_type="assembly", class="initial_focus", fat_set_item="1", class="wi-lightwide") %] </td>
|
||
</tr>
|
||
<tr>
|
||
<th align="right" nowrap>[% 'Destination bin' | $T8 %]:</th>
|
||
<td><select id="bin_id" name="bin_id"></select></td>
|
||
<th>[% 'Destination warehouse' | $T8 %]</th>
|
||
<td>
|
||
<select name="warehouse_id" id="warehouse_id" onchange="warehouse_selected(warehouses[this.selectedIndex]['id'], 0)" class="wi-lightwide">
|
||
[% FOREACH warehouse = WAREHOUSES %]
|
||
<option value="[% HTML.escape(warehouse.id) %]"[% IF warehouse_id == warehouse.id %] selected[% END %]>[% warehouse.description %]</option>
|
||
[% END %]
|
||
</select>
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<th align="right" nowrap>[% 'Charge number' | $T8 %]</th>
|
||
<td><input name="chargenumber" size="30" value="[% HTML.escape(chargenumber) %]"></td>
|
||
<th>[% 'Destination bin' | $T8 %]</th>
|
||
<td><select id="bin_id" name="bin_id" class="wi-lightwide"></select></td>
|
||
</tr>
|
||
|
||
[% IF INSTANCE_CONF.get_show_bestbefore %]
|
||
<tr>
|
||
<th align="right" nowrap>[% 'Best Before' | $T8 %]</th>
|
||
<td>
|
||
[% L.date_tag('bestbefore', bestbefore) %]
|
||
</td>
|
||
<th>[% 'Charge number' | $T8 %]</th>
|
||
<td><input type="text" name="chargenumber" class="wi-lightwide" value="[% HTML.escape(chargenumber) %]"></td>
|
||
</tr>
|
||
[% IF INSTANCE_CONF.get_show_bestbefore %]
|
||
<tr>
|
||
<th>[% 'Best Before' | $T8 %]</th>
|
||
<td><span class="wi-date">[% L.date_tag('bestbefore', bestbefore) %]</span> </td>
|
||
</tr>
|
||
[% END %]
|
||
<tr>
|
||
<th align="right" nowrap>[% 'Quantity' | $T8 %]</th>
|
||
<td>
|
||
<input name="qty" size="10" value="[% HTML.escape(LxERP.format_amount(qty)) %]">
|
||
<select name="unit">
|
||
[%- FOREACH unit = UNITS %]<option[% IF unit.selected %] selected[% END %]>[% HTML.escape(unit.name) %]</option>[% END %]
|
||
</select>
|
||
</td>
|
||
<th>[% 'Quantity' | $T8 %]</th>
|
||
<td>
|
||
<input type="text" name="qty" class="wi-verysmall" value="[% HTML.escape(LxERP.format_amount(qty)) %]">
|
||
<select name="unit" class="wi-small">
|
||
[% FOREACH unit = UNITS %]
|
||
<option[% IF unit.selected %] selected[% END %]>[% HTML.escape(unit.name) %]</option>
|
||
[% END %]
|
||
</select>
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<th align="right" nowrap>[% 'Optional comment' | $T8 %]</th>
|
||
<td><input name="comment" size="30" value="[% HTML.escape(comment) %]"></td>
|
||
<th>[% 'Optional comment' | $T8 %]</th>
|
||
<td><input type="text" name="comment" class="wi-lightwide" value="[% HTML.escape(comment) %]">
|
||
</td>
|
||
</tr>
|
||
</tbody>
|
||
</table>
|
Auch abrufbar als: Unified diff
Design-4.0: HTML-Anpassung an neues Design templates/webpages/wh/..
Neues kivitendo Design Aenderungen in templates/webpages/wh/..