Skip to content

Commit

Permalink
Merge pull request #23 from magmodules/release/1.4.1
Browse files Browse the repository at this point in the history
Release/1.4.1
  • Loading branch information
Marvin-Magmodules authored Jan 13, 2021
2 parents d3f8508 + ca9d827 commit 88fa4a0
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ php:
- 5.6
- 7.0
- 7.1
- 7.2

sudo: false

Expand Down
2 changes: 2 additions & 0 deletions app/code/community/Magmodules/Channableapi/Model/Order.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ public function importOrder($order, $storeId)

/** @var Mage_Sales_Model_Quote $quote */
$quote = Mage::getModel('sales/quote')->setStoreId($config['store_id']);
$quote->setBaseCurrencyCode($config['currency_code']);

if ($config['import_customers']) {
$customer = $this->importCustomer($order, $config);
Expand Down Expand Up @@ -231,6 +232,7 @@ public function getConfig($storeId)
$config['channel_orderid'] = Mage::getStoreConfig('channable_api/order/channel_orderid', $storeId);
$config['lvb_stock'] = Mage::getStoreConfig('channable_api/advanced/lvb_stock', $storeId);
$config['lvb_ship'] = Mage::getStoreConfig('channable_api/advanced/lvb_stock', $storeId);
$config['currency_code'] = Mage::getStoreConfig('currency/options/default', $storeId);
return $config;
}

Expand Down
2 changes: 1 addition & 1 deletion app/code/community/Magmodules/Channableapi/etc/config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<config>
<modules>
<Magmodules_Channableapi>
<version>1.4.0</version>
<version>1.4.1</version>
</Magmodules_Channableapi>
</modules>
<global>
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "magmodules/magento1-channable-api",
"type": "magento-module",
"description": "Magento 1 Channable integration",
"version": "v1.4.0",
"version": "v1.4.1",
"keywords": [
"magento"
],
Expand Down

0 comments on commit 88fa4a0

Please sign in to comment.