@@ -88,57 +105,74 @@
[% 'Vendor' | $T8 %]
- [% IF ( selectvendor ) %]
- [% selectvendor %]
- [% ELSE %]
-
- [% END %]
-
+ [% P.customer_vendor.picker("vendor_id", vendor_id, type="vendor", show_details="1",
+ style="width: 330px", class=(initial_focus == 'vendor_id' ? "initial_focus" : "")) %]
+ [% L.hidden_tag("previous_vendor_id", vendor_id) %]
-
-
-
-
- [% 'Credit Limit' | $T8 %]
- [% creditlimit | html %]
- [% 'Remaining' | $T8 %]
- [% creditremaining | html %]
-
-
+ [% LxERP.t8("Credit Limit") %]
+
+ [% creditlimit | html %];
+ [% LxERP.t8("Remaining") %]
+ [% creditremaining | html %]
-
+[%- 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 %]
-
+
+ [%- IF readonly %]
+ [% HTML.escape(currency) %]
+ [% L.hidden_tag("currency", currency) %]
+ [%- ELSE %]
+ [% L.select_tag("currency", currencies, default=currency, value_key="name", title_key="name") %]
+ [%- END %]
+
[% IF ( defaultcurrency && (currency != defaultcurrency) ) %]
[% 'Exchangerate' | $T8 %]
- [% IF ( forex ) %]
- [% exchangerate | html %]
- [% ELSE %]
-
- [% END %]
+
+ [%- IF readonly %]
+ [% LxERP.format_amount(exchangerate, 5) %]
+ [% L.hidden_tag("exchangerate", LxERP.format_amount(exchangerate, 5)) %]
+ [%- ELSE %]
+
+ [%- END %]
+ [% IF record_forex %][% 'record exchange rate' | $T8 %][%- ELSE %][% 'default exchange rate' | $T8 %][%- END %]
+ [% L.hidden_tag("record_forex", record_forex) %]
[% END %]
-
- [% IF ( selectdepartment ) %]
+ [% IF ALL_DEPARTMENTS %]
[% 'Department' | $T8 %]
-
- [% selectdepartment %]
-
+ [% L.select_tag('department_id', ALL_DEPARTMENTS, default = department_id, title_key = 'description', with_empty = 1, style = "width:334px") %]
[% END %]
+
+ [% 'Transaction description' | $T8 %]
+ [% L.input_tag("transaction_description", transaction_description, style="width:330px", "data-validate"=INSTANCE_CONF.get_require_transaction_description_ps ? 'required' : '') %]
+
[% 'Tax Included' | $T8 %]
+
+
+ [% 'direct debit' | $T8 %]
+
@@ -146,23 +180,33 @@
[% 'Invoice Number' | $T8 %]
-
+ [% L.input_tag("invnumber", invnumber, size="11", readonly=readonly) %]
[% 'Order Number' | $T8 %]
-
+ [% L.input_tag("ordnumber", ordnumber, size="11", readonly=readonly) %]
[% 'Invoice Date' | $T8 %]
- [% L.date_tag('transdate', transdate) %]
+ [% L.date_tag('transdate', transdate, onchange='kivi.SalesPurchase.set_duedate_on_reference_date_change("transdate")') %]
[% 'Due Date' | $T8 %]
[% L.date_tag('duedate', duedate) %]
+
+ [% LxERP.t8('Tax point') %]
+ [% L.date_tag('tax_point', tax_point, id='tax_point') %]
+
+
+ [% 'Delivery Date' | $T8 %]
+ [% L.date_tag('deliverydate', deliverydate) %]
+
[% 'Project Number' | $T8 %]
- [% globalprojectnumber %]
+
+ [% P.project.picker('globalproject_id', globalproject_id, onchange="document.getElementById('update_button').click();") %]
+
@@ -185,20 +229,32 @@
[% FOREACH i IN [1..rowcount] %]
- [% temp = "selectAP_amount_"_ i %][% $temp %]
+ [% SET selected_chart_id = "AP_amount_chart_id_"_ i %]
+ [% P.chart.picker("AP_amount_chart_id_" _ i, $selected_chart_id, style="width: 400px", type="AP_amount", invalid=0, disabled=readonly, class=(initial_focus == 'row_' _ i ? "initial_focus" : "")) %]
+ [% L.hidden_tag("previous_AP_amount_chart_id_" _ i, $selected_chart_id) %]
-
+
- [% temp = "tax_"_ i %][% $temp | html %]
+ [% temp_r = "tax_reverse_"_ i %]
+ [% IF ($temp_r) %]
+ [% $temp_r | html %]
+
+ [% temp_c = "tax_charge_"_ i %][% $temp_c | html %]
+ [% ELSE %]
+ [% temp = "tax_"_ i %][% $temp | html %]
+ [% END %]
- [% temp = "select_tax_"_ i %][% $temp %]
+ [% temp = 'selected_taxchart_'_ i %]
+ [% taxcharts = 'taxcharts_' _ i %]
+ [% L.select_tag('taxchart_'_ i, $taxcharts, value_title_sub = \taxchart_value_title_sub, default = $temp, style="width: 250px") %]
- [% temp = "select_projectnumber_"_ i %][% $temp %]
+ [% temp = "project_id_"_ i %]
+ [% P.project.picker(temp, loop.last ? globalproject_id : $temp) %]
[% END %]
@@ -209,7 +265,9 @@
- [% APselected %]
+
+ [% P.chart.picker('AP_chart_id', AP_chart_id, style="width: 400px", type="AP") %]
+
[% invtotal | html %]
@@ -218,23 +276,29 @@
-
-
- [% 'Notes' | $T8 %]
-
-
-
-
- [% 'Notes for vendor' | $T8 %]
-
-
-
-
-
+
+
+ [% 'Notes' | $T8 %]
+ [% 'Internal Notes' | $T8 %]
+ [% 'Payment Terms' | $T8 %]
+
+
+
+ [% L.textarea_tag("notes", notes, wrap="soft", rows=textarea_rows, cols=50, readonly=readonly) %]
+
+
+ [% L.textarea_tag("intnotes", intnotes, wrap="soft", rows=textarea_rows, cols=50, readonly=readonly) %]
+
+
+ [% L.select_tag('payment_id', payment_terms, default=payment_id, title_key='description', with_empty=1, style="width: 250px", onchange="kivi.SalesPurchase.set_duedate_on_reference_date_change('transdate')") %]
+
+
+
+ [% UNLESS no_payment_bookings %]
[% 'Payments' | $T8 %]
@@ -245,6 +309,7 @@
[% 'Source' | $T8 %]
[% 'Memo' | $T8 %]
[% 'Amount' | $T8 %]
+
[% IF ( !defaultcurrency || (currency != defaultcurrency) ) %]
[% 'Exch' | $T8 %]
[% END %]
@@ -260,10 +325,10 @@
[% temp = "datepaid_"_ i %]
[% IF( changeable ) %]
- [% L.date_tag(temp, $temp) %]
+ [% L.date_tag(temp, $temp ? $temp : today) %]
[% ELSE %]
[% $temp | html %]
- |;
+
[% END %]
@@ -288,12 +353,18 @@
[% temp = "paid_"_ i %]
-
+
[% IF( changeable ) %]
-
+
[% ELSE %]
[% $temp | html %]
-
+ [% defaultcurrency %]
+ [% END %]
+
+
+
+ [% IF changeable && loop.last && paid_missing > 0 %]
+
[% END %]
@@ -301,34 +372,38 @@
[% temp = "exchangerate_"_ i %]
[% temp_forex = "forex_"_ i %]
+ [% SET defaultcurrency_paid = 'defaultcurrency_paid_' _ i %]
+ [% SET record_forex = 'record_forex_' _ i %]
+ [% SET fx_transaction = 'fx_transaction_' _ i %]
[% IF( $temp_forex || !changeable ) %]
- [% $temp | html %]
+ [% $temp | html %] = [% LxERP.format_amount($defaultcurrency_paid,2) %] [% defaultcurrency %]
+ [% IF $record_forex %][% 'bank transaction exchange rate' | $T8 %][%- ELSE %][% 'default exchange rate' | $T8 %][%- END %]
+
[% ELSE %]
[% END %]
-
+
[% END %]
- [% temp = "AP_paid_"_ i %]
+ [% temp = "AP_paid_"_ i %]
+ [% readonly = "AP_paid_readonly_desc_"_ i %]
[% IF( changeable ) %]
- [% temp = "select"_ temp %]
- [% $temp %]
+ [% L.select_tag(temp, ALL_CHARTS_AP_paid, value_title_sub = \AP_paid_value_title_sub, default = ($temp || accno_arap)) %]
[% ELSE %]
- [% $temp | html %]
+ [% $readonly | html %]
[% END %]
- [% temp = "paid_project_id_"_ i %]
+ [% temp = "paid_project_id_"_ i %]
[% IF( changeable ) %]
- [% temp = "select"_ temp %]
- [% $temp %]
+ [% P.project.picker(temp, $temp) %]
[% ELSE %]
[% temp = "label"_ temp %]
@@ -342,18 +417,35 @@
[% 'Total' | $T8 %]
- [% LxERP.format_amount(totalpaid, 2) | html %]
+ [% LxERP.format_amount(totalpaid, 2) | html %] [% currency %]
+ [% IF ( !defaultcurrency || (currency != defaultcurrency) ) %]
+
+ [% LxERP.format_amount(defaultcurrency_totalpaid, 2) | html %] [% defaultcurrency %]
+
+
+ [% END %]
+
[% 'Missing amount' | $T8 %]
- [% LxERP.format_amount(paid_missing, 2) | html %]
+ [% LxERP.format_amount(paid_missing, 2) | html %] [% currency %]
+ [% END %]
-
-
-
+