Skip to content

Commit

Permalink
Schweizer Banküberweisung via XML: Fix Lieferantenadresse Hausnummer …
Browse files Browse the repository at this point in the history
…aus korrekter Variable holen
  • Loading branch information
rebootl committed May 7, 2024
1 parent 7ef224c commit f1ad337
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/mozilla/sepa.pl
Original file line number Diff line number Diff line change
Expand Up @@ -772,7 +772,7 @@ sub bank_transfer_download_sepa_xml {
$transaction_data->{has_creditor_address} = 1;

$transaction_data->{creditor_street_name} = get_street_name_from_address_line($item->{vc_street});
$transaction_data->{creditor_building_number} = get_building_number_from_address_line($item->{vc_building_number});
$transaction_data->{creditor_building_number} = get_building_number_from_address_line($item->{vc_street});

$transaction_data->{creditor_postal_code} = $item->{vc_zipcode};
$transaction_data->{creditor_town_name} = $item->{vc_city};
Expand Down

0 comments on commit f1ad337

Please sign in to comment.