X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;ds=sidebyside;f=templates%2Fwebpages%2Fdo%2Fstock_in_form.html;h=135a89837dd58eb489e7d68c79b66bc95118d090;hb=f5b56d67c1ef6dc87d4dcd50ba31f9a2b0a20846;hp=99b5db1e247073deb500c1170b464c4d92962ecf;hpb=4b31e6ba4211c900648d92af80ae8d09041977ad;p=kivitendo-erp.git diff --git a/templates/webpages/do/stock_in_form.html b/templates/webpages/do/stock_in_form.html index 99b5db1e2..135a89837 100644 --- a/templates/webpages/do/stock_in_form.html +++ b/templates/webpages/do/stock_in_form.html @@ -29,13 +29,21 @@ } $(function(){ + var bin_id_index = 0; + var warehouse_id_index = 0; [%- USE STOCK_INFO_it = Iterator(STOCK_INFO) %][%- FOREACH si = STOCK_INFO_it %] // new si for wh [% si.warehouse_id %] bin [% si.bin_id %] [%- SET warehouse_selected = '0' %] [%- USE WAREHOUSES_it = Iterator(WAREHOUSES) %][%- FOREACH wh = WAREHOUSES_it %] // wh [% wh.id %] + [% IF HTML.escape(PART_INFO.warehouse_id) == wh.id %] + warehouse_id_index = [% WAREHOUSES_it.count - 1%]; + [% END %] [%- USE BINS_it = Iterator(wh.BINS) %][%- FOREACH bin = BINS_it %] // bin [% bin.id %] + [% IF HTML.escape(PART_INFO.bin_id) == bin.id %] + bin_id_index = [% BINS_it.count - 1%]; + [% END %] [%- IF bin.id == si.bin_id %] warehouse_selected([% STOCK_INFO_it.count %], [% WAREHOUSES_it.count - 1 %], [% BINS_it.count - 1%]); [%- SET warehouse_selected = '1' %] @@ -43,7 +51,7 @@ [%- END %] [%- END %] [%- UNLESS warehouse_selected %] - warehouse_selected([% STOCK_INFO_it.count %], 0); + warehouse_selected([% STOCK_INFO_it.count %], warehouse_id_index, bin_id_index); [%- END %] [%- END %] }); @@ -120,7 +128,7 @@