bfa979d45c9d134511d43fe337baa93da6ebb224
[kivitendo-erp.git] / templates / webpages / dunning / show_invoices.html
1 [%- USE T8 %]
2 [% USE HTML %]
3 [% USE L %][%- USE LxERP -%]
4 <h1>[% title %]</h1>
5
6 [% SET all_active = 1 %][% FOREACH row = DUNNINGS %][% IF !row.active %][% SET all_active = 0 %][% LAST %][% END %][% END %]
7 [% SET all_email = 1 %][% FOREACH row = DUNNINGS %][% IF !row.email %][% SET all_email = 0 %][% LAST %][% END %][% END %]
8 [% SET all_include_invoices = 1 %][% FOREACH row = DUNNINGS %][% IF !row.print_original_invoice %][% SET all_include_invoices = 0 %][% LAST %][% END %][% END %]
9  <form name="Form" method="post" action="dn.pl" id="form">
10
11   <h2>[% LxERP.t8("Print options") %]</h2>
12
13   [% L.checkbox_tag("force_lang", label=LxERP.t8('Override invoice language'), checked=force_lang) %]
14   [% PRINT_OPTIONS %]
15
16   <h2>[% LxERP.t8("Overdue invoices") %]</h2>
17
18   <p>[% 'The columns &quot;Dunning Duedate&quot;, &quot;Total Fees&quot; and &quot;Interest&quot; show data for the previous dunning created for this invoice.' | $T8 %]</p>
19
20   <table width="100%" id="dunning_invoice_list">
21    <th class="listheading" colspan="2">[% 'Current / Next Level' | $T8 %]</th>
22
23    <th class="listheading">
24     [% L.checkbox_tag('selectall_active', checkall='INPUT[name*=active_]', checked=all_active) %]
25     <label for="selectall_active">[% 'Active?' | $T8 %]</label>
26    </th>
27
28    <th class="listheading">
29     [% L.checkbox_tag('selectall_email', checkall='INPUT[name*=email_]', checked=all_email) %]
30     <label for="selectall_email">[% 'eMail?' | $T8 %]</label>
31    </th>
32    <th class="listheading">
33     [% L.checkbox_tag('selectall_include_invoices', checkall='INPUT[name*=include_invoice_]', checked=all_include_invoices) %]
34     <label for="selectall_include_invoices">[% 'Include original Invoices?' | $T8 %]</label>
35    </th>
36
37    <th class="listheading">[% 'Customername' | $T8 %]</th>
38    <th class="listheading">[% 'Department' | $T8 %]</th>
39    <th class="listheading">[% 'Language' | $T8 %]</th>
40    <th class="listheading">[% 'Invno.' | $T8 %]</th>
41    <th class="listheading">[% 'Invdate' | $T8 %]</th>
42    <th class="listheading">[% 'Inv. Duedate' | $T8 %]</th>
43    <th class="listheading">[% 'Amount' | $T8 %]</th>
44    <th class="listheading">[% 'Open Amount' | $T8 %]</th>
45    <th class="listheading">[% 'Dunning Duedate' | $T8 %]</th>
46    <th class="listheading">[% 'Total Fees' | $T8 %]</th>
47    <th class="listheading">[% 'Interest' | $T8 %]</th>
48    [% IF l_include_direct_debit %]
49     <th class="listheading">[% 'direct debit' | $T8 %]</th>
50    [% END %]
51
52    <!-- Ausgabe der einzelnen Zeilen -->
53
54    [% FOREACH row = DUNNINGS %]
55     <tr class="listrow[% loop.count % 2 %][% IF row.direct_debit %] direct_debit[% END %]">
56
57      <td>
58       <input type="hidden" name="inv_id_[% loop.count %]" size="2" value="[% HTML.escape(row.id) %]">
59       <input type="hidden" name="customer_id_[% loop.count %]" size="2" value="[% HTML.escape(row.customer_id) %]">
60       [% IF row.dunning_level %][% HTML.escape(row.dunning_level) %][% ELSE %]&nbsp;[% END %]
61      </td>
62
63      <td>
64       [% IF row.credit_note %]
65         [% LxERP.t8("Add Credit Note for this dunning level:") %]
66         <input type="hidden" name="credit_note_[% loop.count %]" value="1">
67       [% END %]
68       <select name="next_dunning_config_id_[% loop.count %]">
69        [% FOREACH cfg_row = row.DUNNING_CONFIG %]<option value="[% HTML.escape(cfg_row.id) %]" [% IF cfg_row.SELECTED %]selected[% END %]>[% HTML.escape(cfg_row.dunning_description) %]</option>[% END %]
70       </select>
71      </td>
72
73      <td><input type="checkbox" name="active_[% loop.count %]" value="1" [% IF row.active %]checked[% END %]></td>
74      <td><input type="checkbox" name="email_[% loop.count %]" value="1" [% IF row.email %]checked[% END %]></td>
75      <td><input type="checkbox" name="include_invoice_[% loop.count %]" value="1" [% IF row.print_original_invoice %]checked[% END %]></td>
76      <td><input type="hidden" name="customername_[% loop.count %]" size="6" value="[% HTML.escape(row.customername) %]">[% HTML.escape(row.customername) %]</td>
77      <td><input type="hidden" name="department_[% loop.count %]" size="6" value="[% HTML.escape(row.departmentname) %]">[% HTML.escape(row.departmentname) %]</td>
78      <td><input type="hidden" name="language_id_[% loop.count %]" size="6" value="[% HTML.escape(row.language_id) %]">[% HTML.escape(row.language) %]</td>
79      <td>
80       <input type="hidden" name="invnumber_[% loop.count %]" size="6" value="[% HTML.escape(row.invnumber) %]">
81       <a href="[% IF row.invoice %]is[% ELSE %]ar[% END %].pl?action=edit&type=invoice&id=[% row.id | url %]">[% HTML.escape(row.invnumber) %]</a>
82      </td>
83      <td><input type="hidden" name="invdate_[% loop.count %]" size="6" value="[% HTML.escape(row.transdate) %]">[% HTML.escape(row.transdate) %]</td>
84      <td><input type="hidden" name="inv_duedate_[% loop.count %]" size="6" value="[% HTML.escape(row.duedate) %]">[% HTML.escape(row.duedate) %]</td>
85      <td align="right"><input type="hidden" name="amount_[% loop.count %]" size="6" value="[% HTML.escape(row.amount) %]">[% HTML.escape(row.amount) %]</td>
86      <td align="right"><input type="hidden" name="open_amount_[% loop.count %]" size="6" value="[% HTML.escape(row.open_amount) %]">[% HTML.escape(row.open_amount) %]</td>
87      <td>[% HTML.escape(row.dunning_duedate) %]</td>
88      <td align="right"><input type="hidden" name="fee_[% loop.count %]" size="6" value="[% HTML.escape(row.fee) %]">[% HTML.escape(row.fee) %]</td>
89      <td align="right"><input type="hidden" name="interest_[% loop.count %]" size="6" value="[% HTML.escape(row.interest) %]">[% HTML.escape(row.interest) %]</td>
90      [% IF l_include_direct_debit %]
91      <td>
92       [% IF row.direct_debit %][% LxERP.t8("yes") %][% ELSE %][% LxERP.t8("no") %][% END %]
93      </td>
94      [% END %]
95     </tr>
96    [% END %]
97   </table>
98
99   <input name="rowcount" type="hidden" value="[% HTML.escape(rowcount) %]">
100   <input name="groupinvoices" type="hidden" value="[% HTML.escape(groupinvoices) %]">
101   <input name="l_include_credit_notes" type="hidden" value="[% HTML.escape(l_include_credit_notes) %]">
102   <input name="callback" type="hidden" value="[% HTML.escape(callback) %]">
103  </form>