Skip to content

Commit

Permalink
Merge pull request #202 from Crossmotion/patch-1
Browse files Browse the repository at this point in the history
fix missing invoice city bug
  • Loading branch information
woutse authored Jul 29, 2024
2 parents 268c1b2 + 8592121 commit 63cfd38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Model/PayPaymentCreate.php
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@ private function getInvoiceAddress()
$invoiceAddress['streetName'] = mb_substr($arrAddress[0] ?? '', 0, 128);
$invoiceAddress['houseNumber'] = mb_substr($arrAddress[1] ?? '', 0, 10);
$invoiceAddress['zipCode'] = mb_substr($arrBillingAddress['postcode'] ?? '', 0, 24);
$shippingAddress['city'] = mb_substr($arrBillingAddress['city'] ?? '', 0, 40);
$invoiceAddress['city'] = mb_substr($arrBillingAddress['city'] ?? '', 0, 40);
$invoiceAddress['country'] = $arrBillingAddress['country_id'];
}

Expand Down

0 comments on commit 63cfd38

Please sign in to comment.