Revision d4c8d791
Von Cem Aydin vor etwa 1 Jahr hinzugefügt
SL/Template/OpenDocument.pm | ||
---|---|---|
521 | 521 |
if (!$form->{qrbill_customer_countrycode}) { |
522 | 522 |
$::form->error($::locale->text('Error mapping customer countrycode.')); |
523 | 523 |
} |
524 |
|
|
524 | 525 |
my %invoice_recipient_data = ( |
525 | 526 |
'address_type' => 'K', |
526 |
'name' => $form->{'name'}, |
|
527 |
'address_row1' => $form->{'street'}, |
|
528 |
'address_row2' => $form->{'zipcode'} . ' ' . $form->{'city'}, |
|
527 |
'name' => $form->{billing_address_id} ? |
|
528 |
$form->{'billing_address_name'} : |
|
529 |
$form->{'name'}, |
|
530 |
'address_row1' => $form->{billing_address_id} ? |
|
531 |
$form->{'billing_address_street'} : |
|
532 |
$form->{'street'}, |
|
533 |
'address_row2' => $form->{billing_address_id} ? |
|
534 |
$form->{'billing_address_zipcode'} . ' ' . $form->{'billing_address_city'} : |
|
535 |
$form->{'zipcode'} . ' ' . $form->{'city'}, |
|
529 | 536 |
'countrycode' => $form->{qrbill_customer_countrycode}, |
530 | 537 |
); |
531 | 538 |
|
Auch abrufbar als: Unified diff
Schweizer QR-Rechnung: Zusätzliche Rechnungsadressen in QR-Code Ausgabe eingebaut