on_load entfernt und in jquery.ready verwandelt
[kivitendo-erp.git] / templates / webpages / do / set_stock_in_out.html
1 [% USE HTML %]
2 [% USE L %]
3 [% L.javascript_tag('jquery') %]
4  <script type="text/javascript">
5   <!--
6       $(function(){
7         var row = $('#row').attr('value');
8         window.opener.document.getElementsByName("stock_" + $('#in_out').attr('value') + "_" + row)[0].value = $('#stock').attr('value');
9         $(window.opener.document.getElementById("stock_in_out_qty_display_" + row)).html($('#qty_display').attr('value'));
10         $(window.opener.document.getElementById("stock_in_out_qty_matches_" + row)).val([% qty_matches %]);
11
12         window.close();
13       });
14     -->
15  </script>
16
17  <form name="data">
18   <input type="hidden" name="row" id="row" value="[% HTML.escape(row) %]">
19   <input type="hidden" name="stock" id="stock" value="[% HTML.escape(stock) %]">
20   <input type="hidden" name="in_out" id="in_out" value="[% HTML.escape(in_out) %]">
21   <input type="hidden" name="qty_display" id="qty_display" value="[% HTML.escape(qty_display) %]">
22  </form>
23