Skip to content

Commit

Permalink
Merge pull request PrestaShop#2947 from julienbourdeau/fix-add-detail…
Browse files Browse the repository at this point in the history
…s-invoice

[*] PDF: Invoice - Add Country in shop address
  • Loading branch information
Jérôme Nadaud committed Apr 29, 2015
2 parents 844a862 + f3889ed commit bf9b7dd
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions classes/order/OrderInvoice.php
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,7 @@ public function add($autodate = true, $null_values = false)
$address->postcode = Configuration::get('PS_SHOP_CODE');
$address->city = Configuration::get('PS_SHOP_CITY');
$address->phone = Configuration::get('PS_SHOP_PHONE');
$address->id_country = Configuration::get('PS_SHOP_COUNTRY_ID');

$this->shop_address = AddressFormat::generateAddress($address, array(), '<br />', ' ');

Expand Down

0 comments on commit bf9b7dd

Please sign in to comment.