Version Notes
Improvements:
- Problem detection mechanism
Bugfix:
- Minor bug fixing
Download this release
Release Info
Developer | IceShop |
Extension | IcecatLive |
Version | 1.7.5 |
Comparing to | |
See all releases |
Code changes from version 1.7.4 to 1.7.5
- app/code/local/Iceshop/Icecatlive/Block/Adminhtml/Product/List/Grid.php +2 -1
- app/code/local/Iceshop/Icecatlive/etc/config.xml +1 -12
- app/code/local/Iceshop/Icecatlive/sql/icecatlive_setup/{mysql4-install-1.7.4.php → mysql4-install-1.7.5.php} +0 -0
- app/code/local/Iceshop/Icecatlive/sql/icecatlive_setup/mysql4-upgrade-1.7.4-1.7.5.php +46 -0
- package.xml +4 -5
app/code/local/Iceshop/Icecatlive/Block/Adminhtml/Product/List/Grid.php
CHANGED
@@ -87,6 +87,7 @@ class Iceshop_Icecatlive_Block_Adminhtml_Product_List_Grid extends Mage_Adminhtm
|
|
87 |
if($this->checkExistingAttribute('catalog_product', 'price')){
|
88 |
$collection->addAttributeToSelect('price');
|
89 |
}
|
|
|
90 |
if($this->checkExistingAttribute('catalog_product', 'ean')){
|
91 |
$collection->joinAttribute('ean', 'catalog_product/ean', 'entity_id', null, 'inner');
|
92 |
}
|
@@ -160,7 +161,7 @@ class Iceshop_Icecatlive_Block_Adminhtml_Product_List_Grid extends Mage_Adminhtm
|
|
160 |
'index' => 'mpn',
|
161 |
));
|
162 |
}
|
163 |
-
|
164 |
if($this->checkExistingAttribute('catalog_product', 'ean')){
|
165 |
$this->addColumn('ean',
|
166 |
array(
|
87 |
if($this->checkExistingAttribute('catalog_product', 'price')){
|
88 |
$collection->addAttributeToSelect('price');
|
89 |
}
|
90 |
+
|
91 |
if($this->checkExistingAttribute('catalog_product', 'ean')){
|
92 |
$collection->joinAttribute('ean', 'catalog_product/ean', 'entity_id', null, 'inner');
|
93 |
}
|
161 |
'index' => 'mpn',
|
162 |
));
|
163 |
}
|
164 |
+
|
165 |
if($this->checkExistingAttribute('catalog_product', 'ean')){
|
166 |
$this->addColumn('ean',
|
167 |
array(
|
app/code/local/Iceshop/Icecatlive/etc/config.xml
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Iceshop_Icecatlive>
|
5 |
-
<version>1.7.
|
6 |
</Iceshop_Icecatlive>
|
7 |
</modules>
|
8 |
<default>
|
@@ -138,17 +138,6 @@
|
|
138 |
</translate>
|
139 |
</frontend>
|
140 |
<adminhtml>
|
141 |
-
<events>
|
142 |
-
<adminhtml_cache_refresh_type>
|
143 |
-
<observers>
|
144 |
-
<iceshop_icecatlive_model_observer>
|
145 |
-
<type>singleton</type>
|
146 |
-
<class>Iceshop_Icecatlive_Model_Observer</class>
|
147 |
-
<method>adminhtml_cache_refresh_type</method>
|
148 |
-
</iceshop_icecatlive_model_observer>
|
149 |
-
</observers>
|
150 |
-
</adminhtml_cache_refresh_type>
|
151 |
-
</events>
|
152 |
<layout>
|
153 |
<updates>
|
154 |
<icecatlive>
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Iceshop_Icecatlive>
|
5 |
+
<version>1.7.5</version>
|
6 |
</Iceshop_Icecatlive>
|
7 |
</modules>
|
8 |
<default>
|
138 |
</translate>
|
139 |
</frontend>
|
140 |
<adminhtml>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
141 |
<layout>
|
142 |
<updates>
|
143 |
<icecatlive>
|
app/code/local/Iceshop/Icecatlive/sql/icecatlive_setup/{mysql4-install-1.7.4.php → mysql4-install-1.7.5.php}
RENAMED
File without changes
|
app/code/local/Iceshop/Icecatlive/sql/icecatlive_setup/mysql4-upgrade-1.7.4-1.7.5.php
ADDED
@@ -0,0 +1,46 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
$tablePrefix = (array)Mage::getConfig()->getTablePrefix();
|
3 |
+
if (!empty($tablePrefix[0])) {
|
4 |
+
$tablePrefix = $tablePrefix[0];
|
5 |
+
} else {
|
6 |
+
$tablePrefix = '';
|
7 |
+
}
|
8 |
+
include_once 'uninstall-old-version.php';
|
9 |
+
$unistaller_old_version = new Uninstall_Bintime_Icecatlive();
|
10 |
+
$unistaller_old_version->uninstall();
|
11 |
+
$installer = $this;
|
12 |
+
/* @var $installer Mage_Catalog_Model_Resource_Eav_Mysql4_Setup */
|
13 |
+
|
14 |
+
$installer->startSetup();
|
15 |
+
$installer->run("
|
16 |
+
DROP TABLE IF EXISTS {$this->getTable('bintime_connector_data')};
|
17 |
+
DROP TABLE IF EXISTS {$this->getTable('bintime_connector_data_old')};
|
18 |
+
DROP TABLE IF EXISTS {$this->getTable('bintime_connector_data_products')};
|
19 |
+
DROP TABLE IF EXISTS {$this->getTable('bintime_supplier_mapping')};
|
20 |
+
DROP TABLE IF EXISTS {$this->getTable('bintime_supplier_mapping_old')};
|
21 |
+
DROP TABLE IF EXISTS {$this->getTable('iceshop_icecatlive_connector_data')};
|
22 |
+
DROP TABLE IF EXISTS {$this->getTable('iceshop_icecatlive_supplier_mapping')};
|
23 |
+
DROP TABLE IF EXISTS {$this->getTable('iceshop_icecatlive_connector_data_products')} ;
|
24 |
+
|
25 |
+
CREATE TABLE IF NOT EXISTS {$this->getTable('iceshop_icecatlive_noimport_products_id')} (
|
26 |
+
`prod_id` INT(255) UNSIGNED NOT NULL,
|
27 |
+
UNIQUE KEY (`prod_id`)
|
28 |
+
) ENGINE=INNODB DEFAULT CHARSET=utf8 COMMENT='Iceshop Connector not import products from icecat';
|
29 |
+
|
30 |
+
CREATE TABLE IF NOT EXISTS {$this->getTable('icecatlive/products_titles')} (
|
31 |
+
`prod_id` INT(255) UNSIGNED NOT NULL,
|
32 |
+
`prod_title` VARCHAR(255) NULL DEFAULT NULL,
|
33 |
+
UNIQUE KEY (`prod_id`),
|
34 |
+
FOREIGN KEY (prod_id)
|
35 |
+
REFERENCES {$tablePrefix}catalog_product_entity(entity_id)
|
36 |
+
ON DELETE CASCADE
|
37 |
+
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Iceshop Connector product titles';
|
38 |
+
|
39 |
+
CREATE TABLE IF NOT EXISTS {$this->getTable('iceshop_icecatlive_extensions_logs')} (
|
40 |
+
`log_key` VARCHAR(255) NOT NULL,
|
41 |
+
`log_value` varchar(255) DEFAULT NULL,
|
42 |
+
UNIQUE KEY (`log_key`)
|
43 |
+
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Iceshop Connector logs';
|
44 |
+
");
|
45 |
+
|
46 |
+
$installer->endSetup();
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>IcecatLive</name>
|
4 |
-
<version>1.7.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">OSL v.3</license>
|
7 |
<channel>community</channel>
|
@@ -10,13 +10,12 @@
|
|
10 |
<description>Edit Extension Package Extensions Magento Connect System Magento Admin</description>
|
11 |
<notes>Improvements:
|
12 |
- Problem detection mechanism
|
13 |
-

|
14 |
Bugfix:
|
15 |
- Minor bug fixing</notes>
|
16 |
<authors><author><name>IceShop</name><user>IceShop</user><email>support@iceshop.nl</email></author></authors>
|
17 |
-
<date>2015-04-
|
18 |
-
<time>
|
19 |
-
<contents><target name="magedesign"><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><dir name="iceshop"><dir name="icecatlive"><file name="groupattributes.xml" hash="29fb1f5d19c04221f668485dccace23d"/></dir></dir></dir><dir name="template"><dir name="iceshop"><dir name="icecatlive"><file name="groupattributes.phtml" hash="4700d3c6330273cf48625666b3e899e4"/></dir></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="iceshop"><dir name="icecatlive"><file name="ajaxstatusimport.phtml" hash="b96fe113be5ada4712f86e941ac82930"/><file name="notifications.phtml" hash="90fe6df8ae9655f6f3c6c77685540c08"/></dir></dir></dir><dir name="layout"><file name="icecatlive.xml" hash="d1654d4bcbc4f11b58b728d5c269c704"/></dir></dir></dir></dir></target><target name="magelocal"><dir name="Iceshop"><dir name="Icecatlive"><dir name="Block"><dir name="Adminhtml"><file name="Notifications.php" hash="3a0dfe93ead9f74b1f648d16f75c58f8"/><dir name="Product"><dir name="List"><file name="Grid.php" hash="
|
20 |
<compatible/>
|
21 |
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
|
22 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>IcecatLive</name>
|
4 |
+
<version>1.7.5</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">OSL v.3</license>
|
7 |
<channel>community</channel>
|
10 |
<description>Edit Extension Package Extensions Magento Connect System Magento Admin</description>
|
11 |
<notes>Improvements:
|
12 |
- Problem detection mechanism
|
|
|
13 |
Bugfix:
|
14 |
- Minor bug fixing</notes>
|
15 |
<authors><author><name>IceShop</name><user>IceShop</user><email>support@iceshop.nl</email></author></authors>
|
16 |
+
<date>2015-04-23</date>
|
17 |
+
<time>13:00:35</time>
|
18 |
+
<contents><target name="magedesign"><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><dir name="iceshop"><dir name="icecatlive"><file name="groupattributes.xml" hash="29fb1f5d19c04221f668485dccace23d"/></dir></dir></dir><dir name="template"><dir name="iceshop"><dir name="icecatlive"><file name="groupattributes.phtml" hash="4700d3c6330273cf48625666b3e899e4"/></dir></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="iceshop"><dir name="icecatlive"><file name="ajaxstatusimport.phtml" hash="b96fe113be5ada4712f86e941ac82930"/><file name="notifications.phtml" hash="90fe6df8ae9655f6f3c6c77685540c08"/></dir></dir></dir><dir name="layout"><file name="icecatlive.xml" hash="d1654d4bcbc4f11b58b728d5c269c704"/></dir></dir></dir></dir></target><target name="magelocal"><dir name="Iceshop"><dir name="Icecatlive"><dir name="Block"><dir name="Adminhtml"><file name="Notifications.php" hash="3a0dfe93ead9f74b1f648d16f75c58f8"/><dir name="Product"><dir name="List"><file name="Grid.php" hash="2cd9c25fcbc4549cc9c3ba54932e4402"/></dir></dir><dir name="System"><dir name="Config"><dir name="Form"><file name="Button.php" hash="b9112e6539624cc88c215aecf88cef00"/><file name="UpdateButton.php" hash="78bb6e863c1c2f53720c50a0c2ec65e7"/></dir></dir></dir></dir><file name="Attributes.php" hash="394eb7d9f03b79b63fa2dd44842f262a"/><dir name="Product"><dir name="List"><file name="Toolbar.php" hash="03f6259ebb44b41df7d03581bbd9c84a"/></dir></dir><file name="Related.php" hash="1bbac689a628d86ba9704a7b752df286"/><file name="Upsell.php" hash="0dfaba7ae6bc688215a56065101b4544"/></dir><dir name="CatalogSearch"><dir name="Block"><file name="Result.php" hash="199bd394ca894bf82964805270318f09"/></dir></dir><dir name="Helper"><file name="Data.php" hash="b06f19391dba03ecaef4742a42f71902"/><file name="Db.php" hash="aab35d6232538b4e5cb1300ed83701a8"/><file name="Format.php" hash="ac13e6bb5cdc5919bfad215e1fca4a7b"/><file name="Getdata.php" hash="85dd7bf14c9b232ccf078a99241add1c"/><file name="Output.php" hash="5698b83f62043e95c5f33d603ccbc03a"/><dir name="System"><file name="System.php" hash="ea277a89745de7b28993509f8dee2bab"/><file name="Systemcheck.php" hash="53a0ad5be9259a5772c1b72ba1609b88"/></dir></dir><dir name="Model"><dir name="Catalog"><file name="Category.php" hash="e4ab9f04ded0059e3f9b7e568586d903"/><file name="Product.php" hash="03794cce61bf0e924ae33593a850d7ea"/><file name="Search.php" hash="8d5c8b59c35a8449c8e4a8e30285d38b"/></dir><file name="Import.php" hash="d6eb2ba7bfb07c6000b84fb0b850b5f7"/><file name="Observer.php" hash="60015203c2386d67de229c065a21e9e5"/><file name="Relatedcollection.php" hash="82a0585c3404d94dcb4e3a1606bae546"/><dir name="System"><dir name="Config"><file name="Attributes.php" hash="85b2cacd4ef51fa5bb166c4394fdf6f8"/><file name="Checksystem.php" hash="782d1861c87717a347e9aeafb533cabb"/><file name="Descriptionpriority.php" hash="4facaa955e0799b94bf8c7e5e60f64d5"/><file name="Iceshoplink.php" hash="0342f048a75aa382fae42082618218f4"/><file name="Imagepriority.php" hash="ef7a85c5b4ed0562b75096e569720173"/><file name="Importdata.php" hash="25196649542ccc4df2da39f6cc1ec043"/><file name="LanguageList.xml" hash="52aaea2acd5acd2c0d4f63de4f4621bc"/><file name="Loadingtype.php" hash="35ef5c60a7fb1c81852c6e04d066f79f"/><file name="Locales.php" hash="604a6087f75a4dddbf271ac2145356a8"/><file name="Namepriority.php" hash="05e06b1e0fe303d5efc4d4f24dd1df01"/><file name="Onlynewproducts.php" hash="6e758f07cd5d5f16237b45df3492b9e7"/><file name="Productpriority.php" hash="62b5912d7af4a8c7ff5f92c887c70128"/><file name="Shortdescrpriority.php" hash="946c34829295aa50b79f1e8fa7d48eaa"/><file name="Subscription.php" hash="6c4e8895b28fdcaab6001ac2a8fa995b"/><file name="Viewattributes.php" hash="8f0ac7b0091adb1a15564f2a7b9c6b04"/></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="ImportdataController.php" hash="c4874ee811ce4d3d446835ddc6cb2f94"/><file name="ImportproductController.php" hash="5693e28bf5ef3804ed82a9c81f820538"/><file name="ImportproductinfoController.php" hash="5f6fc5b5517b22d796e1b5a81cb199c4"/><file name="ImportprogressController.php" hash="a9212979beb0aa57447d7d70f3297a28"/></dir><file name="IcecatliveController.php" hash="05c771cbd2f3bd3f9149de56508cedd1"/><file name="ImageController.php" hash="35e08758e0dfdae450e9aaa342a6b777"/></dir><dir name="etc"><file name="adminhtml.xml" hash="bbfbb08ba646a3f4f3fb38873858930b"/><file name="config.xml" hash="eeeb66097a7c33102392e84452c4d162"/><file name="system.xml" hash="106e4eca7100934fef289c95e2a6e7dc"/></dir><dir name="sql"><dir name="icecatlive_setup"><file name="mysql4-install-1.7.5.php" hash="ea96aabef28765bc61b9dc429a10fcb1"/><file name="mysql4-upgrade-0.1.0-1.6.0.php" hash="3eabfeabdd60bbea11ef1c53251de5a8"/><file name="mysql4-upgrade-0.1.1-1.6.0.php" hash="3eabfeabdd60bbea11ef1c53251de5a8"/><file name="mysql4-upgrade-1.5.0-1.6.0.php" hash="3eabfeabdd60bbea11ef1c53251de5a8"/><file name="mysql4-upgrade-1.6.0-1.7.0.php" hash="d4a9c36d50f080209df067f09b6294fb"/><file name="mysql4-upgrade-1.7.0-1.7.2" hash="d4a9c36d50f080209df067f09b6294fb"/><file name="mysql4-upgrade-1.7.4-1.7.5.php" hash="ea96aabef28765bc61b9dc429a10fcb1"/><file name="uninstall-old-version.php" hash="ad30e3ae29ba1d7fdfe61dc05476a1d3"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Iceshop_Icecatlive.xml" hash="b097c8e9a31651d1ab43ff1db9f30d56"/></dir></target><target name="mage"><dir name="skin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="iceshop"><dir name="icecatlive"><dir name="images"><file name="iceshop_logo_small_16px.png" hash="4ef632b4b89a047789307b301b9dfb6e"/></dir><file name="styles.css" hash="9bfab144d8ddfd445fe3bbaecac9cc53"/></dir></dir></dir></dir></dir></dir><dir name="js"><dir name="ICEshop"><dir name="Icecatlive"><file name="jquery-1.9.1.min.js" hash="fee4c9e0129fb2b8830a3c17638c44b0"/><file name="multi-lingual-store-field.js" hash="b99ce2b343cc5dbca86bb9165bcc444d"/><file name="script.js" hash="a66a957b7956f895a5065d8c9c5a12f8"/></dir></dir></dir></target></contents>
|
19 |
<compatible/>
|
20 |
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
|
21 |
</package>
|