Revision a9d122f7
Von Cem Aydin vor fast 3 Jahren hinzugefügt
SL/Template/OpenDocument.pm | ||
---|---|---|
678 | 678 |
$form->{'invnumber'}, |
679 | 679 |
); |
680 | 680 |
|
681 |
my %ref_nr_data = ( |
|
682 |
'type' => 'QRR', |
|
683 |
'ref_number' => $ref_number, |
|
684 |
); |
|
681 |
my %ref_nr_data; |
|
682 |
if ($::instance_conf->get_create_qrbill_invoices == 1) { |
|
683 |
%ref_nr_data = ( |
|
684 |
'type' => 'QRR', |
|
685 |
'ref_number' => $ref_number, |
|
686 |
); |
|
687 |
} elsif ($::instance_conf->get_create_qrbill_invoices == 2) { |
|
688 |
%ref_nr_data = ( |
|
689 |
'type' => 'NON', |
|
690 |
'ref_number' => '', |
|
691 |
); |
|
692 |
} else { |
|
693 |
$::form->error($::locale->text('Error getting QR-Bill type.')); |
|
694 |
} |
|
685 | 695 |
|
686 | 696 |
# set into form for template processing |
687 | 697 |
$form->{'biller_information'} = \%biller_information; |
Auch abrufbar als: Unified diff
Swiss QR-Bill: Variante IBAN ohne Referenz in Druckablauf und Mandantenkonfiguration hinzugefügt