Skip to content

Commit

Permalink
6.4.7.1 RELEASE FINAL
Browse files Browse the repository at this point in the history
  • Loading branch information
d-belousov committed Dec 5, 2016
1 parent b4e7fdf commit 57a9bbe
Show file tree
Hide file tree
Showing 7 changed files with 35 additions and 5 deletions.
5 changes: 5 additions & 0 deletions app/code/community/Ess/M2ePro/CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
* 6.4.7.1 (r11020) (05/12/2016)

* Fix: [Amazon] Ability to use Repricing Service without the need to contact support of M2E Pro
* Fix: [Amazon] "Warning: Illegal string offset 'product_price' in /app/code/community/Ess/M2ePro/Model/Amazon/Repricing/Synchronization/ActualPrice.php

* 6.4.7 (r10970) (28/11/2016)

* Added: [Amazon] Ability to use Repricing Service without the need to contact support of M2E Pro
Expand Down
2 changes: 1 addition & 1 deletion app/code/community/Ess/M2ePro/Helper/Module.php
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public function getVersion()

public function getRevision()
{
$revision = '10970';
$revision = '11020';

if ($revision == str_replace('|','#','|REVISION|')) {
$revision = (int)exec('svnversion');
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ private function updateListingsOthersPrices(array $offersProductPrices)
$connWrite->update(
$resource->getTableName('m2epro_amazon_listing_other'),
array(
'online_price' => $offerProductPrice['product_price'],
'online_price' => $offerProductPrice,
),
array('listing_other_id = ?' => $listingOtherId)
);
Expand Down
2 changes: 1 addition & 1 deletion app/code/community/Ess/M2ePro/etc/config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<config>
<modules>
<Ess_M2ePro>
<version>6.4.7</version>
<version>6.4.7.1</version>
</Ess_M2ePro>
</modules>
<default>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2895,7 +2895,7 @@
('/component/amazon/', 'allowed', '1', '0 - disable, \r\n1 - enable', '2013-05-08 00:00:00', '2013-05-08 00:00:00'),
('/amazon/order/settings/marketplace_25/', 'use_first_street_line_as_company', '1', '0 - disable, \r\n1 - enable',
'2013-05-08 00:00:00', '2013-05-08 00:00:00'),
('/amazon/repricing/', 'mode', '0', '0 - disable, \r\n1 - enable', '2013-05-08 00:00:00', '2013-05-08 00:00:00'),
('/amazon/repricing/', 'mode', '1', '0 - disable, \r\n1 - enable', '2013-05-08 00:00:00', '2013-05-08 00:00:00'),
('/amazon/repricing/', 'base_url', 'https://repricer.m2epro.com/connector/m2epro/', 'Repricing Tool base url',
'2013-05-08 00:00:00', '2013-05-08 00:00:00');
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<?php

//########################################

/** @var $installer Ess_M2ePro_Model_Upgrade_MySqlSetup */
$installer = $this;
$installer->startSetup();

$connection = $installer->getConnection();

//########################################

/*
UPDATE `m2epro_config`
SET `value` = 1
WHERE `group` = '/amazon/repricing/' AND `key` = 'mode'
*/

$installer->getMainConfigModifier()->getEntity('/amazon/repricing/', 'mode')->updateValue(1);

//########################################

$installer->endSetup();

//########################################
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": "m2epro/magento1-extension",
"description": "M2E Pro is a Magento trusted (TM), award-winning extension, which allows merchants of all sizes to fully integrate Magento based system(s) into eBay/Amazon/Rakuten.com platforms.",
"type": "magento-module",
"version": "6.4.7",
"version": "6.4.7.1",
"keywords": ["ebay", "amazon", "rakuten", "magento"],
"homepage": "http://www.m2epro.com/",
"require": {
Expand Down

0 comments on commit 57a9bbe

Please sign in to comment.