From: Moritz Bunkus Date: Tue, 3 Nov 2015 08:39:54 +0000 (+0100) Subject: SEPA: Zeilen ohne Bankinfo, die vorausgewählt wären, gesondert markieren X-Git-Tag: release-3.4.1~601 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=3a01b9cad2202ba96ada4828ec3a3dd53e72cca8;p=kivitendo-erp.git SEPA: Zeilen ohne Bankinfo, die vorausgewählt wären, gesondert markieren Bei Überweisungen sind diejenigen Zeilen vorausgewählt, bei denen in der Rechnung der Lastschrifteinzug nicht aktiv ist, die ich also manuell überweisen muss. Bei Einzügen sind diejenigen Zeilen vorausgewählt, bei denen in der Rechnung der Lastschrifteinzug aktiv ist, die ich also einziehen muss. Sprich es werden die Zeilen mit (2) markiert und mit Fehler-Hintergrundfarbe dargestellt, bei denen ich aktiv werden muss aber es momentan aufgrund fehlender Bankinformationen nicht kann. --- diff --git a/locale/de/all b/locale/de/all index 51f787bd0..f32b460ae 100755 --- a/locale/de/all +++ b/locale/de/all @@ -202,6 +202,8 @@ $self->{texts} = { 'Added text blocks: #1' => 'Hinzugefügte Textblöcke: #1', 'Additional articles' => 'Zusätzliche Artikel', 'Additional articles actions' => 'Aktionen zu zusätzlichen Artikeln', + 'Additionally the invoice is marked for direct debit and would have been checked automatically had the bank information been entered.' => 'Weiterhin ist die Rechnung für Lastschrifteinzug vorgesehen und wäre standardmäßig ausgewählt, wenn die Bankinformationen eingetragen wären.', + 'Additionally the invoice is not marked for direct debit and would have been checked automatically had the bank information been entered.' => 'Weiterhin ist die Rechnung nicht für Lastschrifteinzug vorgesehen und wäre standardmäßig ausgewählt, wenn die Bankinformationen eingetragen wären.', 'Address' => 'Adresse', 'Administration' => 'Administration', 'Administration area' => 'Administration', diff --git a/templates/webpages/sepa/bank_transfer_add.html b/templates/webpages/sepa/bank_transfer_add.html index 593a022ea..4b2502242 100644 --- a/templates/webpages/sepa/bank_transfer_add.html +++ b/templates/webpages/sepa/bank_transfer_add.html @@ -52,7 +52,7 @@ - + [%- IF invoice.vc_bank_info_ok %] @@ -64,7 +64,11 @@ [%- GET HTML.escape(invoice.vcname); SET previous_vcname = invoice.vcname; IF !invoice.vc_bank_info_ok; - GET ' (1)'; + IF invoice.checked; + GET ' (2)'; + ELSE; + GET ' (1)'; + END; SET show_vc_bank_info_footnote = '1'; END; -%] @@ -108,6 +112,19 @@ [% "The required information consists of the IBAN, the BIC, the mandator ID and the mandate's date of signature." | $T8 %] [%- END %]

+ +

+ (2) + [%- IF is_vendor %] + [%- 'No bank information has been entered in this vendor\'s master data entry. You cannot create bank transfers unless you enter bank information.' | $T8 %] + [% "The required information consists of the IBAN and the BIC." | $T8 %] + [% LxERP.t8("Additionally the invoice is not marked for direct debit and would have been checked automatically had the bank information been entered.") %] + [%- ELSE %] + [%- 'No bank information has been entered in this customer\'s master data entry. You cannot create bank collections unless you enter bank information.' | $T8 %] + [% "The required information consists of the IBAN, the BIC, the mandator ID and the mandate's date of signature." | $T8 %] + [% LxERP.t8("Additionally the invoice is marked for direct debit and would have been checked automatically had the bank information been entered.") %] + [%- END %] +

[%- END %]