-
- [% title | html %]
-
-
@@ -34,9 +43,9 @@
[% 'Customer' | $T8 %]
[%- IF selectcustomer %]
- [% selectcustomer %]
+ [% selectcustomer %]
[%- ELSE %]
-
+
[%- END %]
[% L.hidden_tag('selectcustomer', selectcustomer) %]
@@ -44,19 +53,43 @@
[% L.hidden_tag('customer_id', customer_id) %]
[% L.hidden_tag('terms', terms) %]
+[%- IF max_dunning_level || invoice_obj.dunning_config_id %]
-
-
-
-
- [% 'Credit Limit' | $T8 %]
- [% LxERP.format_amount(creditlimit, 0) %][% L.hidden_tag('creditlimit', LxERP.format_amount(creditlimit, 0)) %]
- [% 'Remaining' | $T8 %]
- [% LxERP.format_amount(creditremaining, 0) %][% L.hidden_tag('creditremaining', LxERP.format_amount(creditremaining, 0)) %]
-
-
+ [% LxERP.t8("Dunning status") %]
+
+ [% IF invoice_obj.dunning_config_id %]
+ [% LxERP.t8("This invoice's dunning level: #1", invoice_obj.dunning_config.dunning_description) %]
+ [% IF max_dunning_level %] [% END %]
+ [% END %]
+ [% IF max_dunning_level %]
+
+ [% LxERP.t8("Customer's current maximum dunning level: #1", max_dunning_level) %]
+
+ [% LxERP.t8("Dunned open amount: #1", LxERP.format_amount(dunning_amount, 2)) %]
+
+ [% END %]
+
+
+[%- END %]
+
+ [% LxERP.t8("Credit Limit") %]
+
+ [% LxERP.format_amount(creditlimit, 0) %][% L.hidden_tag('creditlimit', LxERP.format_amount(creditlimit, 0)) %];
+ [% LxERP.t8("Remaining") %]
+ [% LxERP.format_amount(creditremaining, 0) %][% L.hidden_tag('creditremaining', LxERP.format_amount(creditremaining, 0)) %]
+
+
+[%- IF invoice_obj.sepa_exports.as_list.size %]
+
+ [% LxERP.t8("SEPA exports") %]
+
+ [% FOREACH export = invoice_obj.sepa_exports.as_list %]
+ [% HTML.escape(export.id) %]
+ [% UNLESS loop.last %], [% END %]
+ [% END %]
+[%- END %]
[% 'Currency' | $T8 %]
[% selectcurrency %]
@@ -68,21 +101,22 @@
[% L.hidden_tag('forex', forex) %]
[% IF show_exch %]
[% 'Exchangerate' | $T8 %]
- [%- IF forex %][% L.hidden_tag(exchangerate, LxERP.format_amount(exchangerate, 2)) %][% LxERP.format_amount(exchangerate, 2) %][%- ELSE %][% L.input_tag(exchangerate, LxERP.format_amount(exchangerate, 2), size=10) %][%- END %]
+ [%- IF forex %][% L.hidden_tag('exchangerate', LxERP.format_amount(exchangerate, 5)) %][% LxERP.format_amount(exchangerate, 5) %][%- ELSE %][% L.input_tag('exchangerate', LxERP.format_amount(exchangerate, 5), size=10) %][%- END %]
[% END %]
- [% department_html %]
- [%- IF selectdepartment %]
+ [% IF ALL_DEPARTMENTS %]
+
+ [% 'Department' | $T8 %]
+ [% L.select_tag('department_id', ALL_DEPARTMENTS, default = department_id, title_key = 'description', with_empty = 1) %]
+
+ [% END %]
- [% 'Department' | $T8 %]
- [% selectdepartment %]
-
-
+ [% L.checkbox_tag('taxincluded', checked=taxincluded) %]
+ [% 'Tax Included' | $T8 %]
- [%- END %]
- [% L.checkbox_tag('taxincluded', checked=taxincluded) %]
- [% 'Tax Included' | $T8 %]
+ [% L.checkbox_tag('direct_debit', checked=direct_debit) %]
+ [% 'direct debit' | $T8 %]
@@ -114,7 +148,7 @@
[% 'Project Number' | $T8 %]
- [% L.select_tag('globalproject_id', L.options_for_select(ALL_PROJECTS, title='projectnumber', default=globalproject_id, with_empty=1)) %]
+ [% L.select_tag('globalproject_id', ALL_PROJECTS, title_key = 'projectnumber', default = globalproject_id, with_empty = 1, onChange = "document.getElementById('update_button').click();") %]
@@ -142,7 +176,7 @@
[% L.input_tag('amount_' _ loop.count, LxERP.format_amount(row.amount, 2)) %]
[% L.hidden_tag('tax_' _ loop.count, LxERP.format_tax(row.tax, 2)) %][% LxERP.format_amount(row.tax, 2) | html %]
[% row.taxchart %]
-
[% L.select_tag('project_id_' _ loop.count, L.options_for_select(ALL_PROJECTS, title='projectnumber', default=row.project_id, with_empty=1)) %]
+
[% L.select_tag('project_id_' _ loop.count, ALL_PROJECTS, title_key = 'projectnumber', default = row.project_id, with_empty = 1) %]
[%- END %]
@@ -152,7 +186,7 @@
- [% ARselected %]
+ [% P.chart_picker("AR_chart_id", AR_chart_id, style="width: 400px", type="AR") %]
[% LxERP.format_amount(invtotal, 2) | html %]
@@ -173,6 +207,9 @@
[% 'Notes' | $T8 %]
+
+ [% 'Notes for customer' | $T8 %]
+
@@ -189,6 +226,7 @@
[% 'Source' | $T8 %]
[% 'Memo' | $T8 %]
[% 'Amount' | $T8 %]
+
[%- IF show_exch %]
[% 'Exch' | $T8 %]
[%- END %]
@@ -200,7 +238,7 @@
[%- IF row.changeable %]
- [% L.date_tag('datepaid_' _ loop.count, row.datepaid) %]
+ [% L.date_tag('datepaid_' _ loop.count, row.datepaid ? row.datepaid : today) %]
[%- ELSE %]
[% row.datepaid | html %][% L.hidden_tag('datepaid_' _ loop.count, row.datepaid) %]
[%- END %]
@@ -226,6 +264,11 @@
[% row.paid | html %]
[%- END %]
+
+ [% IF row.changeable && loop.last && paid_missing > 0 %]
+
+ [% END %]
+
[%- IF show_exch %]
[%- IF row.forex || !row.changeable%]
@@ -245,7 +288,7 @@
[%- IF row.changeable %]
- [% L.select_tag('paid_project_id_' _ loop.count, L.options_for_select(ALL_PROJECTS, title='projectnumber', default=row.paid_project_id, with_empty=1)) %]
+ [% L.select_tag('paid_project_id_' _ loop.count, ALL_PROJECTS, title_key = 'projectnumber', default = row.paid_project_id, with_empty=1) %]
[%- ELSE %]
[% project_labels.${row.paid_project_id} | html %]
@@ -273,7 +316,10 @@
-
-
-
+