Suche nach Verkäufer in Mahnungen und Anzeige von Kundennummer in der Auftragssuche.
[kivitendo-erp.git] / templates / webpages / dunning / search_de.html
1 [% USE HTML %]<body onLoad="[% onload %]">
2
3  <script type="text/javascript" src="js/common.js"></script>
4
5  <form method="post" name="search" action="dn.pl">
6
7   <div class="listtop">[% title %]</div>
8
9   <table width="100%">
10    <tr height="5"></tr>
11    <tr>
12     <td>
13      <table>
14       <tr>
15        <th align="right">Kunde</th>
16        <td colspan="3">
17         [% IF SHOW_CUSTOMER_DDBOX %]
18          <select name="customer_id">
19           <option value=""></option>
20           [% FOREACH row = ALL_CUSTOMERS %]<option value="[% HTML.escape(row.id) %]">[% HTML.escape(row.name) %]</option>
21           [% END %]
22          </select>
23          [% ELSE %]
24          <input name="customer" size="35">
25         [% END %]
26        </td>
27       </tr>
28
29       [% IF SHOW_DUNNING_LEVELS %]
30        <tr>
31         <th align="right" nowrap>Nächste Mahnstufe</th>
32         <td colspan="3">
33          <select name="dunning_level">
34           <option value=""></option>
35           [% FOREACH row = DUNNING %]<option value="[% HTML.escape(row.id) %]">[% HTML.escape(row.dunning_description) %]</option>
36           [% END %]
37          </select>
38         </td>
39        </tr>
40       [% END %]
41
42       [% IF SHOW_DEPARTMENT_DDBOX %]
43        <tr>
44         <th align="right" nowrap>Abteilung</th>
45         <td colspan="3">
46          <select name="department_id">
47           <option value=""></option>
48           [% FOREACH row = ALL_DEPARTMENTS %]<option value="[% HTML.escape(row.id) %]">[% HTML.escape(row.description) %]</option>
49           [% END %]
50          </select>
51         </td>
52        </tr>
53       [% END %]
54
55       <tr>
56        <th align="right" nowrap>Rechnungsnummer</th>
57        <td colspan="3"><input name="invnumber" size="20"></td>
58       </tr>
59
60       <tr>
61        <th align="right" nowrap>Auftragsnummer</th>
62        <td colspan="3"><input name="ordnumber" size="20"></td>
63       </tr>
64
65       <tr>
66        <th align="right" nowrap>Bemerkungen</th>
67        <td colspan="3"><input name="notes" size="40"></td>
68       </tr>
69
70       <tr>
71        <th align="right" nowrap>Rechnungen von</th>
72        <td>
73         <input name="transdatefrom" id="transdatefrom" size="11" title="[% HTML.escape(myconfig_dateformat) %]" onBlur="check_right_date_format(this)">
74         <input type="button" name="transdatefrom" id="trigger1" value="?">
75        </td>
76        <th align="right" nowrap>Bis</th>
77        <td>
78         <input name="transdateto" id="transdateto" size="11" title="[% HTML.escape(myconfig_dateformat) %]" onBlur="check_right_date_format(this)">
79         <input type="button" name="transdateto" id="trigger2" value="?">
80        </td>
81       </tr>
82
83       <tr>
84        <th align="right" nowrap>Mahnungen von</th>
85        <td>
86         <input name="dunningfrom" id="dunningfrom" size="11" title="[% HTML.escape(myconfig_dateformat) %]" onBlur="check_right_date_format(this)">
87         <input type="button" name="dunningfrom" id="trigger3" value="?">
88        </td>
89        <th align="right" nowrap>Bis</th>
90        <td>
91         <input name="dunningto" id="dunningto" size="11" title="[% HTML.escape(myconfig_dateformat) %]" onBlur="check_right_date_format(this)">
92         <input type="button" name="dunningto" id="trigger4" value="?">
93        </td>
94       </tr>
95       <tr>
96        <th align="right">Verkäufer/in</th>
97        <td>
98         [%- INCLUDE 'generic/multibox.html'
99             name          = 'salesman_id',
100             style         = 'width: 250px',
101             DATA          =  ALL_SALESMEN,
102             id_key        = 'id',
103             label_sub     = 'salesman_labels',
104             limit         = vclimit,
105             show_empty    = 1,
106             allow_textbox = 0,
107          -%]
108        </td>
109       </tr>
110      </table>
111     </td>
112    </tr>
113
114    <tr><td><hr size="3" noshade></td></tr>
115
116    <tr>
117     <td>
118      <table>
119       <tr>
120        <th align="right" nowrap>Alte Mahnungen anzeigen</th>
121        <td><input type="checkbox" value="1" name="showold"></td>
122        <th align="right" nowrap>Verkäufer anzeigen</th>
123        <td><input type="checkbox" value="1" name="l_salesman"></td>
124       </tr>
125      </table>
126     </td>
127    </tr>
128   </table>
129
130   <input type="hidden" name="nextsub" value="show_dunning">
131
132   <br>
133
134   <input class="submit" type="submit" name="action" value="Weiter">
135
136  </form>
137
138  <script type="text/javascript">
139   <!--
140       Calendar.setup({ inputField : "transdatefrom", ifFormat :"[% myconfig_jsc_dateformat %]", align : "BR", button : "trigger1" });
141       Calendar.setup({ inputField : "transdateto", ifFormat :"[% myconfig_jsc_dateformat %]", align : "BR", button : "trigger2" });
142       Calendar.setup({ inputField : "dunningfrom", ifFormat :"[% myconfig_jsc_dateformat %]", align : "BR", button : "trigger3" });
143       Calendar.setup({ inputField : "dunningto", ifFormat :"[% myconfig_jsc_dateformat %]", align : "BR", button : "trigger4" });
144     -->
145  </script>
146
147 </body>
148
149 </html>