Intelivemetrics_Unityreports - Version 0.7.1

Version Notes

Fixes table prefix issue in orders export

Download this release

Release Info

Developer Eduard G. Dumitrescu
Extension Intelivemetrics_Unityreports
Version 0.7.1
Comparing to
See all releases


Code changes from version 0.7.0 to 0.7.1

app/code/community/Intelivemetrics/Unityreports/Model/Observer.php CHANGED
@@ -13,7 +13,7 @@ class Intelivemetrics_Unityreports_Model_Observer {
13
  protected function _saveCampaignInfo($id, $source, $medium, $content, $campaign, $type = 'order') {
14
  $db = Mage::getSingleton('unityreports/utils')->getDb();
15
  $table = Intelivemetrics_Unityreports_Model_Utils::getTableName('unityreports/campaigns');
16
- $query = "INSERT INTO {$table}(id,source,medium,content,campaign,type) VALUES
17
  ('{$id}','{$source}','{$medium}','{$content}','{$campaign}','{$type}')";
18
  $db->query($query);
19
  }
13
  protected function _saveCampaignInfo($id, $source, $medium, $content, $campaign, $type = 'order') {
14
  $db = Mage::getSingleton('unityreports/utils')->getDb();
15
  $table = Intelivemetrics_Unityreports_Model_Utils::getTableName('unityreports/campaigns');
16
+ $query = "INSERT IGNORE INTO {$table}(id,source,medium,content,campaign,type) VALUES
17
  ('{$id}','{$source}','{$medium}','{$content}','{$campaign}','{$type}')";
18
  $db->query($query);
19
  }
app/code/community/Intelivemetrics/Unityreports/Model/Sync/Creditnote.php CHANGED
@@ -62,12 +62,13 @@ class Intelivemetrics_Unityreports_Model_Sync_Creditnote extends Intelivemetrics
62
  $helper = Mage::helper('unityreports');
63
  $creditnotesTable = Intelivemetrics_Unityreports_Model_Utils::getTableName('unityreports/creditnotes');
64
  $ordersTable = Intelivemetrics_Unityreports_Model_Utils::getTableName('unityreports/orders');
 
65
  $now = date('Y-m-d H:i:s');
66
  try {
67
  $collection = Mage::getModel('sales/order_creditmemo')->getCollection()
68
  ->addAttributeToSelect('*');
69
  $collection->getSelect()
70
- ->joinLeft(array('orders' => 'sales_flat_order'), "orders.entity_id=main_table.order_id", array('o_increment_id' => 'increment_id'))
71
  ->where("main_table.increment_id NOT IN (SELECT increment_id FROM $creditnotesTable WHERE synced=1 OR sents>={$this->getMaxSents()} OR TIMESTAMPDIFF(MINUTE,last_sent_at,'{$now}')<60)")
72
  ->where("orders.increment_id IN (SELECT increment_id FROM $ordersTable WHERE synced=1)")
73
  ->limit($limit)
62
  $helper = Mage::helper('unityreports');
63
  $creditnotesTable = Intelivemetrics_Unityreports_Model_Utils::getTableName('unityreports/creditnotes');
64
  $ordersTable = Intelivemetrics_Unityreports_Model_Utils::getTableName('unityreports/orders');
65
+ $ordersTableMage = Intelivemetrics_Unityreports_Model_Utils::getTableName('sales_flat_order');
66
  $now = date('Y-m-d H:i:s');
67
  try {
68
  $collection = Mage::getModel('sales/order_creditmemo')->getCollection()
69
  ->addAttributeToSelect('*');
70
  $collection->getSelect()
71
+ ->joinLeft(array('orders' => $ordersTableMage), "orders.entity_id=main_table.order_id", array('o_increment_id' => 'increment_id'))
72
  ->where("main_table.increment_id NOT IN (SELECT increment_id FROM $creditnotesTable WHERE synced=1 OR sents>={$this->getMaxSents()} OR TIMESTAMPDIFF(MINUTE,last_sent_at,'{$now}')<60)")
73
  ->where("orders.increment_id IN (SELECT increment_id FROM $ordersTable WHERE synced=1)")
74
  ->limit($limit)
app/code/community/Intelivemetrics/Unityreports/Model/Sync/Invoice.php CHANGED
@@ -63,12 +63,13 @@ class Intelivemetrics_Unityreports_Model_Sync_Invoice extends Intelivemetrics_Un
63
  $helper = Mage::helper('unityreports');
64
  $invoicesTable = Intelivemetrics_Unityreports_Model_Utils::getTableName('unityreports/invoices');
65
  $ordersTable = Intelivemetrics_Unityreports_Model_Utils::getTableName('unityreports/orders');
 
66
  $now = date('Y-m-d H:i:s');
67
  try {
68
  $collection = Mage::getModel('sales/order_invoice')->getCollection()
69
  ->addAttributeToSelect('*');
70
  $collection->getSelect()
71
- ->joinLeft(array('orders' => 'sales_flat_order'), "orders.entity_id=main_table.order_id", array('o_increment_id' => 'increment_id'))
72
  ->where("main_table.increment_id NOT IN (SELECT increment_id FROM $invoicesTable WHERE synced=1 OR sents>={$this->getMaxSents()} OR TIMESTAMPDIFF(MINUTE,last_sent_at,'{$now}')<60)")
73
  ->where("orders.increment_id IN (SELECT increment_id FROM $ordersTable WHERE synced=1)")
74
  ->limit($limit)
63
  $helper = Mage::helper('unityreports');
64
  $invoicesTable = Intelivemetrics_Unityreports_Model_Utils::getTableName('unityreports/invoices');
65
  $ordersTable = Intelivemetrics_Unityreports_Model_Utils::getTableName('unityreports/orders');
66
+ $ordersTableMage = Intelivemetrics_Unityreports_Model_Utils::getTableName('sales_flat_order');
67
  $now = date('Y-m-d H:i:s');
68
  try {
69
  $collection = Mage::getModel('sales/order_invoice')->getCollection()
70
  ->addAttributeToSelect('*');
71
  $collection->getSelect()
72
+ ->joinLeft(array('orders' => $ordersTableMage), "orders.entity_id=main_table.order_id", array('o_increment_id' => 'increment_id'))
73
  ->where("main_table.increment_id NOT IN (SELECT increment_id FROM $invoicesTable WHERE synced=1 OR sents>={$this->getMaxSents()} OR TIMESTAMPDIFF(MINUTE,last_sent_at,'{$now}')<60)")
74
  ->where("orders.increment_id IN (SELECT increment_id FROM $ordersTable WHERE synced=1)")
75
  ->limit($limit)
app/code/community/Intelivemetrics/Unityreports/Model/Sync/ProductVariation_1.php DELETED
@@ -1,165 +0,0 @@
1
- <?php
2
-
3
- class Intelivemetrics_Unityreports_Model_Sync_ProductVariation
4
- extends Intelivemetrics_Unityreports_Model_Sync_Product
5
- implements Intelivemetrics_Unityreports_Model_Sync_Interface {
6
-
7
- const ENTITY_TYPE = 'product_variation';
8
-
9
- /**
10
- * @assert () == true
11
- * @return boolean
12
- */
13
- public function runSync() {
14
- $helper = Mage::helper('unityreports');
15
- if (Mage::getStoreConfig(Intelivemetrics_Unityreports_Model_Config::XML_GENERAL_STATUS) === '0') {
16
- $helper->debug('Sync is deactivated');
17
- return false;
18
- }
19
-
20
- try {
21
- $client = $this->_getClient();
22
-
23
- //get data
24
- $products = $this->_getData(Intelivemetrics_Unityreports_Model_Utils::getMaxItemsPerSync());
25
- if (is_null($products)) {
26
- return self::NOTHING_TO_SYNC;
27
- }
28
-
29
- //get token
30
- $response = json_decode($client->getToken(
31
- $helper->getApiKey(), $helper->getApiSecret(), $helper->getLicenseKey()
32
- ));
33
- if ($response->code != 'OK') {
34
- $helper->debug('Cannot get a valid Token.'.$response->msg);
35
- return false;
36
- }
37
-
38
- //send data
39
- //no multiple sents for this kind of data
40
- $blob = Intelivemetrics_Unityreports_Model_Utils::prepareDataForSending($products);
41
- $response = json_decode($client->post(
42
- $response->msg, array(
43
- 'type' => 'SYNC',
44
- 'data' => $blob,
45
- 'license' => $helper->getLicenseKey(),
46
- 'entity' => self::ENTITY_TYPE
47
- )
48
- ));
49
-
50
- //mark sent items
51
- if($response->code=='OK'){
52
- $this->markSentItems($products);
53
- }
54
-
55
- return true;
56
- } catch (Exception $e) {
57
- $helper->debug($e, Zend_Log::ERR);
58
- return false;
59
- }
60
- }
61
-
62
- /**
63
- * Segna gli oggetti inviati
64
- * @param array $products
65
- */
66
- public function markSentItems(array $products) {
67
- $table = Intelivemetrics_Unityreports_Model_Utils::getTableName('unityreports/products');
68
- $now = date('Y-m-d H:i:s');
69
- try {
70
- foreach ($products as $product) {
71
- $query = "UPDATE $table SET last_sent_at='{$now}' WHERE product_id={$product['id']};";
72
- $this->_getDb()->query($query);
73
- }
74
- } catch (Exception $ex) {
75
- Mage::helper('unityreports')->debug($ex->getMessage(),Zend_Log::ERR);
76
- }
77
- }
78
-
79
- /**
80
- * Salva oggetti sincronizzati
81
- * @param type $response
82
- */
83
- public function saveSyncedItems($response) {
84
- $helper = Mage::helper('unityreports');
85
- $table = Intelivemetrics_Unityreports_Model_Utils::getTableName('unityreports/products');
86
- try {
87
- $json = Zend_Json::decode($response);
88
- foreach ($json['msg'] as $productId) {
89
- $now = date('Y-m-d H:i:s');
90
- $query = "UPDATE $table SET synced_at='{$now}' WHERE product_id={$productId}";
91
- $this->_getDb()->query($query);
92
- }
93
- $counter = (int) count($json['msg']);
94
- $helper->debug("Sincronizzati $counter variazioni prodotti");
95
- } catch (Exception $ex) {
96
- Mage::helper('unityreports')->debug($ex->getMessage(),Zend_Log::ERR);
97
- }
98
- }
99
-
100
- /**
101
- * Esegue recupero dati degli prodotti
102
- *
103
- * @param int $max_records numero massimo di records (indicativo)
104
- * @return array associativo contenente i dati
105
- */
106
- protected function _getData( $limit) {
107
- $helper = Mage::helper('unityreports');
108
- $helper->debug(__METHOD__);
109
- $now = date('Y-m-d H:i:s');
110
- try {
111
- //set store to admin otherwise it will use flat tables
112
- $adminStore = Mage_Core_Model_App::ADMIN_STORE_ID;
113
- Mage::app()->setCurrentStore($adminStore);
114
-
115
- $collection = Mage::getModel('catalog/product')->getCollection()
116
- ->addAttributeToSelect(array('updated_at','visibility','status'))
117
- ->addAttributeToSort('updated_at', 'ASC');
118
- //add price
119
- $collection->joinAttribute('price', 'catalog_product/price', 'entity_id', null, 'left', $adminStore);
120
- //add stock
121
- $collection->joinField('qty',
122
- 'cataloginventory/stock_item',
123
- 'qty',
124
- 'product_id=entity_id',
125
- '{{table}}.stock_id=1',
126
- 'left');
127
- //filter updated
128
- $table = Intelivemetrics_Unityreports_Model_Utils::getTableName('unityreports/products');
129
- $collection->joinField('synced_at',
130
- $table,
131
- 'synced_at',
132
- 'product_id=entity_id',
133
- "{{table}}.synced=1 AND e.updated_at > {{table}}.synced_at AND TIMESTAMPDIFF(MINUTE,last_sent_at,'{$now}')>60",
134
- 'inner');
135
- $helper->debug($collection->getSelectSql()->__toString());
136
-
137
- // se non ci sono record, esce
138
- if (count($collection) == 0) {
139
- $helper->debug('No product data found to sync');
140
- return null;
141
- }
142
-
143
- // processa gli ordini trovati
144
- $prodData = array();
145
- foreach ($collection as $product) {
146
- $prodData["item_" . $product->getEntityId()] = array(
147
- 'id' => $product->getId(),
148
- 'updated_at' => $product->getUpdatedAt(),
149
- 'price' => $product->getData('price'),
150
- 'qty' => $product->getData('qty'),
151
- 'visibility' => $this->_isVisible($product->getVisibility()),
152
- 'status' => $this->_isEnabled($product->getStatus()),
153
- );
154
- }
155
-
156
- return $prodData;
157
- } catch (Exception $ex) {
158
- $helper->debug($ex->getMessage(), Zend_Log::ERR);
159
- return null;
160
- }
161
- }
162
-
163
- }
164
-
165
- ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/code/community/Intelivemetrics/Unityreports/etc/config.xml CHANGED
@@ -2,7 +2,7 @@
2
  <config>
3
  <modules>
4
  <Intelivemetrics_Unityreports>
5
- <version>0.7.0</version>
6
  </Intelivemetrics_Unityreports>
7
  </modules>
8
  <global>
2
  <config>
3
  <modules>
4
  <Intelivemetrics_Unityreports>
5
+ <version>0.7.1</version>
6
  </Intelivemetrics_Unityreports>
7
  </modules>
8
  <global>
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Intelivemetrics_Unityreports</name>
4
- <version>0.7.0</version>
5
  <stability>stable</stability>
6
  <license uri="http://choosealicense.com/licenses/apache-2.0/">APACHE</license>
7
  <channel>community</channel>
@@ -10,11 +10,11 @@
10
  <description>Unityreports brings powerful e-commerce analytics by combining Magento, Google Analytics and Google Adwords data.&#xD;
11
  http://www.unityreports.com&#xD;
12
  </description>
13
- <notes>This is the first release of the Unityreports connector for Magento</notes>
14
  <authors><author><name>Eduard G. Dumitrescu</name><user>bregoiu</user><email>eddie.dumitrescu@gmail.com</email></author></authors>
15
- <date>2014-10-08</date>
16
- <time>08:03:01</time>
17
- <contents><target name="magecommunity"><dir name="Intelivemetrics"><dir name="Unityreports"><dir name="Block"><dir name="Adminhtml"><dir name="Button"><file name="Test.php" hash="f23e261d8cf7ef8314f121978b3b03d3"/></dir><dir name="Label"><file name="Renderer.php" hash="89a6ec5dddca5fcf86fbe85b83d87650"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="7fe1e1e75ce0aca62eedbe3962389943"/></dir><dir name="Model"><dir name="Admin"><dir name="Status"><file name="Active.php" hash="28d46ddb38425dcdddf34a694fcbcd84"/><dir name="Cron"><file name="Count.php" hash="8f8de0b781e5889c63b508dcba24532b"/><file name="GlobalCounters.php" hash="7b89f230d9a4fbd65bbf1dd87fd2d196"/><file name="Mage.php" hash="922159223ba73f6ecb4cb019595009f4"/><file name="Stat.php" hash="64e4b605214a0a966adada181d413d79"/><file name="Sync.php" hash="ab2313a6949823565001b9787a1a255a"/></dir><file name="Cron.php" hash="2f5e7a78dcdf1f593d239851316787cf"/></dir></dir><file name="Config.php" hash="590dd9e3939f58560d9b004763d48c05"/><dir name="Cron"><file name="Count.php" hash="02451c1d9462fe1e8c43137482b4230e"/><file name="GlobalCounters.php" hash="c55ce27f8ea8c9a22b22053ae3715bff"/><file name="Request.php" hash="ddad229d8713a6756ceb7e3af7262185"/><file name="Sync.php" hash="fb059fcef6b5ae42ec8fe2506197136e"/></dir><file name="Cron.php" hash="51f800a9c3c0ab0acdcda3aa9ba51104"/><file name="Customer.php" hash="c99b23d2ec6ffd8acdcc11cf7ed6421e"/><file name="Observer.php" hash="3d12f55e967c546a8a94e2cdb5c11a7f"/><dir name="Request"><file name="Base.php" hash="2c3fea1af836bedb205786d67465b97d"/><file name="Diagnose.php" hash="5b105c38c1e9f241c7868f607b6448f3"/><file name="GetCounters.php" hash="58350a26c70f552349a1eac4a29bb729"/><file name="HandShake.php" hash="8c1fb4cfef7fd9c7fb91ccc2c9503260"/><file name="Interface.php" hash="680707fa0a26ecd7237d116bc0b0a3da"/><file name="ResetAbcarts.php" hash="facdc1c2486398a2a62db126c8518174"/><file name="ResetAll.php" hash="b2533da935c5c66f741490f7f082c8df"/><file name="ResetCustomers.php" hash="570aff03d862608cea5e09ded7e7fd9b"/><file name="ResetOrders.php" hash="605b78d998f1ea63bfe047afda07fa5c"/><file name="ResetProducts.php" hash="15279aaff10b4141143eefd08061eb4f"/><file name="SetSpeed.php" hash="48496a1971c80fdaa689e0d65d0acd16"/><file name="StartSync.php" hash="30d94be6608c4bce5cebb114ad241fdb"/><file name="StopSync.php" hash="61fb6758c1600eed20c40e4ec28fcef1"/><file name="SyncResult.php" hash="c2f9893e2a083f9c792bc43a212196e4"/></dir><dir name="Resource"><dir name="Config"><file name="Collection.php" hash="dc7cc10daf7e597be061d7bf841d0f66"/></dir><file name="Config.php" hash="e3f733d66219ffc946a1b3cd5eca980d"/><file name="Setup.php" hash="2f7cb85c64bd6103faf9208c7d5f451f"/></dir><dir name="Sync"><file name="Abcart.php" hash="154afdc798017a7d9b041ba397e1b72b"/><file name="Creditnote.php" hash="5481a5e2113a0c7b47011e4de4df6467"/><file name="Customer.php" hash="b49c41bf3a310a1b874f0498b4863af7"/><file name="CustomerAction.php" hash="160ace0a2e9fa8e28ce522f0d03db25d"/><file name="Interface.php" hash="d74a42d2d34c34ce8ec3379bb220127f"/><file name="Invoice.php" hash="a1f6ee0c54cc231840bb97ba979216b7"/><file name="Order.php" hash="00481beb01499353ccec0589178f626a"/><file name="Product.php" hash="e2ccb7f50d2acbaca1220c86d51cca27"/><file name="ProductVariation.php" hash="c3042550b9849335c1af13cc26d61504"/><file name="ProductVariation_1.php" hash="fb0ccdaa623b851bb8568a89f5c37563"/></dir><file name="Sync.php" hash="a2f9ebc7a59f82b5b044d7a2fe4db63e"/><file name="Utils.php" hash="911a0d029646f3c6ed69c812b472afe4"/><file name="Utmz.php" hash="5c3dd712ffba8c7a91641b1aefae47e4"/></dir><dir name="controllers"><file name="IndexController.php" hash="c50f956666fda96b85c09fc6e9ef0506"/></dir><dir name="etc"><file name="adminhtml.xml" hash="aab2ef0e4aedb050d8b60937a085537c"/><file name="config.xml" hash="44c8f513247a4e0ac01670f138e770a9"/><file name="system.xml" hash="dd6cee8070b16c894b64f1b7d84a4571"/></dir><dir name="sql"><dir name="unityreports_setup"><file name="mysql4-install-0.6.2.php" hash="f427ceee6b905822efecf50ad81fdbaf"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Intelivemetrics_Unityreports.xml" hash="ccb9d92196bbc626b5552746ac3ad08b"/></dir></target></contents>
18
  <compatible/>
19
  <dependencies><required><php><min>5.1.0</min><max>7.0.0</max></php></required></dependencies>
20
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Intelivemetrics_Unityreports</name>
4
+ <version>0.7.1</version>
5
  <stability>stable</stability>
6
  <license uri="http://choosealicense.com/licenses/apache-2.0/">APACHE</license>
7
  <channel>community</channel>
10
  <description>Unityreports brings powerful e-commerce analytics by combining Magento, Google Analytics and Google Adwords data.&#xD;
11
  http://www.unityreports.com&#xD;
12
  </description>
13
+ <notes>Fixes table prefix issue in orders export</notes>
14
  <authors><author><name>Eduard G. Dumitrescu</name><user>bregoiu</user><email>eddie.dumitrescu@gmail.com</email></author></authors>
15
+ <date>2014-10-20</date>
16
+ <time>08:17:08</time>
17
+ <contents><target name="magecommunity"><dir name="Intelivemetrics"><dir name="Unityreports"><dir name="Block"><dir name="Adminhtml"><dir name="Button"><file name="Test.php" hash="f23e261d8cf7ef8314f121978b3b03d3"/></dir><dir name="Label"><file name="Renderer.php" hash="89a6ec5dddca5fcf86fbe85b83d87650"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="7fe1e1e75ce0aca62eedbe3962389943"/></dir><dir name="Model"><dir name="Admin"><dir name="Status"><file name="Active.php" hash="28d46ddb38425dcdddf34a694fcbcd84"/><dir name="Cron"><file name="Count.php" hash="8f8de0b781e5889c63b508dcba24532b"/><file name="GlobalCounters.php" hash="7b89f230d9a4fbd65bbf1dd87fd2d196"/><file name="Mage.php" hash="922159223ba73f6ecb4cb019595009f4"/><file name="Stat.php" hash="64e4b605214a0a966adada181d413d79"/><file name="Sync.php" hash="ab2313a6949823565001b9787a1a255a"/></dir><file name="Cron.php" hash="2f5e7a78dcdf1f593d239851316787cf"/></dir></dir><file name="Config.php" hash="590dd9e3939f58560d9b004763d48c05"/><dir name="Cron"><file name="Count.php" hash="02451c1d9462fe1e8c43137482b4230e"/><file name="GlobalCounters.php" hash="c55ce27f8ea8c9a22b22053ae3715bff"/><file name="Request.php" hash="ddad229d8713a6756ceb7e3af7262185"/><file name="Sync.php" hash="fb059fcef6b5ae42ec8fe2506197136e"/></dir><file name="Cron.php" hash="51f800a9c3c0ab0acdcda3aa9ba51104"/><file name="Customer.php" hash="c99b23d2ec6ffd8acdcc11cf7ed6421e"/><file name="Observer.php" hash="c36e97e582093a3d901811c4fa738aee"/><dir name="Request"><file name="Base.php" hash="2c3fea1af836bedb205786d67465b97d"/><file name="Diagnose.php" hash="5b105c38c1e9f241c7868f607b6448f3"/><file name="GetCounters.php" hash="58350a26c70f552349a1eac4a29bb729"/><file name="HandShake.php" hash="8c1fb4cfef7fd9c7fb91ccc2c9503260"/><file name="Interface.php" hash="680707fa0a26ecd7237d116bc0b0a3da"/><file name="ResetAbcarts.php" hash="facdc1c2486398a2a62db126c8518174"/><file name="ResetAll.php" hash="b2533da935c5c66f741490f7f082c8df"/><file name="ResetCustomers.php" hash="570aff03d862608cea5e09ded7e7fd9b"/><file name="ResetOrders.php" hash="605b78d998f1ea63bfe047afda07fa5c"/><file name="ResetProducts.php" hash="15279aaff10b4141143eefd08061eb4f"/><file name="SetSpeed.php" hash="48496a1971c80fdaa689e0d65d0acd16"/><file name="StartSync.php" hash="30d94be6608c4bce5cebb114ad241fdb"/><file name="StopSync.php" hash="61fb6758c1600eed20c40e4ec28fcef1"/><file name="SyncResult.php" hash="c2f9893e2a083f9c792bc43a212196e4"/></dir><dir name="Resource"><dir name="Config"><file name="Collection.php" hash="dc7cc10daf7e597be061d7bf841d0f66"/></dir><file name="Config.php" hash="e3f733d66219ffc946a1b3cd5eca980d"/><file name="Setup.php" hash="2f7cb85c64bd6103faf9208c7d5f451f"/></dir><dir name="Sync"><file name="Abcart.php" hash="154afdc798017a7d9b041ba397e1b72b"/><file name="Creditnote.php" hash="6485779bff48de00a9ba0960c906cf9f"/><file name="Customer.php" hash="b49c41bf3a310a1b874f0498b4863af7"/><file name="CustomerAction.php" hash="160ace0a2e9fa8e28ce522f0d03db25d"/><file name="Interface.php" hash="d74a42d2d34c34ce8ec3379bb220127f"/><file name="Invoice.php" hash="3fd8fd3caa22f3202facb9c1c002ee32"/><file name="Order.php" hash="00481beb01499353ccec0589178f626a"/><file name="Product.php" hash="e2ccb7f50d2acbaca1220c86d51cca27"/><file name="ProductVariation.php" hash="c3042550b9849335c1af13cc26d61504"/></dir><file name="Sync.php" hash="a2f9ebc7a59f82b5b044d7a2fe4db63e"/><file name="Utils.php" hash="911a0d029646f3c6ed69c812b472afe4"/><file name="Utmz.php" hash="5c3dd712ffba8c7a91641b1aefae47e4"/></dir><dir name="controllers"><file name="IndexController.php" hash="c50f956666fda96b85c09fc6e9ef0506"/></dir><dir name="etc"><file name="adminhtml.xml" hash="aab2ef0e4aedb050d8b60937a085537c"/><file name="config.xml" hash="469ccd656eb6e0d323d44cf4a7feaee7"/><file name="system.xml" hash="dd6cee8070b16c894b64f1b7d84a4571"/></dir><dir name="sql"><dir name="unityreports_setup"><file name="mysql4-install-0.6.2.php" hash="f427ceee6b905822efecf50ad81fdbaf"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Intelivemetrics_Unityreports.xml" hash="ccb9d92196bbc626b5552746ac3ad08b"/></dir></target></contents>
18
  <compatible/>
19
  <dependencies><required><php><min>5.1.0</min><max>7.0.0</max></php></required></dependencies>
20
  </package>