Layout: title Ausgabe normalisieren
[kivitendo-erp.git] / templates / webpages / generic / select_vendor.html
1 [%- USE T8 %]
2 [%- USE HTML %]
3 <h1>[% title %]</h1>
4
5  <form name="Form">
6
7   <input type="hidden" name="input_name" value="[% HTML.escape(input_name) %]">
8   <input type="hidden" name="input_id" value="[% HTML.escape(input_id) %]">
9
10   <table width="100%">
11    <tr><td>[% 'Please select a vendor from the list below.' | $T8 %]</td></tr>
12
13    <tr>
14     <td>
15
16      <table>
17       <tr class="listheading">
18        <th class="listheading">&nbsp;</th>
19        [%- FOREACH col = HEADER %]
20        <th nowrap class="listheading"><a href="[% HTML.escape(col.callback) %]">[% col.column_title %]</a></th>
21        [%- END %]
22       </tr>
23
24       [%- FOREACH row = VENDOR %]
25       <tr class="listrow[% loop.count % 2 %]">
26        <td><button type="button" onclick="vendor_selected('[% loop.count %]')">Auswahl</button></td>
27        <td>
28         <input type="hidden" id="id_[% loop.count %]" name="id_[% loop.count %]" value="[% HTML.escape(row.id) %]">
29         <input type="hidden" id="name_[% loop.count %]" name="name_[% loop.count %]" value="[% HTML.escape(row.name) %]">
30         [% HTML.escape(name) %]
31        </td>
32        <td>[% HTML.escape(row.customernumber) %]</td>
33        <td>[% HTML.escape(row.address) %]</td>
34 <!--        <td> -->
35 <!--         <input type="hidden" id="description_[% loop.count %]" name="description_[% loop.count %]" value="[% HTML.escape(row.description) %]"> -->
36 <!--         [% HTML.escape(row.description) %] -->
37 <!--        </td> -->
38       </tr>
39       [%- END %]
40      </table>
41
42     </td>
43    </tr>
44   </table>
45
46  </form>
47
48  <script type="text/javascript">
49   <!--
50       function vendor_selected(selected) {
51         var name = document.getElementsByName("name_" + selected)[0].value
52         var id = document.getElementsByName("id_" + selected)[0].value
53         window.opener.document.getElementsByName(document.Form.input_name.value)[0].value = name;
54         if (document.Form.input_id.value != "") {
55           window.opener.document.getElementsByName(document.Form.input_id.value)[0].value = id;
56         }
57         self.close();
58       }
59       //-->
60  </script>
61