d7db67d0d012350a01ce05c31f91754d - Version 2.5.1

Version Notes

* Correção ao importar pedido com status em branco.
* Correção de uma falha que fazia com que o processamento em lote de produtos falhava em caso de single_store

Download this release

Release Info

Developer Anymarket
Extension d7db67d0d012350a01ce05c31f91754d
Version 2.5.1
Comparing to
See all releases


Code changes from version 2.5.0 to 2.5.1

app/code/community/DB1/AnyMarket/Block/Adminhtml/Anymarketorders/Grid.php CHANGED
@@ -169,6 +169,15 @@ class DB1_AnyMarket_Block_Adminhtml_Anymarketorders_Grid extends Mage_Adminhtml_
169
  $this->setMassactionIdField('entity_id');
170
  $this->getMassactionBlock()->setFormFieldName('anymarketorders');
171
 
 
 
 
 
 
 
 
 
 
172
  $this->getMassactionBlock()->addItem(
173
  'export',
174
  array(
169
  $this->setMassactionIdField('entity_id');
170
  $this->getMassactionBlock()->setFormFieldName('anymarketorders');
171
 
172
+ $this->getMassactionBlock()->addItem(
173
+ 'delete',
174
+ array(
175
+ 'label'=> Mage::helper('db1_anymarket')->__('Delete'),
176
+ 'url' => $this->getUrl('*/*/massDelete'),
177
+ 'confirm' => Mage::helper('db1_anymarket')->__('Are you sure?')
178
+ )
179
+ );
180
+
181
  $this->getMassactionBlock()->addItem(
182
  'export',
183
  array(
app/code/community/DB1/AnyMarket/Block/Adminhtml/Anymarketproducts/Grid.php CHANGED
@@ -178,6 +178,15 @@ class DB1_AnyMarket_Block_Adminhtml_Anymarketproducts_Grid extends Mage_Adminhtm
178
  $this->setMassactionIdField('entity_id');
179
  $this->getMassactionBlock()->setFormFieldName('anymarketproducts');
180
 
 
 
 
 
 
 
 
 
 
181
  $this->getMassactionBlock()->addItem(
182
  'sincronizar',
183
  array(
178
  $this->setMassactionIdField('entity_id');
179
  $this->getMassactionBlock()->setFormFieldName('anymarketproducts');
180
 
181
+ $this->getMassactionBlock()->addItem(
182
+ 'delete',
183
+ array(
184
+ 'label'=> Mage::helper('db1_anymarket')->__('Delete'),
185
+ 'url' => $this->getUrl('*/*/massDelete'),
186
+ 'confirm' => Mage::helper('db1_anymarket')->__('Are you sure?')
187
+ )
188
+ );
189
+
190
  $this->getMassactionBlock()->addItem(
191
  'sincronizar',
192
  array(
app/code/community/DB1/AnyMarket/Helper/Order.php CHANGED
@@ -584,7 +584,7 @@ class DB1_AnyMarket_Helper_Order extends DB1_AnyMarket_Helper_Data
584
  }
585
  }
586
 
587
- if($stateMage != Mage_Sales_Model_Order::STATE_NEW){
588
  if($stateMage == Mage_Sales_Model_Order::STATE_COMPLETE){
589
  $history = $order->addStatusHistoryComment('Finalizado pelo AnyMarket.', false);
590
  $history->setIsCustomerNotified(false);
584
  }
585
  }
586
 
587
+ if($statusMage != Mage_Sales_Model_Order::STATE_NEW){
588
  if($stateMage == Mage_Sales_Model_Order::STATE_COMPLETE){
589
  $history = $order->addStatusHistoryComment('Finalizado pelo AnyMarket.', false);
590
  $history->setIsCustomerNotified(false);
app/code/community/DB1/AnyMarket/Helper/Queue.php CHANGED
@@ -46,6 +46,8 @@ class DB1_AnyMarket_Helper_Queue extends DB1_AnyMarket_Helper_Data
46
  $arrValueStore = array_values($anymarketQueue->getStoreId());
47
  $storeID = array_shift($arrValueStore);
48
 
 
 
49
  $cronEnabled = Mage::getStoreConfig('anymarket_section/anymarket_cron_group/anymarket_queue_field', $storeID);
50
  if($cronEnabled == '1' || $typeExec == "FORCE") {
51
  $typeSincProd = Mage::getStoreConfig('anymarket_section/anymarket_integration_prod_group/anymarket_type_prod_sync_field', $storeID);
46
  $arrValueStore = array_values($anymarketQueue->getStoreId());
47
  $storeID = array_shift($arrValueStore);
48
 
49
+ $storeID = ($storeID != null && $storeID != "0") ? $storeID : 1;
50
+
51
  $cronEnabled = Mage::getStoreConfig('anymarket_section/anymarket_cron_group/anymarket_queue_field', $storeID);
52
  if($cronEnabled == '1' || $typeExec == "FORCE") {
53
  $typeSincProd = Mage::getStoreConfig('anymarket_section/anymarket_integration_prod_group/anymarket_type_prod_sync_field', $storeID);
app/code/community/DB1/AnyMarket/etc/config.xml CHANGED
@@ -2,7 +2,7 @@
2
  <config>
3
  <modules>
4
  <DB1_AnyMarket>
5
- <version>2.5.0</version>
6
  </DB1_AnyMarket>
7
  </modules>
8
  <global>
2
  <config>
3
  <modules>
4
  <DB1_AnyMarket>
5
+ <version>2.5.1</version>
6
  </DB1_AnyMarket>
7
  </modules>
8
  <global>
app/code/community/DB1/AnyMarket/etc/system.xml CHANGED
@@ -857,7 +857,7 @@
857
  <comment>
858
  <![CDATA[
859
  <div>
860
- <h3>v. 2.5.0 Desenvolvido por<br> NovaPC - Tecnologia da Informação.</h3>
861
  <img src="http://novapc.com.br/images/logo.png" alt="Smiley face" height="200" width="300">
862
  <br>
863
  <br>
857
  <comment>
858
  <![CDATA[
859
  <div>
860
+ <h3>v. 2.5.1 Desenvolvido por<br> NovaPC - Tecnologia da Informação.</h3>
861
  <img src="http://novapc.com.br/images/logo.png" alt="Smiley face" height="200" width="300">
862
  <br>
863
  <br>
package.xml CHANGED
@@ -1,29 +1,19 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Anymarket</name>
4
- <version>2.5.0</version>
5
  <stability>stable</stability>
6
  <license>https://mozilla.org/MPL/2.0/</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>Integrador entre Magento e Anymarket.</summary>
10
  <description>Mantem um fluxo continuo de integra&#xE7;&#xE3;o de Produtos e Pedidos entre Magento e Anymarket.</description>
11
- <notes> * Pequenas corre&#xE7;&#xF5;es.&#xD;
12
- * Reestruturado configura&#xE7;&#xF5;es.&#xD;
13
- * Op&#xE7;&#xE3;o de Desabilitar os CRONS do Modulo.&#xD;
14
- * Adicionado CRON de Reindex de produtos(padr&#xE3;o, toda meia noite).&#xD;
15
- * Adicionado Default nas configs para novos Clientes.&#xD;
16
- * Manual de instala&#xE7;&#xE3;o e configura&#xE7;&#xE3;o do Modulo.&#xD;
17
- * Bot&#xE3;o para validar se todas as configuracoes estao preenchidas.&#xD;
18
- * Tooltips arrumadas.&#xD;
19
- * Descriptions melhoradas.&#xD;
20
- * Mensagens do Modulo Melhoradas.&#xD;
21
- * Ajuste CSS Botoes.&#xD;
22
- * Ajustes no Log, agora &#xE9; possivel selecionar o nivel de logs desejados.</notes>
23
  <authors><author><name>Anymarket</name><user>Anymarket</user><email>dev@anymarket.com.br</email></author></authors>
24
- <date>2016-05-30</date>
25
- <time>12:16:12</time>
26
- <contents><target name="magecommunity"><dir name="DB1"><dir name="AnyMarket"><dir name="Block"><dir name="Adminhtml"><dir name="Anymarketattributes"><dir name="Edit"><file name="Form.php" hash="2f7fc99eb1e822aec20e00ac2f09e9b6"/><dir name="Tab"><file name="Form.php" hash="b993f886f391902526c13ed921e67f64"/><file name="Stores.php" hash="e2f9a83dcc1c5643584607a9788ce991"/></dir><file name="Tabs.php" hash="c7ea19d365aa6dd186bb5586748c8a36"/></dir><file name="Edit.php" hash="adf55bcb491bb6c4d839ba54228f38bb"/><file name="Grid.php" hash="318ced337407c824b4ed93a6f30b7fb3"/></dir><file name="Anymarketattributes.php" hash="3dec5da837e1bcb3813a55a21cf70452"/><dir name="Anymarketbrands"><dir name="Edit"><file name="Form.php" hash="70295f473585677c25ccb69c729ad264"/><dir name="Tab"><file name="Form.php" hash="5baa22a93472a4552619554aa2f5b74d"/><file name="Stores.php" hash="989e32b60c014c3feb15b394ac75e495"/></dir><file name="Tabs.php" hash="3f38d3849c9c5191f05b6de6e48e1244"/></dir><file name="Edit.php" hash="bb5ee750685a202d059adf7c62207f8d"/><file name="Grid.php" hash="cbc4ea24f205fc5892d5c462a6702550"/></dir><file name="Anymarketbrands.php" hash="efa9ef9b3666136f2a2158bd69860d60"/><dir name="Anymarketcategories"><dir name="Edit"><file name="Form.php" hash="738927ef6cc0cb36d9a318a3fc0494a4"/><dir name="Tab"><file name="Form.php" hash="2646c16051d76fc6a149a8426e3b81c9"/><file name="Stores.php" hash="2065ee5d47b8c7e7632b6311e4dc65eb"/></dir><file name="Tabs.php" hash="4097937c822b540a533390a60a33a0ad"/></dir><file name="Edit.php" hash="ad21c818418accadb19c9e73c964f503"/><file name="Grid.php" hash="ecbf7477825c1be974172dc3504ee3f3"/></dir><file name="Anymarketcategories.php" hash="5284ecd428e4865653d87769bdaabe08"/><dir name="Anymarketlog"><dir name="Edit"><file name="Form.php" hash="475dcc08db1d6e73d0d3fa56916d1c7b"/><dir name="Tab"><file name="Form.php" hash="20949829f756ecbe695308a9ba3dc246"/><file name="Stores.php" hash="6c33618d5556292dd07b037a3ef0b9a4"/></dir><file name="Tabs.php" hash="778a968aa9ed006577ca1b06821ee8d7"/></dir><file name="Edit.php" hash="14bc221c3b69fd79d6c09eaaba2792bb"/><file name="Grid.php" hash="bde6093b89b3db92a25abf3124cd1714"/></dir><file name="Anymarketlog.php" hash="7da774661bfe410cb6df3a1d4bd33f5a"/><dir name="Anymarketorders"><dir name="Edit"><file name="Form.php" hash="40cdd96c786c522f15c0c0df583cd861"/><dir name="Tab"><file name="Form.php" hash="b98ab50051a0a32dc26f342ad34bd81b"/><file name="Stores.php" hash="eae8bbfa5ce5d2d1c3aa76cf09895b62"/></dir><file name="Tabs.php" hash="fd93f19227b2e46c74cadbcf642b936e"/></dir><file name="Edit.php" hash="b887ae08790c7babbc3b386208e57901"/><file name="Grid.php" hash="3f769d782f02cca7fc8ceddc7391deda"/></dir><file name="Anymarketorders.php" hash="59e93a88b8c82e1a8cfb2bd246cff259"/><dir name="Anymarketproducts"><dir name="Edit"><file name="Form.php" hash="980603f48914a1287c2e7c15e4c86d83"/><dir name="Tab"><file name="Form.php" hash="245eab4f574907f0db6bffcd651b6b8c"/><file name="Stores.php" hash="2cec2058ef922bc7cc89511d06d1cf72"/></dir><file name="Tabs.php" hash="1ff12beae435c878edb912960ae17a47"/></dir><file name="Edit.php" hash="efee68f9e82522aeb3908a29cb65d388"/><file name="Grid.php" hash="3c007f8101e3d9ffbb607f72ab6a85ec"/></dir><file name="Anymarketproducts.php" hash="3bac9100d555bd07ab9d0b368994bea2"/><dir name="Anymarketqueue"><dir name="Edit"><file name="Form.php" hash="fd9c0ce4afcf1c12657b180666224e97"/><dir name="Tab"><file name="Form.php" hash="aa603b428632caaf0a51c4d9021f3f08"/><file name="Stores.php" hash="08bdd73cf10ea1fe2bc4a963f0737cc6"/></dir><file name="Tabs.php" hash="381579dc284c6f27acea660886fdbc5f"/></dir><file name="Edit.php" hash="7decfc10b577b4d99c342d23b4a75c01"/><file name="Grid.php" hash="b22574ae4c546d78926c5b671145ef27"/></dir><file name="Anymarketqueue.php" hash="ae3c146ea8a2b0999a762917d8645dff"/><dir name="System"><dir name="Config"><dir name="Form"><file name="Buttoncheckconfig.php" hash="344078aec3e91f5f8915272935d0a391"/><file name="Callback.php" hash="0e721a318ec6d95e7671f2bdfd0e7c11"/><file name="buttoncheckconfig.php" hash="344078aec3e91f5f8915272935d0a391"/></dir></dir></dir></dir><dir name="System"><dir name="Config"><dir name="Source"><dir name="Orders"><dir name="Statusammg"><file name="Values.php" hash="931376d93d7ad770aae1755aa05d880f"/></dir><dir name="Statusmgam"><file name="Values.php" hash="3e39fcc15a9400f09b525ff130aaf775"/></dir></dir><dir name="Products"><file name="Values.php" hash="87e7e2ecaa08fc0c21d7ee93799a6f91"/></dir></dir></dir></dir></dir><dir name="Controller"><dir name="Adminhtml"><file name="AnyMarket.php" hash="6d1473008f995a33e619b4d00465ccc0"/></dir></dir><dir name="Helper"><file name="Brand.php" hash="48c1fe421cd14cfe2fa29768d2e06916"/><file name="Category.php" hash="2302bd93d84457d40d426b91d567da50"/><file name="Customergenerator.php" hash="2e9ea1ede85d01637c21d8f59894709d"/><file name="Data.php" hash="f97ec67421192a6bb5b67c0e85e3ed3c"/><file name="Order.php" hash="afab2053626eaaf5776aeae6b729f317"/><file name="Ordergenerator.php" hash="8cf01dff14525dea41fb6aaefe22206f"/><file name="Product.php" hash="fc52bff47667553ec8dd8dc07698f81f"/><file name="Productgenerator.php" hash="d96649853ee705451375f6203b5d5a96"/><file name="Queue.php" hash="c9c0944d8e740422464b25ecee270434"/></dir><dir name="Model"><dir name="Adminhtml"><dir name="Search"><file name="Anymarketattributes.php" hash="9c70e239108635285a267800c92a5497"/><file name="Anymarketbrands.php" hash="e6ab4761f6162f7eaa0ed9c54ffa0f67"/><file name="Anymarketlog.php" hash="587fd8a1b7579d03a221531e04b16e72"/><file name="Anymarketorders.php" hash="e80623045edfecd2b31469d0ddaae65e"/><file name="Anymarketproducts.php" hash="98721db042c261f99ed4dac40af60b5d"/><file name="Anymarketqueue.php" hash="fe750b1048ed725c715084002eea3bd7"/></dir></dir><dir name="Anymarketattributes"><dir name="Api"><file name="V2.php" hash="2968c2cbc85867bf9689b3925d8661aa"/></dir><file name="Api.php" hash="c08643eee1e8a850a77e1da60b1934f5"/></dir><file name="Anymarketattributes.php" hash="8153076dd11965f0caf91a618afa0ac9"/><dir name="Anymarketbrands"><dir name="Api"><file name="V2.php" hash="d3e2e0763c146aa4c4260455decfa811"/></dir><file name="Api.php" hash="a197ecaab03dbbb136de2cd6eee4b6a6"/></dir><file name="Anymarketbrands.php" hash="52f607ceb5684d944c31d0920bbd161d"/><dir name="Anymarketcategories"><dir name="Api"><file name="V2.php" hash="9be73fc1875d16263554fb9d6220cfce"/></dir><file name="Api.php" hash="54b1068a7c5939e16382311691279664"/></dir><file name="Anymarketcategories.php" hash="200d5ec4a7fc29fa01d559c3b586cc7e"/><dir name="Anymarketlog"><dir name="Api"><file name="V2.php" hash="f252eafdd842b105c8952567a5b0ece7"/></dir><file name="Api.php" hash="3424e96e46745bcc76fb3aca2073490e"/></dir><file name="Anymarketlog.php" hash="fd353955d73d83167ea3ce735f83a7e7"/><dir name="Anymarketorders"><dir name="Api"><file name="V2.php" hash="0b11c1be24355033a571d2e56f508d19"/></dir><file name="Api.php" hash="789106be86e48dd7de760f2debc83e26"/></dir><file name="Anymarketorders.php" hash="8697f792291a0603887be8acf734d4d4"/><dir name="Anymarketproducts"><dir name="Api"><file name="V2.php" hash="d1b289e2fdd26b80c4d921bec5dfa339"/></dir><file name="Api.php" hash="7f8a8f3668a181ce93e0b50ad0f60aae"/></dir><file name="Anymarketproducts.php" hash="b4071fbf8190b01f5bb21f35dd77d1fc"/><dir name="Anymarketqueue"><dir name="Api"><file name="V2.php" hash="e9c8a4c3612249d39d984c29d1ef548a"/></dir><file name="Api.php" hash="eb142eb9f3f92cb950596d47044f3050"/></dir><file name="Anymarketqueue.php" hash="7c9373fa2dba0cab020370f2a4d58e84"/><file name="Cron.php" hash="4c85b7ef3772cfc014cf0ef497b4c96b"/><file name="Observer.php" hash="38b1f2a96dc5903db9c642ee8b0e41d0"/><file name="PaymentMethod.php" hash="7c10a39a005e03d0d0530041bee95a9e"/><dir name="Resource"><dir name="Anymarketattributes"><file name="Collection.php" hash="36566dd648113fbd096ae4c9f2574058"/></dir><file name="Anymarketattributes.php" hash="07099d8acd0244dd22ef3aa591c4d4be"/><dir name="Anymarketbrands"><file name="Collection.php" hash="f542cb47a58e77017a90d4b9733e354b"/></dir><file name="Anymarketbrands.php" hash="aad2b54e04e58df24f9f518e67237d27"/><dir name="Anymarketcategories"><file name="Collection.php" hash="f58ef5b5397c8fdfd68dd860d2998dd6"/></dir><file name="Anymarketcategories.php" hash="80c0ea6b443d2beadc3e0d8fb3329e49"/><dir name="Anymarketlog"><file name="Collection.php" hash="e1b37efe779188ded01622a383c39f7e"/></dir><file name="Anymarketlog.php" hash="69ce526695527d4469f7cae4604d24f9"/><dir name="Anymarketorders"><file name="Collection.php" hash="45ec7c3ccf2de78cf5d0c95e1ea1f3f4"/></dir><file name="Anymarketorders.php" hash="1879ab46e3f47772db8b23710cc3c2ac"/><dir name="Anymarketproducts"><file name="Collection.php" hash="fc88402b7281c58a79b8fb4b8ab5645e"/></dir><file name="Anymarketproducts.php" hash="51ab548790054880bccce85b12e111ea"/><dir name="Anymarketqueue"><file name="Collection.php" hash="c7ce0a9ce11f376cc05d3afefe6ad8ba"/></dir><file name="Anymarketqueue.php" hash="be077e58f0eb8d8e5bbf660c70ff0c8a"/><file name="Setup.php" hash="0df420432c06cee997f9a43e9ca42fd2"/></dir><dir name="System"><dir name="Config"><dir name="Source"><dir name="Attributes"><dir name="Customer"><dir name="Group"><file name="Values.php" hash="b3da25e6f5bbd22f88951a40f21c0062"/></dir><dir name="Street"><file name="Values.php" hash="c219bd519b968f614c92aa564272d1b3"/></dir><file name="Values.php" hash="74b98a8dbf05e3089bd9885d610b9203"/></dir><dir name="Product"><dir name="Booleantp"><file name="Values.php" hash="9b80052d0ed97cbbf4ba9f72c0a3e0a9"/></dir><dir name="Price"><file name="Values.php" hash="a9f6f4a2bef252b0731c7d82ebf36ddb"/></dir><file name="Values.php" hash="1000fd8c2cb40456c7ee3671bd06b1b9"/></dir><dir name="Set"><file name="Values.php" hash="c0c0ba6a8f7fcd48896ab4916ca8d515"/></dir></dir><dir name="Categories"><file name="Values.php" hash="f59129783eb797e1c088ef5ac332dc92"/></dir><dir name="Logs"><file name="Values.php" hash="714f462254b42d1ba36546dbd55e06f9"/></dir><dir name="Massunit"><file name="Values.php" hash="475bc7d4556c5f42728b774d7b6749f2"/></dir><dir name="Measurementunit"><file name="Values.php" hash="0831cd50cddff66d9c97339d1a4d61ad"/></dir><dir name="Orders"><file name="Values.php" hash="6df0f33ada91098ba026bd006bd7b9d0"/></dir><dir name="Typesync"><dir name="Order"><file name="Values.php" hash="f2fe8cde6e3ae10cac6a26500fc0984b"/></dir></dir></dir></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Anymarket"><file name="AnymarketattributesController.php" hash="29db5f472baef6f064861a90577b3d39"/><file name="AnymarketbrandsController.php" hash="8e527c5c0e140e78815c9fb385023112"/><file name="AnymarketcategoriesController.php" hash="74468898d76dece1d5e14dcb9f815fc0"/><file name="AnymarketlogController.php" hash="8dbbbc42b687ad8056e98e61bff72a91"/><file name="AnymarketordersController.php" hash="d385cf6aabb0d46d1b77cedb2f408fe7"/><file name="AnymarketproductsController.php" hash="aed3045308d53abe8d22bc024d3fe9e1"/><file name="AnymarketqueueController.php" hash="8fc629165bfeb675d5c7230faca69e63"/></dir><file name="AnymarketController.php" hash="c84286b666ed0bcd988346b2fc46467d"/></dir><file name="IndexController.php" hash="04f940ebc3e82196001e415d99d32efd"/></dir><dir name="etc"><file name="adminhtml.xml" hash="59c70a74d5d791a85a6783dc6c2d954a"/><file name="api.xml" hash="3546bfaef38893f387c70879f8f62bd5"/><file name="config.xml" hash="f088b7a7962a6e78018d5712e16144bf"/><file name="system.xml" hash="36852e3b81a272d655f127bf8eaed933"/><file name="wsdl.xml" hash="92472d43f8c69fea0b2ca67c102225c6"/><file name="wsi.xml" hash="e7e1d615fdad47f1454edcb4cea6b6df"/></dir><dir name="sql"><dir name="db1_anymarket_setup"><file name="mysql4-install-1.0.0.php" hash="e321615a6c00d6bf0d7624c0b05b6639"/><file name="mysql4-upgrade-1.0.0-1.1.0.php" hash="aaccf01a4ba1a5452b1a4bc0565e5733"/><file name="mysql4-upgrade-1.1.0-1.2.0.php" hash="e7af419b7793c1047e5d943f5b790ffb"/><file name="mysql4-upgrade-1.2.0-1.3.0.php" hash="f034e3e6f71a01ee3b80924bfe495cb4"/><file name="mysql4-upgrade-1.3.0-1.4.0.php" hash="e9eccf082d6ecb09f75df2b5a7afec9c"/><file name="mysql4-upgrade-1.4.0-1.5.0.php" hash="4a21c4dff0151d55d62c5023f7b29930"/><file name="mysql4-upgrade-1.5.0-1.6.0.php" hash="1662d2e0322db100b762bd012eca5131"/><file name="mysql4-upgrade-1.6.0-1.7.0.php" hash="b633fcb878851c947c1d0b9c116cd8fe"/><file name="mysql4-upgrade-1.7.0-1.8.0.php" hash="45335413517a3a74320c3de9aaec1eaf"/><file name="mysql4-upgrade-1.8.0-2.0.0.php" hash="f84214fc43f665c79b92dc7a092b364f"/><file name="mysql4-upgrade-2.0.0-2.1.0.php" hash="7f8dcb7bc69d58061709f66bbecceea6"/><file name="mysql4-upgrade-2.1.0-2.2.0.php" hash="8540010143d20286287e9b3abfee11f9"/><file name="mysql4-upgrade-2.2.0-2.3.6.php" hash="e5e770b4ab8ba48e177efbc1d613fb3c"/><file name="mysql4-upgrade-2.3.6-2.3.9.php" hash="058f6ad275eedb0fedde895f9e0a3933"/><file name="mysql4-upgrade-2.3.9-2.4.0.php" hash="b41bf0ee29b85b1dcb5437767bd32a77"/><file name="mysql4-upgrade-2.4.0-2.4.3.php" hash="3b0e01bd5ba4afef89cfbe40305f9087"/><file name="mysql4-upgrade-2.4.3-2.4.4.php" hash="8540010143d20286287e9b3abfee11f9"/></dir></dir></dir></dir></target><target name="mageetc"><dir><dir name="modules"><file name="DB1_AnyMarket.xml" hash="98dd8e192a0a2ad509ce5a50c6c40f98"/></dir></dir></target><target name="magelocale"><dir><dir name="en_US"><file name="DB1_AnyMarket.csv" hash="93c1b0a4b8fc337958c4e4499d769bf2"/></dir><dir name="pt_BR"><file name="DB1_AnyMarket.csv" hash="2f1fe5366aee8825e5c8dc81dfb5b577"/></dir></dir></target><target name="magedesign"><dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="db1_anymarket.xml" hash="47bb7ca814c58a2985f198c3703f1d58"/></dir><dir name="template"><dir name="db1"><dir name="anymarket"><dir name="system"><dir name="config"><dir name="form"><dir name="field"><file name="array_dropdown.phtml" hash="6a0ec3bf507fe6211ca0ad4825325c57"/><file name="button_check_configuration.phtml" hash="252673865f738851cacc1337948b8f86"/></dir></dir></dir></dir></dir></dir></dir></dir></dir></dir></dir></target></contents>
27
  <compatible/>
28
  <dependencies><required><php><min>5.4.0</min><max>5.6.21</max></php></required></dependencies>
29
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Anymarket</name>
4
+ <version>2.5.1</version>
5
  <stability>stable</stability>
6
  <license>https://mozilla.org/MPL/2.0/</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>Integrador entre Magento e Anymarket.</summary>
10
  <description>Mantem um fluxo continuo de integra&#xE7;&#xE3;o de Produtos e Pedidos entre Magento e Anymarket.</description>
11
+ <notes>* Corre&#xE7;&#xE3;o ao importar pedido com status em branco.&#xD;
12
+ * Corre&#xE7;&#xE3;o de uma falha que fazia com que o processamento em lote de produtos falhava em caso de single_store</notes>
 
 
 
 
 
 
 
 
 
 
13
  <authors><author><name>Anymarket</name><user>Anymarket</user><email>dev@anymarket.com.br</email></author></authors>
14
+ <date>2016-06-06</date>
15
+ <time>13:24:33</time>
16
+ <contents><target name="magecommunity"><dir name="DB1"><dir name="AnyMarket"><dir name="Block"><dir name="Adminhtml"><dir name="Anymarketattributes"><dir name="Edit"><file name="Form.php" hash="2f7fc99eb1e822aec20e00ac2f09e9b6"/><dir name="Tab"><file name="Form.php" hash="b993f886f391902526c13ed921e67f64"/><file name="Stores.php" hash="e2f9a83dcc1c5643584607a9788ce991"/></dir><file name="Tabs.php" hash="c7ea19d365aa6dd186bb5586748c8a36"/></dir><file name="Edit.php" hash="adf55bcb491bb6c4d839ba54228f38bb"/><file name="Grid.php" hash="318ced337407c824b4ed93a6f30b7fb3"/></dir><file name="Anymarketattributes.php" hash="3dec5da837e1bcb3813a55a21cf70452"/><dir name="Anymarketbrands"><dir name="Edit"><file name="Form.php" hash="70295f473585677c25ccb69c729ad264"/><dir name="Tab"><file name="Form.php" hash="5baa22a93472a4552619554aa2f5b74d"/><file name="Stores.php" hash="989e32b60c014c3feb15b394ac75e495"/></dir><file name="Tabs.php" hash="3f38d3849c9c5191f05b6de6e48e1244"/></dir><file name="Edit.php" hash="bb5ee750685a202d059adf7c62207f8d"/><file name="Grid.php" hash="cbc4ea24f205fc5892d5c462a6702550"/></dir><file name="Anymarketbrands.php" hash="efa9ef9b3666136f2a2158bd69860d60"/><dir name="Anymarketcategories"><dir name="Edit"><file name="Form.php" hash="738927ef6cc0cb36d9a318a3fc0494a4"/><dir name="Tab"><file name="Form.php" hash="2646c16051d76fc6a149a8426e3b81c9"/><file name="Stores.php" hash="2065ee5d47b8c7e7632b6311e4dc65eb"/></dir><file name="Tabs.php" hash="4097937c822b540a533390a60a33a0ad"/></dir><file name="Edit.php" hash="ad21c818418accadb19c9e73c964f503"/><file name="Grid.php" hash="ecbf7477825c1be974172dc3504ee3f3"/></dir><file name="Anymarketcategories.php" hash="5284ecd428e4865653d87769bdaabe08"/><dir name="Anymarketlog"><dir name="Edit"><file name="Form.php" hash="475dcc08db1d6e73d0d3fa56916d1c7b"/><dir name="Tab"><file name="Form.php" hash="20949829f756ecbe695308a9ba3dc246"/><file name="Stores.php" hash="6c33618d5556292dd07b037a3ef0b9a4"/></dir><file name="Tabs.php" hash="778a968aa9ed006577ca1b06821ee8d7"/></dir><file name="Edit.php" hash="14bc221c3b69fd79d6c09eaaba2792bb"/><file name="Grid.php" hash="bde6093b89b3db92a25abf3124cd1714"/></dir><file name="Anymarketlog.php" hash="7da774661bfe410cb6df3a1d4bd33f5a"/><dir name="Anymarketorders"><dir name="Edit"><file name="Form.php" hash="40cdd96c786c522f15c0c0df583cd861"/><dir name="Tab"><file name="Form.php" hash="b98ab50051a0a32dc26f342ad34bd81b"/><file name="Stores.php" hash="eae8bbfa5ce5d2d1c3aa76cf09895b62"/></dir><file name="Tabs.php" hash="fd93f19227b2e46c74cadbcf642b936e"/></dir><file name="Edit.php" hash="b887ae08790c7babbc3b386208e57901"/><file name="Grid.php" hash="08194a3c7e6fee59b1e2acf22f2844ca"/></dir><file name="Anymarketorders.php" hash="59e93a88b8c82e1a8cfb2bd246cff259"/><dir name="Anymarketproducts"><dir name="Edit"><file name="Form.php" hash="980603f48914a1287c2e7c15e4c86d83"/><dir name="Tab"><file name="Form.php" hash="245eab4f574907f0db6bffcd651b6b8c"/><file name="Stores.php" hash="2cec2058ef922bc7cc89511d06d1cf72"/></dir><file name="Tabs.php" hash="1ff12beae435c878edb912960ae17a47"/></dir><file name="Edit.php" hash="efee68f9e82522aeb3908a29cb65d388"/><file name="Grid.php" hash="28abacf7c5294e6d991f363bb4c11afc"/></dir><file name="Anymarketproducts.php" hash="3bac9100d555bd07ab9d0b368994bea2"/><dir name="Anymarketqueue"><dir name="Edit"><file name="Form.php" hash="fd9c0ce4afcf1c12657b180666224e97"/><dir name="Tab"><file name="Form.php" hash="aa603b428632caaf0a51c4d9021f3f08"/><file name="Stores.php" hash="08bdd73cf10ea1fe2bc4a963f0737cc6"/></dir><file name="Tabs.php" hash="381579dc284c6f27acea660886fdbc5f"/></dir><file name="Edit.php" hash="7decfc10b577b4d99c342d23b4a75c01"/><file name="Grid.php" hash="b22574ae4c546d78926c5b671145ef27"/></dir><file name="Anymarketqueue.php" hash="ae3c146ea8a2b0999a762917d8645dff"/><dir name="System"><dir name="Config"><dir name="Form"><file name="Buttoncheckconfig.php" hash="344078aec3e91f5f8915272935d0a391"/><file name="Callback.php" hash="0e721a318ec6d95e7671f2bdfd0e7c11"/><file name="buttoncheckconfig.php" hash="344078aec3e91f5f8915272935d0a391"/></dir></dir></dir></dir><dir name="System"><dir name="Config"><dir name="Source"><dir name="Orders"><dir name="Statusammg"><file name="Values.php" hash="931376d93d7ad770aae1755aa05d880f"/></dir><dir name="Statusmgam"><file name="Values.php" hash="3e39fcc15a9400f09b525ff130aaf775"/></dir></dir><dir name="Products"><file name="Values.php" hash="87e7e2ecaa08fc0c21d7ee93799a6f91"/></dir></dir></dir></dir></dir><dir name="Controller"><dir name="Adminhtml"><file name="AnyMarket.php" hash="6d1473008f995a33e619b4d00465ccc0"/></dir></dir><dir name="Helper"><file name="Brand.php" hash="48c1fe421cd14cfe2fa29768d2e06916"/><file name="Category.php" hash="2302bd93d84457d40d426b91d567da50"/><file name="Customergenerator.php" hash="2e9ea1ede85d01637c21d8f59894709d"/><file name="Data.php" hash="f97ec67421192a6bb5b67c0e85e3ed3c"/><file name="Order.php" hash="1dc6f30ed2ed1715beebc5deaccd77d8"/><file name="Ordergenerator.php" hash="8cf01dff14525dea41fb6aaefe22206f"/><file name="Product.php" hash="fc52bff47667553ec8dd8dc07698f81f"/><file name="Productgenerator.php" hash="d96649853ee705451375f6203b5d5a96"/><file name="Queue.php" hash="aa4083effc3b755f473ebb3c75793bcc"/></dir><dir name="Model"><dir name="Adminhtml"><dir name="Search"><file name="Anymarketattributes.php" hash="9c70e239108635285a267800c92a5497"/><file name="Anymarketbrands.php" hash="e6ab4761f6162f7eaa0ed9c54ffa0f67"/><file name="Anymarketlog.php" hash="587fd8a1b7579d03a221531e04b16e72"/><file name="Anymarketorders.php" hash="e80623045edfecd2b31469d0ddaae65e"/><file name="Anymarketproducts.php" hash="98721db042c261f99ed4dac40af60b5d"/><file name="Anymarketqueue.php" hash="fe750b1048ed725c715084002eea3bd7"/></dir></dir><dir name="Anymarketattributes"><dir name="Api"><file name="V2.php" hash="2968c2cbc85867bf9689b3925d8661aa"/></dir><file name="Api.php" hash="c08643eee1e8a850a77e1da60b1934f5"/></dir><file name="Anymarketattributes.php" hash="8153076dd11965f0caf91a618afa0ac9"/><dir name="Anymarketbrands"><dir name="Api"><file name="V2.php" hash="d3e2e0763c146aa4c4260455decfa811"/></dir><file name="Api.php" hash="a197ecaab03dbbb136de2cd6eee4b6a6"/></dir><file name="Anymarketbrands.php" hash="52f607ceb5684d944c31d0920bbd161d"/><dir name="Anymarketcategories"><dir name="Api"><file name="V2.php" hash="9be73fc1875d16263554fb9d6220cfce"/></dir><file name="Api.php" hash="54b1068a7c5939e16382311691279664"/></dir><file name="Anymarketcategories.php" hash="200d5ec4a7fc29fa01d559c3b586cc7e"/><dir name="Anymarketlog"><dir name="Api"><file name="V2.php" hash="f252eafdd842b105c8952567a5b0ece7"/></dir><file name="Api.php" hash="3424e96e46745bcc76fb3aca2073490e"/></dir><file name="Anymarketlog.php" hash="fd353955d73d83167ea3ce735f83a7e7"/><dir name="Anymarketorders"><dir name="Api"><file name="V2.php" hash="0b11c1be24355033a571d2e56f508d19"/></dir><file name="Api.php" hash="789106be86e48dd7de760f2debc83e26"/></dir><file name="Anymarketorders.php" hash="8697f792291a0603887be8acf734d4d4"/><dir name="Anymarketproducts"><dir name="Api"><file name="V2.php" hash="d1b289e2fdd26b80c4d921bec5dfa339"/></dir><file name="Api.php" hash="7f8a8f3668a181ce93e0b50ad0f60aae"/></dir><file name="Anymarketproducts.php" hash="b4071fbf8190b01f5bb21f35dd77d1fc"/><dir name="Anymarketqueue"><dir name="Api"><file name="V2.php" hash="e9c8a4c3612249d39d984c29d1ef548a"/></dir><file name="Api.php" hash="eb142eb9f3f92cb950596d47044f3050"/></dir><file name="Anymarketqueue.php" hash="7c9373fa2dba0cab020370f2a4d58e84"/><file name="Cron.php" hash="4c85b7ef3772cfc014cf0ef497b4c96b"/><file name="Observer.php" hash="38b1f2a96dc5903db9c642ee8b0e41d0"/><file name="PaymentMethod.php" hash="7c10a39a005e03d0d0530041bee95a9e"/><dir name="Resource"><dir name="Anymarketattributes"><file name="Collection.php" hash="36566dd648113fbd096ae4c9f2574058"/></dir><file name="Anymarketattributes.php" hash="07099d8acd0244dd22ef3aa591c4d4be"/><dir name="Anymarketbrands"><file name="Collection.php" hash="f542cb47a58e77017a90d4b9733e354b"/></dir><file name="Anymarketbrands.php" hash="aad2b54e04e58df24f9f518e67237d27"/><dir name="Anymarketcategories"><file name="Collection.php" hash="f58ef5b5397c8fdfd68dd860d2998dd6"/></dir><file name="Anymarketcategories.php" hash="80c0ea6b443d2beadc3e0d8fb3329e49"/><dir name="Anymarketlog"><file name="Collection.php" hash="e1b37efe779188ded01622a383c39f7e"/></dir><file name="Anymarketlog.php" hash="69ce526695527d4469f7cae4604d24f9"/><dir name="Anymarketorders"><file name="Collection.php" hash="45ec7c3ccf2de78cf5d0c95e1ea1f3f4"/></dir><file name="Anymarketorders.php" hash="1879ab46e3f47772db8b23710cc3c2ac"/><dir name="Anymarketproducts"><file name="Collection.php" hash="fc88402b7281c58a79b8fb4b8ab5645e"/></dir><file name="Anymarketproducts.php" hash="51ab548790054880bccce85b12e111ea"/><dir name="Anymarketqueue"><file name="Collection.php" hash="c7ce0a9ce11f376cc05d3afefe6ad8ba"/></dir><file name="Anymarketqueue.php" hash="be077e58f0eb8d8e5bbf660c70ff0c8a"/><file name="Setup.php" hash="0df420432c06cee997f9a43e9ca42fd2"/></dir><dir name="System"><dir name="Config"><dir name="Source"><dir name="Attributes"><dir name="Customer"><dir name="Group"><file name="Values.php" hash="b3da25e6f5bbd22f88951a40f21c0062"/></dir><dir name="Street"><file name="Values.php" hash="c219bd519b968f614c92aa564272d1b3"/></dir><file name="Values.php" hash="74b98a8dbf05e3089bd9885d610b9203"/></dir><dir name="Product"><dir name="Booleantp"><file name="Values.php" hash="9b80052d0ed97cbbf4ba9f72c0a3e0a9"/></dir><dir name="Price"><file name="Values.php" hash="a9f6f4a2bef252b0731c7d82ebf36ddb"/></dir><file name="Values.php" hash="1000fd8c2cb40456c7ee3671bd06b1b9"/></dir><dir name="Set"><file name="Values.php" hash="c0c0ba6a8f7fcd48896ab4916ca8d515"/></dir></dir><dir name="Categories"><file name="Values.php" hash="f59129783eb797e1c088ef5ac332dc92"/></dir><dir name="Logs"><file name="Values.php" hash="714f462254b42d1ba36546dbd55e06f9"/></dir><dir name="Massunit"><file name="Values.php" hash="475bc7d4556c5f42728b774d7b6749f2"/></dir><dir name="Measurementunit"><file name="Values.php" hash="0831cd50cddff66d9c97339d1a4d61ad"/></dir><dir name="Orders"><file name="Values.php" hash="6df0f33ada91098ba026bd006bd7b9d0"/></dir><dir name="Typesync"><dir name="Order"><file name="Values.php" hash="f2fe8cde6e3ae10cac6a26500fc0984b"/></dir></dir></dir></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Anymarket"><file name="AnymarketattributesController.php" hash="29db5f472baef6f064861a90577b3d39"/><file name="AnymarketbrandsController.php" hash="8e527c5c0e140e78815c9fb385023112"/><file name="AnymarketcategoriesController.php" hash="74468898d76dece1d5e14dcb9f815fc0"/><file name="AnymarketlogController.php" hash="8dbbbc42b687ad8056e98e61bff72a91"/><file name="AnymarketordersController.php" hash="d385cf6aabb0d46d1b77cedb2f408fe7"/><file name="AnymarketproductsController.php" hash="aed3045308d53abe8d22bc024d3fe9e1"/><file name="AnymarketqueueController.php" hash="8fc629165bfeb675d5c7230faca69e63"/></dir><file name="AnymarketController.php" hash="c84286b666ed0bcd988346b2fc46467d"/></dir><file name="IndexController.php" hash="04f940ebc3e82196001e415d99d32efd"/></dir><dir name="etc"><file name="adminhtml.xml" hash="59c70a74d5d791a85a6783dc6c2d954a"/><file name="api.xml" hash="3546bfaef38893f387c70879f8f62bd5"/><file name="config.xml" hash="8c614cfacfad87b477c8e6a8abe4e32e"/><file name="system.xml" hash="3cf184cd2babd7efcac1e7d89fd35dba"/><file name="wsdl.xml" hash="92472d43f8c69fea0b2ca67c102225c6"/><file name="wsi.xml" hash="e7e1d615fdad47f1454edcb4cea6b6df"/></dir><dir name="sql"><dir name="db1_anymarket_setup"><file name="mysql4-install-1.0.0.php" hash="e321615a6c00d6bf0d7624c0b05b6639"/><file name="mysql4-upgrade-1.0.0-1.1.0.php" hash="aaccf01a4ba1a5452b1a4bc0565e5733"/><file name="mysql4-upgrade-1.1.0-1.2.0.php" hash="e7af419b7793c1047e5d943f5b790ffb"/><file name="mysql4-upgrade-1.2.0-1.3.0.php" hash="f034e3e6f71a01ee3b80924bfe495cb4"/><file name="mysql4-upgrade-1.3.0-1.4.0.php" hash="e9eccf082d6ecb09f75df2b5a7afec9c"/><file name="mysql4-upgrade-1.4.0-1.5.0.php" hash="4a21c4dff0151d55d62c5023f7b29930"/><file name="mysql4-upgrade-1.5.0-1.6.0.php" hash="1662d2e0322db100b762bd012eca5131"/><file name="mysql4-upgrade-1.6.0-1.7.0.php" hash="b633fcb878851c947c1d0b9c116cd8fe"/><file name="mysql4-upgrade-1.7.0-1.8.0.php" hash="45335413517a3a74320c3de9aaec1eaf"/><file name="mysql4-upgrade-1.8.0-2.0.0.php" hash="f84214fc43f665c79b92dc7a092b364f"/><file name="mysql4-upgrade-2.0.0-2.1.0.php" hash="7f8dcb7bc69d58061709f66bbecceea6"/><file name="mysql4-upgrade-2.1.0-2.2.0.php" hash="8540010143d20286287e9b3abfee11f9"/><file name="mysql4-upgrade-2.2.0-2.3.6.php" hash="e5e770b4ab8ba48e177efbc1d613fb3c"/><file name="mysql4-upgrade-2.3.6-2.3.9.php" hash="058f6ad275eedb0fedde895f9e0a3933"/><file name="mysql4-upgrade-2.3.9-2.4.0.php" hash="b41bf0ee29b85b1dcb5437767bd32a77"/><file name="mysql4-upgrade-2.4.0-2.4.3.php" hash="3b0e01bd5ba4afef89cfbe40305f9087"/><file name="mysql4-upgrade-2.4.3-2.4.4.php" hash="8540010143d20286287e9b3abfee11f9"/></dir></dir></dir></dir></target><target name="mageetc"><dir><dir name="modules"><file name="DB1_AnyMarket.xml" hash="98dd8e192a0a2ad509ce5a50c6c40f98"/></dir></dir></target><target name="magelocale"><dir><dir name="en_US"><file name="DB1_AnyMarket.csv" hash="93c1b0a4b8fc337958c4e4499d769bf2"/></dir><dir name="pt_BR"><file name="DB1_AnyMarket.csv" hash="2f1fe5366aee8825e5c8dc81dfb5b577"/></dir></dir></target><target name="magedesign"><dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="db1_anymarket.xml" hash="47bb7ca814c58a2985f198c3703f1d58"/></dir><dir name="template"><dir name="db1"><dir name="anymarket"><dir name="system"><dir name="config"><dir name="form"><dir name="field"><file name="array_dropdown.phtml" hash="6a0ec3bf507fe6211ca0ad4825325c57"/><file name="button_check_configuration.phtml" hash="252673865f738851cacc1337948b8f86"/></dir></dir></dir></dir></dir></dir></dir></dir></dir></dir></dir></target></contents>
17
  <compatible/>
18
  <dependencies><required><php><min>5.4.0</min><max>5.6.21</max></php></required></dependencies>
19
  </package>