Version Notes
Added import/reprice by ID functionality
Download this release
Release Info
Developer | Magento Core Team |
Extension | Wisepricer_Syncer |
Version | 1.1.3.7 |
Comparing to | |
See all releases |
Code changes from version 1.1.3.6 to 1.1.3.7
- app/code/local/Wisepricer/Syncer/Block/Adminhtml/Mapping.php +33 -2
- app/code/local/Wisepricer/Syncer/Model/Reprice.php +33 -9
- app/code/local/Wisepricer/Syncer/controllers/ProductsController.php +41 -12
- app/code/local/Wisepricer/Syncer/etc/config.xml +1 -1
- app/code/local/Wisepricer/Syncer/sql/syncer_setup/{mysql4-install-1.1.3.6.php → mysql4-install-1.1.3.7.php} +0 -0
- app/design/adminhtml/default/default/template/wisepricer/mapping.phtml +1 -1
- package.xml +5 -6
app/code/local/Wisepricer/Syncer/Block/Adminhtml/Mapping.php
CHANGED
@@ -42,8 +42,39 @@ class Wisepricer_Syncer_Block_Adminhtml_Mapping extends Mage_Adminhtml_Block_Wid
|
|
42 |
$selectHtml.='</select>';
|
43 |
|
44 |
return $selectHtml;
|
45 |
-
}
|
46 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
47 |
public function getShippingFixedRate(){
|
48 |
|
49 |
$shipping=$this->_getMagentoFieldByWsField('shipping');
|
42 |
$selectHtml.='</select>';
|
43 |
|
44 |
return $selectHtml;
|
45 |
+
}
|
46 |
+
|
47 |
+
public function renderSkuIdSelect($name,$id,$value=0,$class=''){
|
48 |
+
|
49 |
+
$options=array();
|
50 |
+
$options[]=array('value'=>'entity_id','label'=>'Product ID');
|
51 |
+
$options[]=array('value'=>'sku','label'=>'SKU');
|
52 |
+
|
53 |
+
$mappingModel=Mage::getModel('wisepricer_syncer/mapping');
|
54 |
+
$selectHtml='<select style="width:209px" class="select '.$class.'" name="'.$name.'" id="'.$id.'">';
|
55 |
+
|
56 |
+
$row=$mappingModel->load($id,'wsp_field');
|
57 |
+
if($row->getData()){
|
58 |
+
$value=$row->getmagento_field();
|
59 |
+
}
|
60 |
+
foreach($options as $option){
|
61 |
+
|
62 |
+
if($option['value']==$value){
|
63 |
+
$selected='selected';
|
64 |
+
}else{
|
65 |
+
$selected='';
|
66 |
+
}
|
67 |
+
|
68 |
+
|
69 |
+
$selectHtml.='<option value="'.$option['value'].'" '.$selected.'>';
|
70 |
+
$selectHtml.=$option['label'];
|
71 |
+
$selectHtml.='</option>';
|
72 |
+
}
|
73 |
+
$selectHtml.='</select>';
|
74 |
+
|
75 |
+
return $selectHtml;
|
76 |
+
}
|
77 |
+
|
78 |
public function getShippingFixedRate(){
|
79 |
|
80 |
$shipping=$this->_getMagentoFieldByWsField('shipping');
|
app/code/local/Wisepricer/Syncer/Model/Reprice.php
CHANGED
@@ -5,11 +5,11 @@ class Wisepricer_Syncer_Model_Reprice extends Mage_Core_Model_Abstract{
|
|
5 |
private function _getConnection($type = 'core_read'){
|
6 |
return Mage::getSingleton('core/resource')->getConnection($type);
|
7 |
}
|
8 |
-
|
9 |
private function _getTableName($tableName){
|
10 |
return Mage::getSingleton('core/resource')->getTableName($tableName);
|
11 |
}
|
12 |
-
|
13 |
private function _getAttributeId($attribute_code = 'price'){
|
14 |
$connection = $this->_getConnection('core_read');
|
15 |
$sql = "SELECT attribute_id
|
@@ -20,20 +20,20 @@ class Wisepricer_Syncer_Model_Reprice extends Mage_Core_Model_Abstract{
|
|
20 |
$entity_type_id = $this->_getEntityTypeId();
|
21 |
return $connection->fetchOne($sql, array($entity_type_id, $attribute_code));
|
22 |
}
|
23 |
-
|
24 |
private function _getEntityTypeId($entity_type_code = 'catalog_product'){
|
25 |
$connection = $this->_getConnection('core_read');
|
26 |
$sql = "SELECT entity_type_id FROM " . $this->_getTableName('eav_entity_type') . " WHERE entity_type_code = ?";
|
27 |
return $connection->fetchOne($sql, array($entity_type_code));
|
28 |
}
|
29 |
-
|
30 |
private function _getIdFromSku($sku){
|
31 |
$connection = $this->_getConnection('core_read');
|
32 |
$sql = "SELECT entity_id FROM " . $this->_getTableName('catalog_product_entity') . " WHERE sku = ?";
|
33 |
return $connection->fetchOne($sql, array($sku));
|
34 |
-
|
35 |
}
|
36 |
-
|
37 |
public function checkIfSkuExists($sku){
|
38 |
$connection = $this->_getConnection('core_read');
|
39 |
$sql = "SELECT COUNT(*) AS count_no FROM " . $this->_getTableName('catalog_product_entity') . " WHERE sku = ?";
|
@@ -44,14 +44,38 @@ class Wisepricer_Syncer_Model_Reprice extends Mage_Core_Model_Abstract{
|
|
44 |
return false;
|
45 |
}
|
46 |
}
|
47 |
-
|
48 |
-
public function
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
49 |
$connection = $this->_getConnection('core_write');
|
50 |
$sku = $prodArr->sku;
|
51 |
$newPrice = $prodArr->price;
|
52 |
$productId = $this->_getIdFromSku($sku);
|
53 |
$attributeId = $this->_getAttributeId();
|
54 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
55 |
$sql = "UPDATE " . $this->_getTableName('catalog_product_entity_decimal') . " cped
|
56 |
SET cped.value = ?
|
57 |
WHERE cped.attribute_id = ?
|
5 |
private function _getConnection($type = 'core_read'){
|
6 |
return Mage::getSingleton('core/resource')->getConnection($type);
|
7 |
}
|
8 |
+
|
9 |
private function _getTableName($tableName){
|
10 |
return Mage::getSingleton('core/resource')->getTableName($tableName);
|
11 |
}
|
12 |
+
|
13 |
private function _getAttributeId($attribute_code = 'price'){
|
14 |
$connection = $this->_getConnection('core_read');
|
15 |
$sql = "SELECT attribute_id
|
20 |
$entity_type_id = $this->_getEntityTypeId();
|
21 |
return $connection->fetchOne($sql, array($entity_type_id, $attribute_code));
|
22 |
}
|
23 |
+
|
24 |
private function _getEntityTypeId($entity_type_code = 'catalog_product'){
|
25 |
$connection = $this->_getConnection('core_read');
|
26 |
$sql = "SELECT entity_type_id FROM " . $this->_getTableName('eav_entity_type') . " WHERE entity_type_code = ?";
|
27 |
return $connection->fetchOne($sql, array($entity_type_code));
|
28 |
}
|
29 |
+
|
30 |
private function _getIdFromSku($sku){
|
31 |
$connection = $this->_getConnection('core_read');
|
32 |
$sql = "SELECT entity_id FROM " . $this->_getTableName('catalog_product_entity') . " WHERE sku = ?";
|
33 |
return $connection->fetchOne($sql, array($sku));
|
34 |
+
|
35 |
}
|
36 |
+
|
37 |
public function checkIfSkuExists($sku){
|
38 |
$connection = $this->_getConnection('core_read');
|
39 |
$sql = "SELECT COUNT(*) AS count_no FROM " . $this->_getTableName('catalog_product_entity') . " WHERE sku = ?";
|
44 |
return false;
|
45 |
}
|
46 |
}
|
47 |
+
|
48 |
+
public function checkIfIdExists($sku){
|
49 |
+
$connection = $this->_getConnection('core_read');
|
50 |
+
$sql = "SELECT COUNT(*) AS count_no FROM " . $this->_getTableName('catalog_product_entity') . " WHERE entity_id = ?";
|
51 |
+
$count = $connection->fetchOne($sql, array($sku));
|
52 |
+
if($count > 0){
|
53 |
+
return true;
|
54 |
+
}else{
|
55 |
+
return false;
|
56 |
+
}
|
57 |
+
}
|
58 |
+
|
59 |
+
public function updatePricesBySku($prodArr){
|
60 |
$connection = $this->_getConnection('core_write');
|
61 |
$sku = $prodArr->sku;
|
62 |
$newPrice = $prodArr->price;
|
63 |
$productId = $this->_getIdFromSku($sku);
|
64 |
$attributeId = $this->_getAttributeId();
|
65 |
+
|
66 |
+
$sql = "UPDATE " . $this->_getTableName('catalog_product_entity_decimal') . " cped
|
67 |
+
SET cped.value = ?
|
68 |
+
WHERE cped.attribute_id = ?
|
69 |
+
AND cped.entity_id = ?";
|
70 |
+
$connection->query($sql, array($newPrice, $attributeId, $productId));
|
71 |
+
}
|
72 |
+
|
73 |
+
public function updatePricesById($prodArr){
|
74 |
+
$connection = $this->_getConnection('core_write');
|
75 |
+
$productId = $prodArr->sku;
|
76 |
+
$newPrice = $prodArr->price;
|
77 |
+
$attributeId = $this->_getAttributeId();
|
78 |
+
|
79 |
$sql = "UPDATE " . $this->_getTableName('catalog_product_entity_decimal') . " cped
|
80 |
SET cped.value = ?
|
81 |
WHERE cped.attribute_id = ?
|
app/code/local/Wisepricer/Syncer/controllers/ProductsController.php
CHANGED
@@ -378,7 +378,7 @@ class Wisepricer_Syncer_ProductsController extends Mage_Core_Controller_Front_Ac
|
|
378 |
'error_details'=>'Unauthorized access.'
|
379 |
);
|
380 |
echo json_encode($returnArr);
|
381 |
-
|
382 |
}
|
383 |
|
384 |
$productsEncoded= $post['products'];
|
@@ -388,28 +388,57 @@ class Wisepricer_Syncer_ProductsController extends Mage_Core_Controller_Front_Ac
|
|
388 |
$failedCounter=0;
|
389 |
Mage::log(print_r('repricing '.count($products),true),null,'wplog.log');
|
390 |
$repriceModel=Mage::getModel('wisepricer_syncer/reprice');
|
|
|
|
|
|
|
391 |
|
392 |
-
|
393 |
|
394 |
-
|
395 |
-
|
396 |
|
397 |
-
|
398 |
-
|
399 |
-
|
400 |
|
401 |
-
|
402 |
-
|
|
|
|
|
|
|
|
|
403 |
$failedCounter++;
|
|
|
404 |
}
|
405 |
-
}else{
|
406 |
-
$responseArr[]=array('sku'=>$prodArr->sku,'error_code'=>'333','error_details'=>'SKU could not be loaded');
|
407 |
-
$failedCounter++;
|
408 |
|
409 |
}
|
410 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
411 |
|
412 |
}
|
|
|
|
|
413 |
Mage::log(print_r('finished repricing',true),null,'wplog.log');
|
414 |
if($sucessCounter==0){
|
415 |
$error_code=-1;
|
378 |
'error_details'=>'Unauthorized access.'
|
379 |
);
|
380 |
echo json_encode($returnArr);
|
381 |
+
die;
|
382 |
}
|
383 |
|
384 |
$productsEncoded= $post['products'];
|
388 |
$failedCounter=0;
|
389 |
Mage::log(print_r('repricing '.count($products),true),null,'wplog.log');
|
390 |
$repriceModel=Mage::getModel('wisepricer_syncer/reprice');
|
391 |
+
$id_type= $this->_getMagentoFieldByWsField('sku');
|
392 |
+
|
393 |
+
if(strtolower($id_type)=='sku'){
|
394 |
|
395 |
+
foreach ($products as $prodArr) {
|
396 |
|
397 |
+
if ($repriceModel->checkIfSkuExists($prodArr->sku)) {
|
398 |
+
try {
|
399 |
|
400 |
+
$repriceModel->updatePricesBySku($prodArr);
|
401 |
+
$responseArr[]=array('sku'=>$prodArr->sku,'price'=>$prodArr->price,'error_code'=>'0');
|
402 |
+
$sucessCounter++;
|
403 |
|
404 |
+
} catch (Exception $exc) {
|
405 |
+
$responseArr[]=array('sku'=>$prodArr->sku,'error_code'=>'444','error_details'=>$exc->getMessage());
|
406 |
+
$failedCounter++;
|
407 |
+
}
|
408 |
+
}else{
|
409 |
+
$responseArr[]=array('sku'=>$prodArr->sku,'error_code'=>'333','error_details'=>'SKU could not be loaded');
|
410 |
$failedCounter++;
|
411 |
+
|
412 |
}
|
|
|
|
|
|
|
413 |
|
414 |
}
|
415 |
|
416 |
+
}elseif(strtolower($id_type)=='entity_id'){
|
417 |
+
|
418 |
+
foreach ($products as $prodArr) {
|
419 |
+
|
420 |
+
if ($repriceModel->checkIfIdExists($prodArr->sku)) {
|
421 |
+
try {
|
422 |
+
|
423 |
+
$repriceModel->updatePricesById($prodArr);
|
424 |
+
$responseArr[]=array('sku'=>$prodArr->sku,'price'=>$prodArr->price,'error_code'=>'0');
|
425 |
+
$sucessCounter++;
|
426 |
+
|
427 |
+
} catch (Exception $exc) {
|
428 |
+
$responseArr[]=array('sku'=>$prodArr->sku,'error_code'=>'444','error_details'=>$exc->getMessage());
|
429 |
+
$failedCounter++;
|
430 |
+
}
|
431 |
+
}else{
|
432 |
+
$responseArr[]=array('sku'=>$prodArr->sku,'error_code'=>'333','error_details'=>'ID could not be loaded');
|
433 |
+
$failedCounter++;
|
434 |
+
|
435 |
+
}
|
436 |
+
|
437 |
+
}
|
438 |
|
439 |
}
|
440 |
+
|
441 |
+
|
442 |
Mage::log(print_r('finished repricing',true),null,'wplog.log');
|
443 |
if($sucessCounter==0){
|
444 |
$error_code=-1;
|
app/code/local/Wisepricer/Syncer/etc/config.xml
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Wisepricer_Syncer>
|
5 |
-
<version>1.1.3.
|
6 |
<url>http://www.wisepricer.com/index.php</url>
|
7 |
<modulename>Wisepricer Syncer</modulename>
|
8 |
</Wisepricer_Syncer>
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Wisepricer_Syncer>
|
5 |
+
<version>1.1.3.7</version>
|
6 |
<url>http://www.wisepricer.com/index.php</url>
|
7 |
<modulename>Wisepricer Syncer</modulename>
|
8 |
</Wisepricer_Syncer>
|
app/code/local/Wisepricer/Syncer/sql/syncer_setup/{mysql4-install-1.1.3.6.php → mysql4-install-1.1.3.7.php}
RENAMED
File without changes
|
app/design/adminhtml/default/default/template/wisepricer/mapping.phtml
CHANGED
@@ -68,7 +68,7 @@
|
|
68 |
</tr>
|
69 |
<tr>
|
70 |
<td class="label firstcol"><span><?php echo $this->__('SKU')?><span class="required">*</span></span></td>
|
71 |
-
<td class="input-ele"><?php echo $this->
|
72 |
<td></td>
|
73 |
</tr>
|
74 |
<tr>
|
68 |
</tr>
|
69 |
<tr>
|
70 |
<td class="label firstcol"><span><?php echo $this->__('SKU')?><span class="required">*</span></span></td>
|
71 |
+
<td class="input-ele"><?php echo $this->renderSkuIdSelect('mapping_form[sku]','sku','sku','required-entry chzn-select')?></td>
|
72 |
<td></td>
|
73 |
</tr>
|
74 |
<tr>
|
package.xml
CHANGED
@@ -1,19 +1,18 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Wisepricer_Syncer</name>
|
4 |
-
<version>1.1.3.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://www.opensource.org/licenses/osl-3.0.php">OSL</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>WisePricer- Beat your competition</summary>
|
10 |
<description>WisePricer is a new tool that allows you to Track & monitor successful online retailers and update your store prices in real-time. With WisePricer you’ll never get left behind the competition.</description>
|
11 |
-
<notes>
|
12 |
-
added product id to mapping attributes</notes>
|
13 |
<authors><author><name>Moshe</name><user>auto-converted</user><email>moshe@wisepricer.com</email></author></authors>
|
14 |
-
<date>2012-
|
15 |
-
<time>
|
16 |
-
<contents><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="images"><dir name="wisepricer"><file name="bullet-green.png" hash="78d917a9d9aea11366bada6e0ae53931"/><file name="validation_advice_bg.gif" hash="ffdad80de989e3b04a977be3778c4347"/><file name="wp-alert-icon.png" hash="0dbbadfbbe2329098d03f8351aa2eaf2"/><file name="wp-logo.png" hash="48db98cdfc570336c942271352f31094"/><file name="wp-save-btn.png" hash="6d8e02c7f5e54dcc705e6436f126c66d"/></dir></dir><dir name="wisepricer"><file name="chosen-sprite.png" hash="8e70d120437ffc6a1bf7cebeca292d5c"/><file name="chosen.css" hash="bcd3f3e697219898e26631ccf29d97ba"/><file name="chosen.proto.js" hash="8259b22f4f337ba9ab63506b5ee4a52f"/><file name="myprototype.js" hash="2325b8b147c5dfaa8531c9d8bafd3648"/><file name="prototype17.js" hash="2325b8b147c5dfaa8531c9d8bafd3648"/><file name="wisepricer.css" hash="9b0e0d64f599cabd38d4b7f767054ac0"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="syncer.xml" hash="a9d0f0b5af6b7bc28fb3c3b897c1773c"/></dir><dir name="template"><dir name="wisepricer"><file name="mapping.phtml" hash="
|
17 |
<compatible/>
|
18 |
<dependencies/>
|
19 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Wisepricer_Syncer</name>
|
4 |
+
<version>1.1.3.7</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://www.opensource.org/licenses/osl-3.0.php">OSL</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>WisePricer- Beat your competition</summary>
|
10 |
<description>WisePricer is a new tool that allows you to Track & monitor successful online retailers and update your store prices in real-time. With WisePricer you’ll never get left behind the competition.</description>
|
11 |
+
<notes>Added import/reprice by ID functionality</notes>
|
|
|
12 |
<authors><author><name>Moshe</name><user>auto-converted</user><email>moshe@wisepricer.com</email></author></authors>
|
13 |
+
<date>2012-12-05</date>
|
14 |
+
<time>09:22:02</time>
|
15 |
+
<contents><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="images"><dir name="wisepricer"><file name="bullet-green.png" hash="78d917a9d9aea11366bada6e0ae53931"/><file name="validation_advice_bg.gif" hash="ffdad80de989e3b04a977be3778c4347"/><file name="wp-alert-icon.png" hash="0dbbadfbbe2329098d03f8351aa2eaf2"/><file name="wp-logo.png" hash="48db98cdfc570336c942271352f31094"/><file name="wp-save-btn.png" hash="6d8e02c7f5e54dcc705e6436f126c66d"/></dir></dir><dir name="wisepricer"><file name="chosen-sprite.png" hash="8e70d120437ffc6a1bf7cebeca292d5c"/><file name="chosen.css" hash="bcd3f3e697219898e26631ccf29d97ba"/><file name="chosen.proto.js" hash="8259b22f4f337ba9ab63506b5ee4a52f"/><file name="myprototype.js" hash="2325b8b147c5dfaa8531c9d8bafd3648"/><file name="prototype17.js" hash="2325b8b147c5dfaa8531c9d8bafd3648"/><file name="wisepricer.css" hash="9b0e0d64f599cabd38d4b7f767054ac0"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="syncer.xml" hash="a9d0f0b5af6b7bc28fb3c3b897c1773c"/></dir><dir name="template"><dir name="wisepricer"><file name="mapping.phtml" hash="7c5730e4f39a58150aaaa6fc09067501"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Wisepricer_Syncer.xml" hash="838dc229469d27db4c96a49591b12f55"/></dir></target><target name="magelocal"><dir name="Wisepricer"><dir name="Syncer"><dir name="Block"><dir name="Adminhtml"><file name="Mapping.php" hash="2486297835319b16932b76cc7d80fdad"/><file name="Register.php" hash="ed2ffde3237ecba2dbdd6002b5077af3"/></dir></dir><dir name="controllers"><file name="ProductsController.php" hash="5d32d93fd57060569c6788290c17796e"/><dir name="Adminhtml"><file name="SyncerController.php" hash="6a229900d705b0ee4335e37233c798e3"/></dir></dir><dir name="etc"><file name="config.xml" hash="9153a4792ff7069245d313a4fd0b03a6"/></dir><dir name="Helper"><file name="Data.php" hash="025b73c04ab0ca01d2e7c75aaad7fea6"/></dir><dir name="lib"><dir name="phpseclib"><dir name="Crypt"><file name="AES.php" hash="dd67dd1dbc7706e6c740e8430054d5e0"/><file name="DES.php" hash="47ac443f1edd2833cdc2f4eb80aa9a71"/><file name="Hash.php" hash="9be22f6426f2176caebb34a6cd2cb579"/><file name="Random.php" hash="5befc55c3423792c0cd50bc6d4f527b1"/><file name="RC4.php" hash="c6ec724c3a5d807d5ea4645518c37d29"/><file name="Rijndael.php" hash="7a92c95c750dd9ec1b8ce92915b4aa35"/><file name="RSA.php" hash="9bd5734f28d149d183c603643f6dbbb4"/><file name="TripleDES.php" hash="07c384b505d52802803313126e9e3836"/></dir><dir name="Math"><file name="BigInteger.php" hash="61aa9373ea606c928187d168159ac3f8"/></dir><dir name="Net"><file name="SFTP.php" hash="029f797c16ddd23b1d65636a72141115"/><file name="SSH1.php" hash="818d83815fe9bb5741594226bbdad975"/><file name="SSH2.php" hash="db5145effae044c7a1f6e7d778b566f5"/></dir><dir name="PHP"><dir name="Compat"><dir name="Function"><file name="array_fill.php" hash="840a674cac272c5588fa59f9421ed9a3"/><file name="bcpowmod.php" hash="4cb8fab0ee419f4b5a626980bbf04938"/><file name="str_split.php" hash="85cb5961afa62dde933190ee851a6d9a"/></dir></dir></dir></dir></dir><dir name="Model"><file name="Config.php" hash="d669c3dc977ddf71a58c90fa8df3180c"/><file name="Mapping.php" hash="d924ae8bcf54a3ca1224e8680d847fee"/><file name="Reprice.php" hash="9e4633dfd1e8de004014bc0ab873675b"/><dir name="Adminhtml"><file name="Attributes.php" hash="081833a6ee1263008d1dd4a956adb5a9"/></dir><dir name="Mysql4"><file name="Config.php" hash="61b7eb73489844aa0ee041c216bab2db"/><file name="Mapping.php" hash="d97574adda931ce798964c67041f6af5"/><dir name="Config"><file name="Collection.php" hash="c7c7b6844e3ff8893163c392f4132f30"/></dir><dir name="Mapping"><file name="Collection.php" hash="c0f15143db582e070cfb83de92c57d09"/></dir></dir></dir><dir name="sql"><dir name="syncer_setup"><file name="mysql4-install-1.1.3.7.php" hash="fcf864d92f3c71b0de06c0c5aef4dc3f"/></dir></dir></dir></dir></target></contents>
|
16 |
<compatible/>
|
17 |
<dependencies/>
|
18 |
</package>
|