Umstellung der Benutzerverwaltung von Dateien im Verzeichnis "users" auf die Verwendu...
[kivitendo-erp.git] / templates / webpages / dunning / add_master.html
1 [% USE HTML %]<script type="text/javascript" src="js/common.js"></script>
2 <script type="text/javascript">
3  <!--
4      function setup_controls() {
5        fokus();
6        setupDateFormat('[% myconfig_dateformat %]', '<translate>Wrong date format!</translate>');
7        setupPoints('[% myconfig_numberformat %]', '<translate>wrongformat</translate>');
8      }
9    -->
10 </script>
11
12 <body onLoad="setup_controls();">
13
14  <div class="listtop">[% title %]</div>
15
16  <form method="post" name="search" action="dn.pl">
17
18   <table>
19    <tr>
20     <th align="right"><translate>Customer</translate></th>
21     <td colspan="3">
22      [% IF SHOW_CUSTOMER_SELECTION %]
23       <select name="customer">
24        <option></option>
25        [% FOREACH row = all_customer %]<option>[% HTML.escape(row.name) %]--[% HTML.escape(row.id) %]</option>[% END %]
26       </select>
27       [% ELSE %]
28       <input name="customer" size="35">
29      [% END %]
30     </td>
31    </tr>
32
33    [% IF SHOW_DUNNING_LEVEL_SELECTION %]
34     <tr>
35      <th align="right"><translate>Next Dunning Level</translate></th>
36      <td colspan="3">
37       <select name="dunning_level">
38        <option></option>
39        [% FOREACH row = DUNNING %]<option value="[% HTML.escape(row.id) %]">[% HTML.escape(row.dunning_description) %]</option>[% END %]
40       </select>
41      </td>
42     </tr>
43    [% END %]
44
45    [% IF SHOW_DEPARTMENT_SELECTION %]
46     <tr>
47      <th align="right"><translate>Department</translate></th>
48      <td colspan="3">
49       <select name="department">
50        <option></option>
51        [% FOREACH row = all_departments %]<option>[% HTML.escape(row.description) %]--[% HTML.escape(row.id) %]</option>[% END %]
52       </select>
53      </td>
54     </tr>
55    [% END %]
56
57    <tr>
58     <th align="right" nowrap><translate>Invoice Number</translate></th>
59     <td colspan="3"><input name="invnumber" size="20"></td>
60    </tr>
61
62    <tr>
63     <th align="right" nowrap><translate>Order Number</translate></th>
64     <td colspan="3"><input name="ordnumber" size="20"></td>
65    </tr>
66
67    <tr>
68     <th align="right" nowrap><translate>Notes</translate></th>
69     <td colspan="3"><input name="notes" size="40"></td>
70    </tr>
71
72    <tr><td colspan="2"><hr size="3" noshade></td></tr>
73
74    <tr>
75     <th align="right" nowrap><translate>Minimum Amount</translate></th>
76     <td><input name="minamount" size="6"></td>
77    </tr>
78
79    <tr>
80     <th align="right" nowrap><translate>Group Invoices</translate></th>
81     <td><input type="checkbox" value="1" name="groupinvoices" checked></td>
82    </tr>
83   </table>
84
85   <input type="hidden" name="nextsub" value="show_invoices">
86
87   <br>
88   <input class="submit" type="submit" name="action" value="<translate>Continue</translate>">
89
90  </form>
91
92 </body>
93
94 </html>