X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=templates%2Fwebpages%2Finventory%2Fwarehouse_selection_stock.html;h=9aca162ba1d1257eee9184f4da79cffd6e8579c3;hb=600a70329370f702f236d84851a11aceed1e91e9;hp=e3119913c87d8004e7dc56f32d71c539e1ae6c4b;hpb=81b7704d2bb081e06e5c1b4d7d8f41fa00ca0d10;p=kivitendo-erp.git diff --git a/templates/webpages/inventory/warehouse_selection_stock.html b/templates/webpages/inventory/warehouse_selection_stock.html index e3119913c..9aca162ba 100644 --- a/templates/webpages/inventory/warehouse_selection_stock.html +++ b/templates/webpages/inventory/warehouse_selection_stock.html @@ -1,18 +1,19 @@ [%- USE T8 %] [%- USE L %] +[%- USE P %] [%- USE HTML %] [%- USE LxERP %]

[% title | html %]

-[%- PROCESS 'common/flash.html' %] +[%- 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); })