X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=templates%2Fwebpages%2Finventory%2Fwarehouse_selection_stock.html;h=9aca162ba1d1257eee9184f4da79cffd6e8579c3;hb=53593baa211863fbf66540cf1bcc36c8fb37257f;hp=d53dc0569ba38b9b688497eabe0656af8b6afb7b;hpb=c01d62c4a634f27fc4560d88cf98b84af9a85d95;p=kivitendo-erp.git diff --git a/templates/webpages/inventory/warehouse_selection_stock.html b/templates/webpages/inventory/warehouse_selection_stock.html index d53dc0569..9aca162ba 100644 --- a/templates/webpages/inventory/warehouse_selection_stock.html +++ b/templates/webpages/inventory/warehouse_selection_stock.html @@ -1,5 +1,6 @@ [%- USE T8 %] [%- USE L %] +[%- USE P %] [%- USE HTML %] [%- USE LxERP %] @@ -7,12 +8,12 @@ [%- INCLUDE 'common/flash.html' %] -
+ - + @@ -39,11 +40,6 @@ [%- END %] - - - - - + + + + +
[% 'Part' | $T8 %][% L.part_picker('part_id', SELF.part) %][% P.part.picker('part_id', SELF.part) %]
[% 'EAN' | $T8 %][% L.input_tag('ean', FORM.ean, size=30) %]
[% 'Quantity' | $T8 %] @@ -56,14 +52,16 @@
[% 'Select type of transfer in' | $T8 %]:[% L.select_tag('transfer_type_id', TRANSFER_TYPES, title_key='description') %]
[% 'Optional comment' | $T8 %] [% L.input_tag('comment', FORM.comment, size=60) %]
- - -
@@ -81,14 +79,15 @@ function reload_warehouse_selection () { function reload_bin_selection () { $.post("controller.pl", { action: 'Inventory/warehouse_changed', warehouse_id: function(){ return $('#warehouse_id').val() } }, kivi.eval_json_result); } +function check_part_selection_before_stocking() { + if ($('#part_id').val() !== '') + return true; + + alert(kivi.t8('No article has been selected yet.')); + return false; +} $(function(){ $('#part_id').change(reload_warehouse_selection); - $('#part_id').change(function(){ - if ($('#part_id').val() > 0) - $('#action_stock').removeAttr('disabled'); - else - $('#action_stock').attr('disabled', 'disabled'); - }); $('#warehouse_id').change(reload_bin_selection); })