Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision 3a01b9ca

Von Moritz Bunkus vor etwa 9 Jahren hinzugefügt

  • ID 3a01b9cad2202ba96ada4828ec3a3dd53e72cca8
  • Vorgänger 3b31a829
  • Nachfolger 1504d8a2

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.

Unterschiede anzeigen:

locale/de/all
202 202
  'Added text blocks: #1'       => 'Hinzugefügte Textblöcke: #1',
203 203
  'Additional articles'         => 'Zusätzliche Artikel',
204 204
  'Additional articles actions' => 'Aktionen zu zusätzlichen Artikeln',
205
  '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.',
206
  '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.',
205 207
  'Address'                     => 'Adresse',
206 208
  'Administration'              => 'Administration',
207 209
  'Administration area'         => 'Administration',
templates/webpages/sepa/bank_transfer_add.html
52 52
     <input type="hidden" id="skonto_amount_[% loop.count %]" name="skonto_amount_[% loop.count %]" value="[% LxERP.format_amount(invoice.skonto_amount, 2) %]">
53 53

  
54 54

  
55
     <tr class="listrow[% loop.count % 2 %]">
55
     <tr class="listrow[% IF !invoice.vc_bank_info_ok && invoice.checked %]_error[% END %]">
56 56
      <td align="center">
57 57
       [%- IF invoice.vc_bank_info_ok %]
58 58
        <input type="checkbox" name="bank_transfers[].selected" value="1"[% IF invoice.checked %] checked[% END %]>
......
64 64
         [%- GET HTML.escape(invoice.vcname);
65 65
             SET previous_vcname = invoice.vcname;
66 66
             IF !invoice.vc_bank_info_ok;
67
               GET ' <sup>(1)</sup>';
67
               IF invoice.checked;
68
                 GET ' <sup>(2)</sup>';
69
               ELSE;
70
                 GET ' <sup>(1)</sup>';
71
               END;
68 72
               SET show_vc_bank_info_footnote = '1';
69 73
             END; -%]
70 74
        </a>
......
108 112
     [% "The required information consists of the IBAN, the BIC, the mandator ID and the mandate's date of signature." | $T8 %]
109 113
    [%- END %]
110 114
   </p>
115

  
116
   <p>
117
    <sup>(2)</sup>
118
    [%- IF is_vendor %]
119
     [%- 'No bank information has been entered in this vendor\'s master data entry. You cannot create bank transfers unless you enter bank information.' | $T8 %]
120
     [% "The required information consists of the IBAN and the BIC." | $T8 %]
121
     [% LxERP.t8("Additionally the invoice is not marked for direct debit and would have been checked automatically had the bank information been entered.") %]
122
    [%- ELSE %]
123
     [%- 'No bank information has been entered in this customer\'s master data entry. You cannot create bank collections unless you enter bank information.' | $T8 %]
124
     [% "The required information consists of the IBAN, the BIC, the mandator ID and the mandate's date of signature." | $T8 %]
125
     [% LxERP.t8("Additionally the invoice is marked for direct debit and would have been checked automatically had the bank information been entered.") %]
126
    [%- END %]
127
   </p>
111 128
  [%- END %]
112 129

  
113 130
  <p>

Auch abrufbar als: Unified diff