Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision 267cb279

Von Moritz Bunkus vor mehr als 9 Jahren hinzugefügt

  • ID 267cb27975e76f64a86cd2d45804c792bcc045bd
  • Vorgänger ba85807b
  • Nachfolger 1206c3f6

Kreditorenbuchungen: In Kopf anzeigen, in welchen SEPA-Exporten der Beleg enthalten ist

Unterschiede anzeigen:

bin/mozilla/ap.pl
use SL::PE;
use SL::ReportGenerator;
use SL::DB::Default;
use SL::DB::PurchaseInvoice;
require "bin/mozilla/arap.pl";
require "bin/mozilla/common.pl";
......
$main::auth->assert('general_ledger');
$::form->{invoice_obj} = SL::DB::PurchaseInvoice->new(id => $::form->{id})->load if $::form->{id};
$form->{title_} = $form->{title};
$form->{title} = $form->{title} eq 'Add' ? $locale->text('Add Accounts Payables Transaction') : $locale->text('Edit Accounts Payables Transaction');
templates/webpages/ap/form_header.html
</td>
</tr>
[%- IF invoice_obj.sepa_exports.as_list.size %]
<tr>
<th align="right">[% LxERP.t8("SEPA exports") %]</th>
<td>
[% FOREACH export = invoice_obj.sepa_exports.as_list %]
<a href="sepa.pl?action=bank_transfer_edit&vc=vendor&id=[% HTML.url(export.id) %]">[% HTML.escape(export.id) %]</a>
[% UNLESS loop.last %], [% END %]
[% END %]
</td>
</tr>
[%- END %]
<tr>
<th align="right" nowrap>[% 'Currency' | $T8 %]</th>
<td><select name="currency">[% selectcurrency %]</select></td>

Auch abrufbar als: Unified diff