ActionBar: Verwendung im Mahnprozess
[kivitendo-erp.git] / templates / webpages / dunning / add.html
1 [%- USE T8 %]
2 [% USE HTML %]<script type="text/javascript" src="js/common.js"></script>
3 <h1>[% title %]</h1>
4
5  <form method="post" name="search" action="dn.pl" id="form">
6
7   <table>
8    <tr>
9     <th align="right">[% 'Customer' | $T8 %]</th>
10     <td colspan="3">
11       <input name="customer" size="35" class="initial_focus">
12     </td>
13    </tr>
14
15    [% IF SHOW_DUNNING_LEVEL_SELECTION %]
16     <tr>
17      <th align="right">[% 'Next Dunning Level' | $T8 %]</th>
18      <td colspan="3">
19       <select name="dunning_level">
20        <option></option>
21        [% FOREACH row = DUNNING %]<option value="[% HTML.escape(row.id) %]">[% HTML.escape(row.dunning_description) %]</option>[% END %]
22       </select>
23      </td>
24     </tr>
25    [% END %]
26
27    <tr>
28     <th align="right" nowrap>[% 'Invoice Number' | $T8 %]</th>
29     <td colspan="3"><input name="invnumber" size="20"></td>
30    </tr>
31
32    <tr>
33     <th align="right" nowrap>[% 'Order Number' | $T8 %]</th>
34     <td colspan="3"><input name="ordnumber" size="20"></td>
35    </tr>
36
37    <tr>
38     <th align="right" nowrap>[% 'Notes' | $T8 %]</th>
39     <td colspan="3"><input name="notes" size="40"></td>
40    </tr>
41    <tr>
42     <th align="right" nowrap>[% 'Country' | $T8 %]</th>
43     <td colspan="3"><input name="country" size="40"></td>
44    </tr>
45
46    <tr><td colspan="2"><hr size="3" noshade></td></tr>
47
48    <tr>
49     <th align="right" nowrap>[% 'Minimum Amount' | $T8 %]</th>
50     <td><input name="minamount" size="6"></td>
51    </tr>
52
53    <tr>
54     <th align="right" nowrap><label for="groupinvoices">[% 'Group Invoices' | $T8 %]</label></th>
55     <td><input type="checkbox" value="1" id="groupinvoices" name="groupinvoices" checked></td>
56    </tr>
57
58    <tr>
59     <th align="right" nowrap><label for="l_include_direct_debit">[% 'Include invoices with direct debit' | $T8 %]</label></th>
60     <td><input type="checkbox" value="1" id="l_include_direct_debit" name="l_include_direct_debit"></td>
61    </tr>
62   </table>
63  </form>