]> wagnertech.de Git - mfinanz.git/blob - templates/design40_webpages/generic/select_delivery_customer.html
date error in mapping
[mfinanz.git] / templates / design40_webpages / generic / select_delivery_customer.html
1 [% USE T8 %]
2 [% USE HTML %]
3
4 <h1>[% title %]</h1>
5
6 <form name="Form">
7
8 <input type="hidden" name="input_name" value="[% HTML.escape(input_name) %]">
9 <input type="hidden" name="input_id" value="[% HTML.escape(input_id) %]">
10
11 <p>[% 'Please select a customer from the list below.' | $T8 %]</p>
12
13
14 <table class="tbl-list">
15   <thead>
16     <tr>
17       <th>&nbsp;</th>
18       [% FOREACH col = HEADER %]
19         <th><a href="[% HTML.escape(col.callback) %]">[% col.column_title %]</a></th>
20       [% END %]
21     </tr>
22   </thead>
23   <tbody>
24     [% FOREACH row = DELIVERY %]
25     <tr class="listrow[% loop.count % 2 %]">
26       <td><button type="button" onclick="customer_selected('[% loop.count %]')" class="neutral">Auswahl</button></td>
27       <td> <input type="hidden" id="id_[% loop.count %]" name="id_[% loop.count %]" value="[% HTML.escape(row.id) %]">
28       <input type="hidden" id="name_[% loop.count %]" name="name_[% loop.count %]" value="[% HTML.escape(row.name) %]">
29       [% HTML.escape(row.name) %] </td>
30       <td>[% HTML.escape(row.customernumber) %]</td>
31       <td>[% HTML.escape(row.address) %]</td>
32 <!--
33        <td>
34         <input type="hidden" id="description_[% loop.count %]" name="description_[% loop.count %]" value="[% HTML.escape(row.description) %]">
35         [% HTML.escape(row.description) %]
36        </td>
37  -->
38     </tr>
39     [% END %]
40   </tbody>
41 </table>
42
43 </form>
44
45 <script type="text/javascript">
46   <!--
47       function customer_selected(selected) {
48         var name = document.getElementsByName("name_" + selected)[0].value
49         var id = document.getElementsByName("id_" + selected)[0].value
50         window.opener.document.getElementsByName(document.Form.input_name.value)[0].value = name;
51         if (document.Form.input_id.value != "") {
52           window.opener.document.getElementsByName(document.Form.input_id.value)[0].value = id;
53         }
54         self.close();
55       }
56       //-->
57 </script>