Projekt

Allgemein

Profil

Herunterladen (3 KB) Statistiken
| Zweig: | Markierung: | Revision:
dfee9199 Sven Schöling
[%- USE T8 %]
6bb79765 Sven Schöling
[%- USE HTML %]
db1d60aa Moritz Bunkus
[%- USE L %][%- USE P -%]
3aa5cee2 Sven Schöling
<h1>[% title %]</h1>

9c8d0637 Sven Schöling
[% PROCESS 'common/flash.html' %]
2c5603bb Moritz Bunkus
<form method="post" name="search" action="dn.pl">

<table width="100%">
<tr>
<td>
<table>
<tr>
dfee9199 Sven Schöling
<th align="right">[% 'Customer' | $T8 %]</th>
db1d60aa Moritz Bunkus
<td colspan="3">[% P.input_tag("customer", "", size="35", class="initial_focus") %]</td>
2c5603bb Moritz Bunkus
</tr>

79d30e2e Moritz Bunkus
[% IF SHOW_DUNNING_LEVELS %]
2c5603bb Moritz Bunkus
<tr>
dfee9199 Sven Schöling
<th align="right" nowrap>[% 'Dunning Level' | $T8 %]</th>
2c5603bb Moritz Bunkus
<td colspan="3">
<select name="dunning_level">
<option value=""></option>
79d30e2e Moritz Bunkus
[% FOREACH row = DUNNING %]<option value="[% HTML.escape(row.id) %]">[% HTML.escape(row.dunning_description) %]</option>
[% END %]
2c5603bb Moritz Bunkus
</select>
</td>
</tr>
79d30e2e Moritz Bunkus
[% END %]
2c5603bb Moritz Bunkus
db1d60aa Moritz Bunkus
[% IF ALL_DEPARTMENTS.as_list.size %]
2c5603bb Moritz Bunkus
<tr>
dfee9199 Sven Schöling
<th align="right" nowrap>[% 'Department' | $T8 %]</th>
2c5603bb Moritz Bunkus
<td colspan="3">
<select name="department_id">
<option value=""></option>
79d30e2e Moritz Bunkus
[% FOREACH row = ALL_DEPARTMENTS %]<option value="[% HTML.escape(row.id) %]">[% HTML.escape(row.description) %]</option>
[% END %]
2c5603bb Moritz Bunkus
</select>
</td>
</tr>
79d30e2e Moritz Bunkus
[% END %]
2c5603bb Moritz Bunkus
<tr>
dfee9199 Sven Schöling
<th align="right" nowrap>[% 'Invoice Number' | $T8 %]</th>
2c5603bb Moritz Bunkus
<td colspan="3"><input name="invnumber" size="20"></td>
</tr>

<tr>
dfee9199 Sven Schöling
<th align="right" nowrap>[% 'Order Number' | $T8 %]</th>
2c5603bb Moritz Bunkus
<td colspan="3"><input name="ordnumber" size="20"></td>
</tr>

<tr>
dfee9199 Sven Schöling
<th align="right" nowrap>[% 'Notes' | $T8 %]</th>
2c5603bb Moritz Bunkus
<td colspan="3"><input name="notes" size="40"></td>
</tr>

<tr>
dfee9199 Sven Schöling
<th align="right" nowrap>[% 'Invdate from' | $T8 %]</th>
2c5603bb Moritz Bunkus
<td>
46bc75c8 Thomas Heck
[% L.date_tag('transdatefrom') %]
2c5603bb Moritz Bunkus
</td>
dfee9199 Sven Schöling
<th align="right" nowrap>[% 'To (time)' | $T8 %]</th>
2c5603bb Moritz Bunkus
<td>
46bc75c8 Thomas Heck
[% L.date_tag('transdateto') %]
2c5603bb Moritz Bunkus
</td>
</tr>

<tr>
dfee9199 Sven Schöling
<th align="right" nowrap>[% 'Dunning Date from' | $T8 %]</th>
2c5603bb Moritz Bunkus
<td>
46bc75c8 Thomas Heck
[% L.date_tag('dunningfrom') %]
2c5603bb Moritz Bunkus
</td>
dfee9199 Sven Schöling
<th align="right" nowrap>[% 'To (time)' | $T8 %]</th>
2c5603bb Moritz Bunkus
<td>
46bc75c8 Thomas Heck
[% L.date_tag('dunningto') %]
2c5603bb Moritz Bunkus
</td>
</tr>
8145351d David Ohlbrecht
<tr>
dfee9199 Sven Schöling
<th align="right">[% 'Salesman' | $T8 %]</th>
58966151 Thomas Heck
<td>[% L.select_tag('salesman_id', ALL_EMPLOYEES, title_key = 'safe_name', with_empty = 1, style = 'width:250px') %]</td>
8145351d David Ohlbrecht
</tr>
2c5603bb Moritz Bunkus
</table>
</td>
</tr>

<tr><td><hr size="3" noshade></td></tr>

<tr>
<td>
<table>
<tr>
dfee9199 Sven Schöling
<th align="right" nowrap>[% 'Show old dunnings' | $T8 %]</th>
2c5603bb Moritz Bunkus
<td><input type="checkbox" value="1" name="showold"></td>
dfee9199 Sven Schöling
<th align="right" nowrap>[% 'Show Salesman' | $T8 %]</th>
26b68f7e David Ohlbrecht
<td><input type="checkbox" value="1" name="l_salesman"></td>
2c5603bb Moritz Bunkus
</tr>
</table>
</td>
</tr>
</table>

<input type="hidden" name="nextsub" value="show_dunning">

<br>

dfee9199 Sven Schöling
<input class="submit" type="submit" name="action" value="[% 'Continue' | $T8 %]">
2c5603bb Moritz Bunkus
</form>