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