X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/846a322f70e71c5d0338f13eeea842d0f87c5ae3..267cb27975e76f64a86cd2d45804c792bcc045bd:/templates/webpages/ap/form_header.html
diff --git a/templates/webpages/ap/form_header.html b/templates/webpages/ap/form_header.html
index 81861fcf6..8720c7340 100644
--- a/templates/webpages/ap/form_header.html
+++ b/templates/webpages/ap/form_header.html
@@ -83,6 +83,7 @@
[% 'Basic Data' | $T8 %]
[%- IF id %]
[% 'Linked Records' | $T8 %]
+ [% LxERP.t8('Transactions') %]
[%- END %]
@@ -107,18 +108,25 @@
- |
-
-
-
- | [% '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 %] |
@@ -267,6 +275,7 @@
[% 'Source' | $T8 %] |
[% 'Memo' | $T8 %] |
[% 'Amount' | $T8 %] |
+ |
[% IF ( !defaultcurrency || (currency != defaultcurrency) ) %]
[% 'Exch' | $T8 %] |
[% END %]
@@ -282,7 +291,7 @@
[% temp = "datepaid_"_ i %]
[% IF( changeable ) %]
- [% L.date_tag(temp, $temp) %]
+ [% L.date_tag(temp, $temp ? $temp : today) %]
[% ELSE %]
[% $temp | html %]
@@ -319,6 +328,12 @@
[% END %]
|
+
+ [% IF changeable && loop.last && paid_missing > 0 %]
+
+ [% END %]
+ |
+
[% IF ( !defaultcurrency || (currency != defaultcurrency) ) %]
[% temp = "exchangerate_"_ i %]
@@ -376,3 +391,7 @@
+
+
|