mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
Merge pull request #7844 from filo87/v5-develop
fix: SwissQr postal code appears twice
This commit is contained in:
commit
ccb0b265fe
@ -90,7 +90,7 @@ class SwissQrGenerator
|
||||
$this->client->address1 ? substr($this->client->address1, 0 , 70) : '',
|
||||
$this->client->address2 ? substr($this->client->address2, 0 , 16) : '',
|
||||
$this->client->postal_code ? substr($this->client->postal_code, 0, 16) : '',
|
||||
$this->client->city ? substr($this->client->postal_code, 0, 35) : '',
|
||||
$this->client->city ? substr($this->client->city, 0, 35) : '',
|
||||
'CH'
|
||||
));
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user