[% 'Destination warehouse' | $T8 %] |
[% L.select_tag('warehouse_id', SELF.warehouses, default=SELF.warehouse.id, title_key='description') %]
[% IF SELF.warehouse.id %]
[% L.select_tag('bin_id', SELF.warehouse.bins, default=SELF.bin.id, title_key='description') %]
[%- ELSE %]
[% END %]
|
[% 'Charge number' | $T8 %] |
[% L.input_tag('chargenumber', "", size=30) %] |
[% IF INSTANCE_CONF.get_show_bestbefore %]
[% 'Best Before' | $T8 %] |
[% L.date_tag('bestbefore', "") %] |
[%- END %]
[% 'Target Qty' | $T8 %] |
[% L.input_tag('target_qty', '', size=10, class='numeric') %]
[%- IF SELF.part.unit %]
[% L.select_tag('unit_id', SELF.part.available_units, title_key='name', default=SELF.unit.id) %]
[%- ELSE %]
[% L.select_tag('unit_id', SELF.units, title_key='name') %]
[%- END %]
|
[% 'Cutoff Date' | $T8 %] |
[% L.date_tag('cutoff_date_as_date', SELF.stocktaking_cutoff_date) %]
|
[% 'Optional comment' | $T8 %] |
[% L.input_tag('comment', SELF.stocktaking_comment, size=40) %]
|