Ewave_Quicksales - Version 1.4.2

Version Notes

Quicksales Integration

Download this release

Release Info

Developer Fatima Said
Extension Ewave_Quicksales
Version 1.4.2
Comparing to
See all releases


Code changes from version 1.3.5 to 1.4.2

Files changed (28) hide show
  1. app/code/community/Ewave/Quicksales/Block/Adminhtml/Listing/Edit/Tab/.Attributes.php.swp +0 -0
  2. app/code/community/Ewave/Quicksales/Block/Adminhtml/Listing/Edit/Tab/Additional/.Step1.php.swo +0 -0
  3. app/code/community/Ewave/Quicksales/Block/Adminhtml/Listing/Edit/Tab/Additional/.Step1.php.swp +0 -0
  4. app/code/community/Ewave/Quicksales/Block/Adminhtml/Listing/Edit/Tab/Additional/Step2/Renderer/Category.php +1 -1
  5. app/code/community/Ewave/Quicksales/Block/Adminhtml/Listing/Edit/Tab/Attributes.php +1 -1
  6. app/code/community/Ewave/Quicksales/Block/Adminhtml/Listing/Log/.Grid.php.swp +0 -0
  7. app/code/community/Ewave/Quicksales/Model/.Api.php.swp +0 -0
  8. app/code/community/Ewave/Quicksales/Model/Api/Action.php +2 -1
  9. app/code/community/Ewave/Quicksales/Model/Api/Createitem.php +10 -3
  10. app/code/community/Ewave/Quicksales/Model/Api/Getitem.php +1 -1
  11. app/code/community/Ewave/Quicksales/Model/Api/Getorders.php +5 -3
  12. app/code/community/Ewave/Quicksales/Model/Api/Sendinvoice.php +1 -1
  13. app/code/community/Ewave/Quicksales/Model/Api/Updateorder.php +1 -1
  14. app/code/community/Ewave/Quicksales/Model/Payment/Method/Quicksales.php +1 -0
  15. app/code/community/Ewave/Quicksales/etc/config.xml +1 -1
  16. app/code/community/Ewave/Quicksales/etc/system.xml +4 -4
  17. app/code/community/Ewave/Quicksales/sql/quicksales_setup/mysql4-upgrade-1.2.13-1.2.14.php +0 -2
  18. app/code/community/Ewave/Quicksales/sql/quicksales_setup/mysql4-upgrade-1.2.28-1.2.29.php +15 -12
  19. app/code/community/Ewave/Quicksales/sql/quicksales_setup/mysql4-upgrade-1.2.33-1.3.1.php +15 -12
  20. app/code/community/Ewave/Quicksales/sql/quicksales_setup/mysql4-upgrade-1.3.5-1.3.6.php +6 -0
  21. app/code/community/Ewave/Quicksales/sql/quicksales_setup/mysql4-upgrade-1.3.6-1.3.7.php +6 -0
  22. app/code/community/Ewave/Quicksales/sql/quicksales_setup/mysql4-upgrade-1.3.7-1.3.8.php +6 -0
  23. app/code/community/Ewave/Quicksales/sql/quicksales_setup/mysql4-upgrade-1.3.8-1.3.9.php +6 -0
  24. app/code/community/Ewave/Quicksales/sql/quicksales_setup/mysql4-upgrade-1.3.9-1.4.0.php +6 -0
  25. app/code/community/Ewave/Quicksales/sql/quicksales_setup/mysql4-upgrade-1.4.0-1.4.1.php +6 -0
  26. app/code/community/Ewave/Quicksales/sql/quicksales_setup/mysql4-upgrade-1.4.1-1.4.2.php +6 -0
  27. js/quicksales/adminhtml/categories.js +5 -0
  28. package.xml +20 -20
app/code/community/Ewave/Quicksales/Block/Adminhtml/Listing/Edit/Tab/.Attributes.php.swp DELETED
Binary file
app/code/community/Ewave/Quicksales/Block/Adminhtml/Listing/Edit/Tab/Additional/.Step1.php.swo DELETED
Binary file
app/code/community/Ewave/Quicksales/Block/Adminhtml/Listing/Edit/Tab/Additional/.Step1.php.swp DELETED
Binary file
app/code/community/Ewave/Quicksales/Block/Adminhtml/Listing/Edit/Tab/Additional/Step2/Renderer/Category.php CHANGED
@@ -61,7 +61,7 @@ class Ewave_Quicksales_Block_Adminhtml_Listing_Edit_Tab_Additional_Step2_Rendere
61
  }
62
 
63
 
64
- return '<span id="category_label">' . $currentCategoryLabel . '</span>' . $hidden->toHtml() . $changeButton->toHtml() . $html . $applyButton->toHtml();
65
  }
66
 
67
  }
61
  }
62
 
63
 
64
+ return '<span id="category_label">' . $currentCategoryLabel . '</span>' . $hidden->toHtml() . $changeButton->toHtml() . '<br />' . $html . '<br />' . $applyButton->toHtml();
65
  }
66
 
67
  }
app/code/community/Ewave/Quicksales/Block/Adminhtml/Listing/Edit/Tab/Attributes.php CHANGED
@@ -142,7 +142,7 @@ class Ewave_Quicksales_Block_Adminhtml_Listing_Edit_Tab_Attributes extends Mage_
142
  $form->addValues($values);
143
  $form->setFieldNameSuffix('listing');
144
 
145
- Mage::dispatchEvent('adminhtml_catalog_product_edit_prepare_form', array('form' => $form));
146
 
147
  $this->setForm($form);
148
  }
142
  $form->addValues($values);
143
  $form->setFieldNameSuffix('listing');
144
 
145
+ Mage::dispatchEvent('ewave_quicksales_listing_edit_prepare_form', array('form' => $form));
146
 
147
  $this->setForm($form);
148
  }
app/code/community/Ewave/Quicksales/Block/Adminhtml/Listing/Log/.Grid.php.swp DELETED
Binary file
app/code/community/Ewave/Quicksales/Model/.Api.php.swp DELETED
Binary file
app/code/community/Ewave/Quicksales/Model/Api/Action.php CHANGED
@@ -42,7 +42,7 @@ class Ewave_Quicksales_Model_Api_Action extends Mage_Core_Model_Abstract
42
 
43
  $listing_log = Mage::getModel('quicksales/listing_log');
44
 
45
- $date = time();
46
  $listing_log
47
  ->setListingId($listing->getId())
48
  ->setDate($date);
@@ -117,6 +117,7 @@ class Ewave_Quicksales_Model_Api_Action extends Mage_Core_Model_Abstract
117
  $result = 0;
118
  } else {
119
  $this->_updated++;
 
120
  }
121
 
122
  $message .= $resultInformation['Message'];
42
 
43
  $listing_log = Mage::getModel('quicksales/listing_log');
44
 
45
+ $date = Zend_Date::now()->toString(Varien_Date::DATETIME_INTERNAL_FORMAT);
46
  $listing_log
47
  ->setListingId($listing->getId())
48
  ->setDate($date);
117
  $result = 0;
118
  } else {
119
  $this->_updated++;
120
+ $result = 1;
121
  }
122
 
123
  $message .= $resultInformation['Message'];
app/code/community/Ewave/Quicksales/Model/Api/Createitem.php CHANGED
@@ -57,7 +57,7 @@ class Ewave_Quicksales_Model_Api_Createitem extends Mage_Core_Model_Abstract
57
 
58
  $listing_log = Mage::getModel('quicksales/listing_log');
59
 
60
- $date = time();
61
  $listing_log
62
  ->setListingId($listing->getId())
63
  ->setDate($date);
@@ -513,8 +513,15 @@ class Ewave_Quicksales_Model_Api_Createitem extends Mage_Core_Model_Abstract
513
  $this->_updated++;
514
  }
515
 
516
- $listing_product->setQuicksaleListingId($resultInformation['ListingID']);
517
- $listing_product->save();
 
 
 
 
 
 
 
518
  } else {
519
  $this->_errors++;
520
  $result = 0;
57
 
58
  $listing_log = Mage::getModel('quicksales/listing_log');
59
 
60
+ $date = Zend_Date::now()->toString(Varien_Date::DATETIME_INTERNAL_FORMAT);
61
  $listing_log
62
  ->setListingId($listing->getId())
63
  ->setDate($date);
513
  $this->_updated++;
514
  }
515
 
516
+ if (!empty($resultInformation['ListingID'])) {
517
+ $listing_product->setQuicksaleListingId($resultInformation['ListingID']);
518
+ $listing_product->save();
519
+ $result = 1;
520
+ } else {
521
+ $listing_product->delete();
522
+ $result = 0;
523
+ }
524
+
525
  } else {
526
  $this->_errors++;
527
  $result = 0;
app/code/community/Ewave/Quicksales/Model/Api/Getitem.php CHANGED
@@ -41,7 +41,7 @@ class Ewave_Quicksales_Model_Api_Getitem extends Mage_Core_Model_Abstract
41
 
42
  $listing_log = Mage::getModel('quicksales/listing_log');
43
 
44
- $date = time();
45
  $listing_log
46
  ->setListingId($data->getListingId())
47
  ->setDate($date);
41
 
42
  $listing_log = Mage::getModel('quicksales/listing_log');
43
 
44
+ $date = Zend_Date::now()->toString(Varien_Date::DATETIME_INTERNAL_FORMAT);
45
  $listing_log
46
  ->setListingId($data->getListingId())
47
  ->setDate($date);
app/code/community/Ewave/Quicksales/Model/Api/Getorders.php CHANGED
@@ -54,7 +54,7 @@ class Ewave_Quicksales_Model_Api_Getorders extends Mage_Core_Model_Abstract
54
 
55
  $this->_listing_log = Mage::getModel('quicksales/listing_log');
56
 
57
- $date = time();
58
 
59
  $this->_listing_log
60
  ->setType(3)
@@ -164,6 +164,9 @@ class Ewave_Quicksales_Model_Api_Getorders extends Mage_Core_Model_Abstract
164
  $skeepOrder = true;
165
  break;
166
  } elseif ($oldStatus == 'pending' && ((string)$Transaction->CheckoutDetails->CheckoutID != '')) {
 
 
 
167
  $skeepOrder = true;
168
  break;
169
  }
@@ -429,8 +432,7 @@ class Ewave_Quicksales_Model_Api_Getorders extends Mage_Core_Model_Abstract
429
 
430
  $quoteItem = Mage::getModel('sales/quote_item')->setProduct($productObj);
431
 
432
- $quoteItem->setQty((string)$item->QuantitySold);
433
-
434
 
435
  $customerName = explode(' ', (string)$item->CheckoutDetails->ShippingDetails->Name);
436
 
54
 
55
  $this->_listing_log = Mage::getModel('quicksales/listing_log');
56
 
57
+ $date = Zend_Date::now()->toString(Varien_Date::DATETIME_INTERNAL_FORMAT);
58
 
59
  $this->_listing_log
60
  ->setType(3)
164
  $skeepOrder = true;
165
  break;
166
  } elseif ($oldStatus == 'pending' && ((string)$Transaction->CheckoutDetails->CheckoutID != '')) {
167
+ $skeepOrder = true;
168
+ break;
169
+ } elseif ((!empty($invoiceId) && $order->getQuicksalesOrderId() == $invoiceId) || !$order->canCancel()) {
170
  $skeepOrder = true;
171
  break;
172
  }
432
 
433
  $quoteItem = Mage::getModel('sales/quote_item')->setProduct($productObj);
434
 
435
+ $quoteItem->setData('qty', (int)$item->QuantitySold);
 
436
 
437
  $customerName = explode(' ', (string)$item->CheckoutDetails->ShippingDetails->Name);
438
 
app/code/community/Ewave/Quicksales/Model/Api/Sendinvoice.php CHANGED
@@ -79,7 +79,7 @@ class Ewave_Quicksales_Model_Api_Sendinvoice extends Mage_Core_Model_Abstract
79
 
80
  $listing_log = Mage::getModel('quicksales/listing_log');
81
 
82
- $date = time();
83
  $rez = 1;
84
 
85
  $listing_log
79
 
80
  $listing_log = Mage::getModel('quicksales/listing_log');
81
 
82
+ $date = Zend_Date::now()->toString(Varien_Date::DATETIME_INTERNAL_FORMAT);
83
  $rez = 1;
84
 
85
  $listing_log
app/code/community/Ewave/Quicksales/Model/Api/Updateorder.php CHANGED
@@ -51,7 +51,7 @@ class Ewave_Quicksales_Model_Api_Updateorder extends Mage_Core_Model_Abstract
51
 
52
  $listing_log = Mage::getModel('quicksales/listing_log');
53
 
54
- $date = time();
55
  $rez = 1;
56
 
57
  $listing_log
51
 
52
  $listing_log = Mage::getModel('quicksales/listing_log');
53
 
54
+ $date = Zend_Date::now()->toString(Varien_Date::DATETIME_INTERNAL_FORMAT);
55
  $rez = 1;
56
 
57
  $listing_log
app/code/community/Ewave/Quicksales/Model/Payment/Method/Quicksales.php CHANGED
@@ -4,6 +4,7 @@ class Ewave_Quicksales_Model_Payment_Method_Quicksales extends Mage_Payment_Mode
4
  {
5
  protected $_code = 'quicksales';
6
  protected $_canCapture = true;
 
7
  //protected $_formBlockType = 'payment/form_purchaseorder';
8
  //protected $_infoBlockType = 'payment/info_purchaseorder';
9
 
4
  {
5
  protected $_code = 'quicksales';
6
  protected $_canCapture = true;
7
+ protected $_canUseCheckout = false;
8
  //protected $_formBlockType = 'payment/form_purchaseorder';
9
  //protected $_infoBlockType = 'payment/info_purchaseorder';
10
 
app/code/community/Ewave/Quicksales/etc/config.xml CHANGED
@@ -3,7 +3,7 @@
3
 
4
  <modules>
5
  <Ewave_Quicksales>
6
- <version>1.3.5</version>
7
  </Ewave_Quicksales>
8
  </modules>
9
 
3
 
4
  <modules>
5
  <Ewave_Quicksales>
6
+ <version>1.4.2</version>
7
  </Ewave_Quicksales>
8
  </modules>
9
 
app/code/community/Ewave/Quicksales/etc/system.xml CHANGED
@@ -2,17 +2,17 @@
2
  <config>
3
 
4
  <tabs>
5
- <ewave translate="label">
6
  <label>Quicksales</label>
7
  <sort_order>300</sort_order>
8
- </ewave>
9
  </tabs>
10
 
11
  <sections>
12
  <quicksales translate="label" module="quicksales">
13
  <class>separator-top</class>
14
  <label>Main Settings</label>
15
- <tab>ewave</tab>
16
  <frontend_type>text</frontend_type>
17
  <sort_order>45</sort_order>
18
  <show_in_default>1</show_in_default>
@@ -208,7 +208,7 @@
208
  <quicksales_default translate="label" module="quicksales">
209
  <class>separator-top</class>
210
  <label>Default Configuration</label>
211
- <tab>ewave</tab>
212
  <frontend_type>text</frontend_type>
213
  <sort_order>55</sort_order>
214
  <show_in_default>1</show_in_default>
2
  <config>
3
 
4
  <tabs>
5
+ <ewave_quicksales translate="label">
6
  <label>Quicksales</label>
7
  <sort_order>300</sort_order>
8
+ </ewave_quicksales>
9
  </tabs>
10
 
11
  <sections>
12
  <quicksales translate="label" module="quicksales">
13
  <class>separator-top</class>
14
  <label>Main Settings</label>
15
+ <tab>ewave_quicksales</tab>
16
  <frontend_type>text</frontend_type>
17
  <sort_order>45</sort_order>
18
  <show_in_default>1</show_in_default>
208
  <quicksales_default translate="label" module="quicksales">
209
  <class>separator-top</class>
210
  <label>Default Configuration</label>
211
+ <tab>ewave_quicksales</tab>
212
  <frontend_type>text</frontend_type>
213
  <sort_order>55</sort_order>
214
  <show_in_default>1</show_in_default>
app/code/community/Ewave/Quicksales/sql/quicksales_setup/mysql4-upgrade-1.2.13-1.2.14.php CHANGED
@@ -14,7 +14,6 @@ $installer->run("
14
  KEY (`listing_id`),
15
  KEY (`qattribute_id`),
16
  KEY (`mattribute_id`),
17
- CONSTRAINT `FK_LISTING_ATTRIBUTE_ENTITY_LISTING_ID` FOREIGN KEY (`listing_id`) REFERENCES `listing` (`listing_id`) ON DELETE CASCADE ON UPDATE CASCADE,
18
  PRIMARY KEY USING BTREE (`attribute_map_id`)
19
  );
20
  ");
@@ -30,7 +29,6 @@ $installer->run("
30
  KEY (`attribute_map_id`),
31
  KEY (`qattribute_value_id`),
32
  KEY (`mattribute_value_id`),
33
- CONSTRAINT `FK_LISTING_ATTRIBUTE_VALUE_ENTITY_ATTRIBUTE_MAP_ID` FOREIGN KEY (`attribute_map_id`) REFERENCES `listing_attribute` (`attribute_map_id`) ON DELETE CASCADE ON UPDATE CASCADE,
34
  PRIMARY KEY USING BTREE (`attribute_value_map_id`)
35
  );
36
  ");
14
  KEY (`listing_id`),
15
  KEY (`qattribute_id`),
16
  KEY (`mattribute_id`),
 
17
  PRIMARY KEY USING BTREE (`attribute_map_id`)
18
  );
19
  ");
29
  KEY (`attribute_map_id`),
30
  KEY (`qattribute_value_id`),
31
  KEY (`mattribute_value_id`),
 
32
  PRIMARY KEY USING BTREE (`attribute_value_map_id`)
33
  );
34
  ");
app/code/community/Ewave/Quicksales/sql/quicksales_setup/mysql4-upgrade-1.2.28-1.2.29.php CHANGED
@@ -3,19 +3,22 @@
3
  $installer = $this;
4
  $installer->startSetup();
5
 
6
- $status = Mage::getModel('sales/order_status')->load('qpaid');
7
 
8
- $status->setData(
9
- array(
10
- 'status' => 'qpaid',
11
- 'label' => 'QS Paid',
12
- 'state' => 'qpaid',
13
- 'state_label' => 'QS Paid',
14
- )
15
- );
16
 
17
- $status->assignState('qpaid');
 
 
 
 
 
 
 
18
 
19
- $status->save();
20
 
21
- $installer->endSetup();
 
 
 
3
  $installer = $this;
4
  $installer->startSetup();
5
 
6
+ if (Mage::getModel('sales/order_status')->getResource()) {
7
 
8
+ $status = Mage::getModel('sales/order_status')->load('qpaid');
 
 
 
 
 
 
 
9
 
10
+ $status->setData(
11
+ array(
12
+ 'status' => 'qpaid',
13
+ 'label' => 'QS Paid',
14
+ 'state' => 'qpaid',
15
+ 'state_label' => 'QS Paid',
16
+ )
17
+ );
18
 
19
+ $status->assignState('qpaid');
20
 
21
+ $status->save();
22
+ }
23
+
24
+ $installer->endSetup();
app/code/community/Ewave/Quicksales/sql/quicksales_setup/mysql4-upgrade-1.2.33-1.3.1.php CHANGED
@@ -3,19 +3,22 @@
3
  $installer = $this;
4
  $installer->startSetup();
5
 
6
- $status = Mage::getModel('sales/order_status')->load('qnot_checked_out');
7
 
8
- $status->setData(
9
- array(
10
- 'status' => 'qnot_checked_out',
11
- 'label' => 'Not Checked Out',
12
- 'state' => 'qnot_checked_out',
13
- 'state_label' => 'Not Checked Out',
14
- )
15
- );
16
 
17
- $status->assignState('qnot_checked_out');
 
 
 
 
 
 
 
18
 
19
- $status->save();
20
 
21
- $installer->endSetup();
 
 
 
3
  $installer = $this;
4
  $installer->startSetup();
5
 
6
+ if (Mage::getModel('sales/order_status')->getResource()) {
7
 
8
+ $status = Mage::getModel('sales/order_status')->load('qnot_checked_out');
 
 
 
 
 
 
 
9
 
10
+ $status->setData(
11
+ array(
12
+ 'status' => 'qnot_checked_out',
13
+ 'label' => 'Not Checked Out',
14
+ 'state' => 'qnot_checked_out',
15
+ 'state_label' => 'Not Checked Out',
16
+ )
17
+ );
18
 
19
+ $status->assignState('qnot_checked_out');
20
 
21
+ $status->save();
22
+ }
23
+
24
+ $installer->endSetup();
app/code/community/Ewave/Quicksales/sql/quicksales_setup/mysql4-upgrade-1.3.5-1.3.6.php ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
1
+ <?php
2
+
3
+ $installer = $this;
4
+ $installer->startSetup();
5
+
6
+ $installer->endSetup();
app/code/community/Ewave/Quicksales/sql/quicksales_setup/mysql4-upgrade-1.3.6-1.3.7.php ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
1
+ <?php
2
+
3
+ $installer = $this;
4
+ $installer->startSetup();
5
+
6
+ $installer->endSetup();
app/code/community/Ewave/Quicksales/sql/quicksales_setup/mysql4-upgrade-1.3.7-1.3.8.php ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
1
+ <?php
2
+
3
+ $installer = $this;
4
+ $installer->startSetup();
5
+
6
+ $installer->endSetup();
app/code/community/Ewave/Quicksales/sql/quicksales_setup/mysql4-upgrade-1.3.8-1.3.9.php ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
1
+ <?php
2
+
3
+ $installer = $this;
4
+ $installer->startSetup();
5
+
6
+ $installer->endSetup();
app/code/community/Ewave/Quicksales/sql/quicksales_setup/mysql4-upgrade-1.3.9-1.4.0.php ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
1
+ <?php
2
+
3
+ $installer = $this;
4
+ $installer->startSetup();
5
+
6
+ $installer->endSetup();
app/code/community/Ewave/Quicksales/sql/quicksales_setup/mysql4-upgrade-1.4.0-1.4.1.php ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
1
+ <?php
2
+
3
+ $installer = $this;
4
+ $installer->startSetup();
5
+
6
+ $installer->endSetup();
app/code/community/Ewave/Quicksales/sql/quicksales_setup/mysql4-upgrade-1.4.1-1.4.2.php ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
1
+ <?php
2
+
3
+ $installer = $this;
4
+ $installer->startSetup();
5
+
6
+ $installer->endSetup();
js/quicksales/adminhtml/categories.js CHANGED
@@ -57,9 +57,14 @@ CategoryActions.prototype = {
57
  }
58
 
59
  Element.insert(element, {after : select});
 
 
 
 
60
 
61
  new CategoryActions(select, transport.request.url);
62
 
 
63
  } else {
64
  $('apply_category').show();
65
 
57
  }
58
 
59
  Element.insert(element, {after : select});
60
+
61
+ var br = new Element("br");
62
+
63
+ Element.insert(element, {after : br});
64
 
65
  new CategoryActions(select, transport.request.url);
66
 
67
+ $('apply_category').hide();
68
  } else {
69
  $('apply_category').show();
70
 
package.xml CHANGED
@@ -1,34 +1,34 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Ewave_Quicksales</name>
4
- <version>1.3.5</version>
5
  <stability>stable</stability>
6
  <license>GPL</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>Integrate your Magento backend into the quicksales platform. Push products to quicksales and pull orders seamlessly</summary>
10
  <description>&lt;p&gt;This Magento plug in will allow you to push all or selected&#xD;
11
- products to the quicksales platform. It also automatically retrieves orders from&#xD;
12
- quicksales and creates these orders in your Magento backend. Just process them like&#xD;
13
- you would a normal order.&lt;/p&gt;&#xD;
14
- &#xD;
15
- &lt;p&gt;&#xD;
16
- &lt;b&gt;Main Features&lt;/b&gt;&lt;/p&gt;&#xD;
17
- &lt;ul&gt;&#xD;
18
- &lt;br /&gt;&#xD;
19
- Create Listings from Magento using Product Catalogue&lt;br /&gt; &#xD;
20
- Upgrade quicksales listings through Magento&lt;br /&gt;&#xD;
21
- Manage quicksales listings in Magento (Relist, Stop)&lt;br /&gt; &#xD;
22
- Import quicksales customer details into Magento's database&lt;br /&gt;&#xD;
23
- Process quicksales orders from Magento's backend&lt;br /&gt;&#xD;
24
- Default Configuration Options&lt;br /&gt; &#xD;
25
- Listing Specific Configuration Options&lt;br /&gt; &#xD;
26
- Listings are FREE&lt;br /&gt; </description>
27
  <notes>Quicksales Integration</notes>
28
  <authors><author><name>Fatima Said</name><user>fatimamade</user><email>info@madebyewave.com</email></author></authors>
29
- <date>2012-06-18</date>
30
- <time>07:18:23</time>
31
- <contents><target name="magecommunity"><dir name="Ewave"><dir name="Quicksales"><dir name="Block"><dir name="Adminhtml"><dir name="Listing"><dir name="Edit"><dir name="Tab"><dir name="Additional"><dir name="Step1"><dir name="Grid"><dir name="Renderer"><file name="Checkbox.php" hash="612e77cc461db7cb50a3141d06fc9435"/></dir></dir><file name="Grid.php" hash="12e9570da559712a59bf4f6ff2ff6150"/><dir name="Renderer"><file name="Status.php" hash="e5645949538a2402e49c60c00efc040f"/></dir></dir><file name="Step1.php" hash="60b50b2c8c81e423a38bdda161c73665"/><dir name="Step2"><file name="Depended.php" hash="4985977e2bcfecc477e7df9c5a59e216"/><dir name="Renderer"><file name="Category.php" hash="53ecb8b2e482dd5e2dcca5bc550be760"/><file name="Depended.php" hash="4814a2169b96d77acadcb474e766abd4"/><file name="Vshopcategory.php" hash="12b2bcbcce7d48890ecec9e720f509b8"/></dir></dir><file name="Step2.php" hash="127e4fe60a83efee38e109087e2a204f"/><dir name="Step3"><file name="Attributes.php" hash="28f5d623b1c592cb95bad176dd6a05a8"/></dir><file name="Step3.php" hash="6a76689aaa190f5c8e0a5abd61fb96b1"/><file name=".Step1.php.swo" hash="699279bc79b42b81daecc13614859ee4"/><file name=".Step1.php.swp" hash="8ce6d81caadfeed322a91172985bdb53"/></dir><file name="Attributes.php" hash="159f6790020e1ec4b7b77ccafc74429d"/><file name=".Attributes.php.swp" hash="b4f2e65ddc834ae7500eaedd18130ad9"/></dir><file name="Tabs.php" hash="69543da7a4afa619d951b312e3d286b1"/></dir><file name="Edit.php" hash="2bdf67b7be35772ab14715bd2da1f257"/><file name="Grid.php" hash="8b13e2245ff863b3e5cb4f3dfbbe988f"/><dir name="Log"><file name="Grid.php" hash="eb6c5ba41af25c4535809466d14a7cbd"/><file name=".Grid.php.swp" hash="dc64a97f0ac6bc304e1c10a90009d3b5"/></dir><file name="Log.php" hash="b12a8a5b0119ee535d2d4245fb8aed48"/><dir name="Product"><dir name="Log"><file name="Grid.php" hash="bd275ef1fa0d19257ff0f81b6baded9c"/></dir><file name="Log.php" hash="5e69ba73c54e1181b9fd8d015bf15410"/></dir></dir><file name="Listing.php" hash="87592bd2da3bd09ca18b473e101853a1"/><dir name="Log"><dir name="Grid"><dir name="Column"><dir name="Renderer"><file name="Action.php" hash="18e5897df977ea3156905423dda69fad"/></dir></dir></dir><file name="Grid.php" hash="84fad5108af4229ba2fcadb63b567217"/></dir><file name="Log.php" hash="e8955b492972b3c8f79c8d2b282051ae"/><dir name="Sales"><dir name="Order"><dir name="Payment"><file name="Info.php" hash="d4ee788410f336cba2bcb62e5e339178"/></dir><dir name="View"><dir name="Tab"><file name="Quicksales.php" hash="40f958e04c63cf77a324813bcc2d5c98"/></dir></dir></dir></dir><dir name="System"><dir name="Config"><dir name="Form"><dir name="Field"><file name="Datetime.php" hash="3934885964f9f1f8de0f2cd1c027599e"/><file name="Description.php" hash="8a50abd7433d1e3c55ba04a12da347d3"/><file name="Gst.php" hash="7ae3faa5096159fb32a57d0c1a3f6637"/></dir></dir></dir></dir></dir><dir name="RW"><dir name="Adminhtml"><dir name="Sales"><dir name="Order"><file name="Grid.php" hash="cff441acf7f06ca8db160dc4cd394774"/><file name="Payment.php" hash="cb6ec950bdceafbacb578fea3a4dc10c"/><dir name="View"><dir name="Tab"><file name="Info.php" hash="295ae5cdd5c7fce133a8852126cc9688"/></dir></dir><file name="View.php" hash="a3e25d112227b72a5b810e90202be5a4"/></dir></dir></dir></dir></dir><dir name="CatalogInventory"><dir name="Model"><dir name="Resource"><file name="Stock.php" hash="dd232a80670b248f982f090215f16e70"/></dir><dir name="Stock"><file name="Item.php" hash="1a624d81536e993c4a7d8e164939ff80"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="45d8edf82bc22a0c1eceac2518dfc9c0"/><file name="Listing.php" hash="02b9eb1bc0367e579f8517069897b6d5"/></dir><dir name="Model"><dir name="Api"><file name="Abstract.php" hash="0118cc97f59c72914804b474b93810dd"/><file name="Action.php" hash="85f98d0772e0bab7c1bc5799322fb976"/><file name="Client.php" hash="06f809265cde2d93fde082d06f4cb66a"/><file name="Createitem.php" hash="837e03ee1d37a9dd0de3f332df1bcf0d"/><file name="Getcategories.php" hash="249393ef0ce256daead6e9ffa5d0e323"/><file name="Getitem.php" hash="c832918872fd552da4714f434eb26da2"/><file name="Getorders.php" hash="2b5a54a9266ae00353aa140ee92a9a75"/><file name="Gettags.php" hash="09a3e057e4bbb0a090576295ddf72dd5"/><file name="Getvshopcategory.php" hash="c8887d3bcd2a4aea52e5695bde05ac0d"/><file name="Sendinvoice.php" hash="e01099da302a0b042779fadf47e4090b"/><file name="Updateorder.php" hash="8f0122e1512cc7806571a4e8df73adb7"/></dir><file name="Api.php" hash="d14a6fa9f3c48d8afd1ba1e648f0b1b8"/><dir name="Attribute"><dir name="Backend"><file name="Multiselect.php" hash="4c9778a8a40de5a0d6dad0c94fd1be7a"/></dir></dir><dir name="Catalog"><dir name="Resource"><dir name="Product"><dir name="Type"><dir name="Configurable"><dir name="Attribute"><file name="Collection.php" hash="995afa617df6f915b6642d1120ccceae"/></dir></dir></dir></dir></dir></dir><dir name="Entity"><file name="Setup.php" hash="e3757d878215c95b61d4f3ad2790f06f"/></dir><dir name="Listing"><file name="Action.php" hash="6e57b090c9575a672ceb414d7b40940d"/><dir name="Associated"><dir name="Attribute"><file name="Value.php" hash="dfc31705041aa63542ab2bfb57c3fa6e"/></dir><file name="Attribute.php" hash="934710ab465c4ca478448ea1f019f328"/></dir><dir name="Attribute"><dir name="Backend"><file name="Listing.php" hash="8021d2d56d98c295153a433a243b2cf2"/><file name="Listingupgrade.php" hash="82ea77f38d8ea7972f2b60e7c85006c4"/><file name="Payment.php" hash="7197e6b2c1a179164e2df822a204de27"/><file name="Pricing.php" hash="ac81f5980d223e5ec79f17484f1a7db1"/><file name="Shipping.php" hash="03c586856b3fb756c4ce302a810101f4"/></dir></dir><file name="Log.php" hash="db820db18e8c04d086fa51f2183641ef"/><dir name="Product"><file name="Log.php" hash="fd1f26a1d6f207c52a6deba80ec132f4"/></dir><file name="Product.php" hash="9d1e6d7069831515bc8af8cbe1bc5454"/></dir><file name="Listing.php" hash="9f9e81d3a798b1f8ca10eec38b18590e"/><dir name="Mysql4"><dir name="Listing"><file name="Collection.php" hash="747f3cf02018278d7a5d719a6272025c"/></dir><file name="Listing.php" hash="3ee54318778664a71bf5d59c02f17a03"/></dir><file name="Observer.php" hash="b5d015879d45c0fbcefd2cad88cf807e"/><dir name="Payment"><dir name="Method"><file name="Quicksales.php" hash="872bf3d3c6c6d4c860b339b58a276e19"/></dir></dir><dir name="RW"><dir name="Sales"><dir name="Order"><file name="Shipment.php" hash="b4a0e5553a81ebf3c93a7e5e3a0ad17a"/></dir></dir></dir><dir name="Resource"><dir name="Listing"><dir name="Associated"><dir name="Attribute"><file name="Collection.php" hash="74159fff033230cc555970e0894e3dbd"/><dir name="Value"><file name="Collection.php" hash="df60430323f4ce8bdb8dd9724a8b5341"/></dir><file name="Value.php" hash="72854c83b0b0fde7c8c2cd18641bff90"/></dir><file name="Attribute.php" hash="33f225b6af7b2c19cf5ce5a05add0e4f"/></dir><file name="Collection.php" hash="34e455937a645ed8afbe6796742e4629"/><dir name="Log"><file name="Collection.php" hash="b3704c39dc29ab533ac265700c286444"/></dir><file name="Log.php" hash="36493f3b15e7935427b018977aa29c55"/><dir name="Product"><file name="Collection.php" hash="a9ccc5cc0705a30eade34267dfb30d6a"/><dir name="Log"><file name="Collection.php" hash="9d5b006b35062b0c63b77027a2bd0efc"/></dir><file name="Log.php" hash="2363d496d0bd1bff8a5378d47b146024"/></dir><file name="Product.php" hash="254f4f9e1104c619c7e349c479076568"/></dir><file name="Listing.php" hash="7005031b92e3a6f02e2af6a004156541"/></dir><dir name="Source"><file name="Getcategories.php" hash="44e1ad9156704b2b8dcbaa117c6c0a94"/><file name="Payments.php" hash="8ce9a6818da188308d1e52d14a5a7606"/><file name="Posttolocation.php" hash="6ac9508d1d587124069314ab7eb45920"/><file name="Shipping.php" hash="8aeec89891d2608cfc6ecf3e499a8218"/><file name="Vshopcategory.php" hash="e94a8548091fca00defc828dad2870db"/></dir><dir name="System"><file name="Autorelist.php" hash="55ecf8211df3340298d9f764ac5b2bdd"/><file name="Custom.php" hash="9ea46c68111ac558aadb01d15efa16e7"/><dir name="Customer"><file name="Import.php" hash="316802214006985ec3733a8966116a26"/></dir><file name="Description.php" hash="c1ec9931fd34929461088b60796b3a1b"/><file name="Duration.php" hash="f3916058828e9d036daf8fce673a7c10"/><dir name="Payment"><file name="Method.php" hash="a89ca6af6e29847d726b8e6f1522f159"/></dir><dir name="Price"><file name="Custom.php" hash="b69b7703d7fc71da54d34da75619d703"/></dir><file name="Price.php" hash="83c64351f8dd9a5b0973535f71a0e145"/><file name="Qty.php" hash="b50d5cb12f828736a11b785a87124c9f"/><dir name="Shipping"><file name="Method.php" hash="70354616f1d62de658ca8e5cb0febc61"/><file name="Package.php" hash="e8f3c75db3446134abf6cb20a4b04c72"/><file name="Posttolocation.php" hash="7976db08b7f232038fbe1eb3a16b97d7"/></dir></dir><file name=".Api.php.swp" hash="2653e3557dbdeade4b00cb784247805e"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="ListingController.php" hash="2059467c75f5f21e31c19bd4e7d5e04c"/><file name="LogController.php" hash="cdfe5a2a44160cfcc43dbb8f02789d12"/><file name="OrderController.php" hash="58c99df32639c1c3279e9e825d8f89ce"/></dir><file name="IndexController.php" hash="43e24f364a2405594c03fee4256e20ee"/></dir><dir name="etc"><file name="adminhtml.xml" hash="5656fa1098cc51a6b1489441b815fe27"/><file name="config.xml" hash="4258a38f03f94665e46aa586ef6a2709"/><file name="system.xml" hash="0b4689d43ac99508956fad21f6eaf66a"/></dir><dir name="sql"><dir name="quicksales_setup"><file name="mysql4-install-1.0.0.php" hash="ae886143d2da0214321ae4cbd92027d0"/><file name="mysql4-upgrade-1.0.0-1.1.0.php" hash="522a13ee3806982b8e4bb90e320f00ca"/><file name="mysql4-upgrade-1.1.0-1.2.0.php" hash="bed0ad53c0d65b320f07caba3199eba7"/><file name="mysql4-upgrade-1.2.0-1.2.1.php" hash="5b07273d133b25d8d5c4291178b44270"/><file name="mysql4-upgrade-1.2.1-1.2.2.php" hash="44351c292dd0fbaf81ec9ea5bb208506"/><file name="mysql4-upgrade-1.2.10-1.2.11.php" hash="31fccb02b1db0fde8a2a1e1478be39d7"/><file name="mysql4-upgrade-1.2.11-1.2.12.php" hash="414293f3d6b7f24a86bca36be361aecf"/><file name="mysql4-upgrade-1.2.12-1.2.13.php" hash="df993aed13e25303a7180c3e806ca397"/><file name="mysql4-upgrade-1.2.13-1.2.14.php" hash="5f722437b3e7a4af0af17ead6304228a"/><file name="mysql4-upgrade-1.2.14-1.2.15.php" hash="dfc249d36c655ac1173dd17058a7be59"/><file name="mysql4-upgrade-1.2.15-1.2.16.php" hash="2e1d319752280ae818201a06f894c4e1"/><file name="mysql4-upgrade-1.2.17-1.2.18.php" hash="289dc9d98c36c911088921eb71cd4fa0"/><file name="mysql4-upgrade-1.2.18-1.2.19.php" hash="873bb58b9ec5c2da4d8da6a300fa509c"/><file name="mysql4-upgrade-1.2.19-1.2.20.php" hash="1a305665d4cb0cca63df768b63e9470e"/><file name="mysql4-upgrade-1.2.2-1.2.3.php" hash="2be0aa84f69f5b7d44fc7b7eb1ae3c3e"/><file name="mysql4-upgrade-1.2.22-1.2.23.php" hash="9f611eac715c83c1305c8f3c98eff54e"/><file name="mysql4-upgrade-1.2.23-1.2.24.php" hash="adf3e0aec6fe54a929409ad2d8f4aa9c"/><file name="mysql4-upgrade-1.2.24-1.2.25.php" hash="423f672b3beedd6e2c59c6c484150188"/><file name="mysql4-upgrade-1.2.25-1.2.26.php" hash="2807523f5310438f090b4f492758b21a"/><file name="mysql4-upgrade-1.2.26-1.2.27.php" hash="e7c32ec1f342b21b88f0e76a39795d2e"/><file name="mysql4-upgrade-1.2.27-1.2.28.php" hash="72e4e27c93d52680158f5386e7a6b63a"/><file name="mysql4-upgrade-1.2.28-1.2.29.php" hash="1381a1689b0b9e5495be72cfa487f5c0"/><file name="mysql4-upgrade-1.2.29-1.2.30.php" hash="8ea6ea37aac25b057221871ec99dbb26"/><file name="mysql4-upgrade-1.2.3-1.2.4.php" hash="4bda2413bc7a92dd0ee1363fd42dcd37"/><file name="mysql4-upgrade-1.2.30-1.2.31.php" hash="fee84457a0bd4a87fb55354d375dff5d"/><file name="mysql4-upgrade-1.2.31-1.2.32.php" hash="63a92e0ad3540d7c80d4fa78109f5c93"/><file name="mysql4-upgrade-1.2.32-1.2.33.php" hash="e660753bcf2a112454ffda451c4299ee"/><file name="mysql4-upgrade-1.2.33-1.3.1.php" hash="7c6a7b913319f7d12b911001265e8a69"/><file name="mysql4-upgrade-1.2.4-1.2.5.php" hash="d49c4c95fd5a3db349cdbe95a790ab9a"/><file name="mysql4-upgrade-1.2.5-1.2.6.php" hash="e877d91700d909632cb9d3dcb42ea7b9"/><file name="mysql4-upgrade-1.2.6-1.2.7.php" hash="2b5788963be1be407c183731cd1faa37"/><file name="mysql4-upgrade-1.2.7-1.2.8.php" hash="fdc0aaaa8e97442e5736752571ca682d"/><file name="mysql4-upgrade-1.2.8-1.2.9.php" hash="4926fd7fedf7a7be3eceb1a057d94b4a"/><file name="mysql4-upgrade-1.2.9-1.2.10.php" hash="a65c94a2be422899d23a1c8977595985"/><file name="mysql4-upgrade-1.3.1-1.3.2.php" hash="1074cad3c503e115e5392829d80abfba"/><file name="mysql4-upgrade-1.3.2-1.3.5.php" hash="fe9b5ecaaa7b0c92c8ca71933bf3dcb1"/></dir></dir><dir name="xml"><file name="CreateItem_Request.xml" hash="3434ff3056e34a3e3a1c9d9e8d4ca4bb"/><file name="GetCategoriesWithTags_Request.xml" hash="f1c4558580f4a0c7103ab9318a895eaf"/><file name="GetCategories_Request.xml" hash="345535fbe533ffee4fbc0e750a9d34d0"/><file name="GetCategoryChanges_Request.xml" hash="f106996bc9650db30d4a9f1aa72cf61f"/><file name="GetCategoryVersion_Request.xml" hash="817d8ec4cb476613a1376667b9e70f79"/><file name="GetFeeList_Request.xml" hash="5c9383b8fd56cc8cea443563d1a4a684"/><file name="GetItemIDByRefID_Request.xml" hash="a554bab32ac9af2429521fb55c318f43"/><file name="GetItem_Request.xml" hash="8f072b708501d61b5b536fbb206ae221"/><file name="GetListingAndItemIDs_Request.xml" hash="bcdc9c5870f72530f0cdac42a976051f"/><file name="GetOrders_Request.xml" hash="6c662e867a3cecadcd30aa4846cc9016"/><file name="GetTagsVersion_Request.xml" hash="fc710967591911dd4f68a93f14354337"/><file name="GetTags_Request.xml" hash="dc4f0c2673dd9b7c17b7030bafc3da7c"/><file name="GetvShopCategories_Request.xml" hash="afdb4e215afe828dc515366d680aaa52"/><file name="LeaveRating_Request.xml" hash="13b82cb6e6530f2a178dd7be252ffb2c"/><file name="ReviseItem_Request.xml" hash="67955fce1342e571d42dbf8177e6db92"/><file name="SendInvoice_Request.xml" hash="88b690b77704b8db0d14c58380f41e84"/><file name="UpdateMakeAnOffer_Request.xml" hash="1346733740e45e49ed9738cdd34329d9"/><file name="UpdateOrder_Request.xml" hash="d6e4d3668c3628c35e9778e90bbebb05"/></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="quicksales.xml" hash="c58dd6c400d813e260c9bf8f5754b82f"/></dir><dir name="template"><dir name="quicksales"><dir name="listing"><dir name="edit"><dir name="tab"><dir name="additional"><file name="step1.phtml" hash="dbc1d766799eebddaad777a624b7cc48"/><file name="step2.phtml" hash="dfe166cca93e697bdbeea749b9c2dd1c"/><dir name="step3"><file name="attributes.phtml" hash="228f5edd6704ad5f29f29f6b82d39413"/></dir><file name="step3.phtml" hash="ba061b5739d5cf1463354c0afeacf3ca"/></dir></dir></dir><file name="edit.phtml" hash="53fafe27aebbaadd6ba7c25678c01d99"/></dir><dir name="sales"><dir name="order"><dir name="payment"><file name="info.phtml" hash="41652cd66163ca04c4223474bdc52b5d"/></dir><dir name="view"><dir name="tab"><file name="quicksales.phtml" hash="ee8a87bd24421874a6a36516a872599a"/></dir></dir></dir></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Ewave_Quicksales.xml" hash="04098906a343811aa2d0e2ce93bd33dd"/></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="quicksales"><dir name="css"><file name="quicksales.css" hash="e3bbf915589825e3123d0fd4133ed992"/></dir></dir></dir></dir></dir></target><target name="mageweb"><dir name="js"><dir name="quicksales"><dir name="adminhtml"><file name="categories.js" hash="c44d2af4f614b10b927617fc9ec18d4e"/><file name="listing.js" hash="59bf31dccd6f694170421878bda2531f"/></dir></dir></dir></target></contents>
32
  <compatible/>
33
  <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
34
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Ewave_Quicksales</name>
4
+ <version>1.4.2</version>
5
  <stability>stable</stability>
6
  <license>GPL</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>Integrate your Magento backend into the quicksales platform. Push products to quicksales and pull orders seamlessly</summary>
10
  <description>&lt;p&gt;This Magento plug in will allow you to push all or selected&#xD;
11
+ products to the quicksales platform. It also automatically retrieves orders from&#xD;
12
+ quicksales and creates these orders in your Magento backend. Just process them like&#xD;
13
+ you would a normal order.&lt;/p&gt;&#xD;
14
+ &#xD;
15
+ &lt;p&gt;&#xD;
16
+ &lt;b&gt;Main Features&lt;/b&gt;&lt;/p&gt;&#xD;
17
+ &lt;ul&gt;&#xD;
18
+ &lt;br /&gt;&#xD;
19
+ Create Listings from Magento using Product Catalogue&lt;br /&gt; &#xD;
20
+ Upgrade quicksales listings through Magento&lt;br /&gt;&#xD;
21
+ Manage quicksales listings in Magento (Relist, Stop)&lt;br /&gt; &#xD;
22
+ Import quicksales customer details into Magento's database&lt;br /&gt;&#xD;
23
+ Process quicksales orders from Magento's backend&lt;br /&gt;&#xD;
24
+ Default Configuration Options&lt;br /&gt; &#xD;
25
+ Listing Specific Configuration Options&lt;br /&gt; &#xD;
26
+ Listings are FREE&lt;br /&gt; </description>
27
  <notes>Quicksales Integration</notes>
28
  <authors><author><name>Fatima Said</name><user>fatimamade</user><email>info@madebyewave.com</email></author></authors>
29
+ <date>2013-01-21</date>
30
+ <time>10:58:57</time>
31
+ <contents><target name="mage"><dir name="app"><dir name="etc"><dir name="modules"><file name="Ewave_Quicksales.xml" hash="04098906a343811aa2d0e2ce93bd33dd"/></dir></dir><dir name="code"><dir name="community"><dir name="Ewave"><dir name="Quicksales"><dir><dir name="Block"><dir name="Adminhtml"><dir name="Listing"><dir name="Edit"><dir name="Tab"><dir name="Additional"><dir name="Step1"><dir name="Grid"><dir name="Renderer"><file name="Checkbox.php" hash="612e77cc461db7cb50a3141d06fc9435"/></dir></dir><file name="Grid.php" hash="12e9570da559712a59bf4f6ff2ff6150"/><dir name="Renderer"><file name="Status.php" hash="e5645949538a2402e49c60c00efc040f"/></dir></dir><file name="Step1.php" hash="60b50b2c8c81e423a38bdda161c73665"/><dir name="Step2"><file name="Depended.php" hash="4985977e2bcfecc477e7df9c5a59e216"/><dir name="Renderer"><file name="Category.php" hash="e16d0084c37948b5806071152ad25ff2"/><file name="Depended.php" hash="4814a2169b96d77acadcb474e766abd4"/><file name="Vshopcategory.php" hash="12b2bcbcce7d48890ecec9e720f509b8"/></dir></dir><file name="Step2.php" hash="127e4fe60a83efee38e109087e2a204f"/><dir name="Step3"><file name="Attributes.php" hash="28f5d623b1c592cb95bad176dd6a05a8"/></dir><file name="Step3.php" hash="6a76689aaa190f5c8e0a5abd61fb96b1"/></dir><file name="Attributes.php" hash="0f51847105ee57e7875e35f94c8d89e5"/></dir><file name="Tabs.php" hash="69543da7a4afa619d951b312e3d286b1"/></dir><file name="Edit.php" hash="2bdf67b7be35772ab14715bd2da1f257"/><file name="Grid.php" hash="8b13e2245ff863b3e5cb4f3dfbbe988f"/><dir name="Log"><file name="Grid.php" hash="eb6c5ba41af25c4535809466d14a7cbd"/></dir><file name="Log.php" hash="b12a8a5b0119ee535d2d4245fb8aed48"/><dir name="Product"><dir name="Log"><file name="Grid.php" hash="bd275ef1fa0d19257ff0f81b6baded9c"/></dir><file name="Log.php" hash="5e69ba73c54e1181b9fd8d015bf15410"/></dir></dir><file name="Listing.php" hash="87592bd2da3bd09ca18b473e101853a1"/><dir name="Log"><dir name="Grid"><dir name="Column"><dir name="Renderer"><file name="Action.php" hash="18e5897df977ea3156905423dda69fad"/></dir></dir></dir><file name="Grid.php" hash="84fad5108af4229ba2fcadb63b567217"/></dir><file name="Log.php" hash="e8955b492972b3c8f79c8d2b282051ae"/><dir name="Sales"><dir name="Order"><dir name="Payment"><file name="Info.php" hash="d4ee788410f336cba2bcb62e5e339178"/></dir><dir name="View"><dir name="Tab"><file name="Quicksales.php" hash="40f958e04c63cf77a324813bcc2d5c98"/></dir></dir></dir></dir><dir name="System"><dir name="Config"><dir name="Form"><dir name="Field"><file name="Datetime.php" hash="3934885964f9f1f8de0f2cd1c027599e"/><file name="Description.php" hash="8a50abd7433d1e3c55ba04a12da347d3"/><file name="Gst.php" hash="7ae3faa5096159fb32a57d0c1a3f6637"/></dir></dir></dir></dir></dir><dir name="RW"><dir name="Adminhtml"><dir name="Sales"><dir name="Order"><file name="Grid.php" hash="cff441acf7f06ca8db160dc4cd394774"/><file name="Payment.php" hash="cb6ec950bdceafbacb578fea3a4dc10c"/><dir name="View"><dir name="Tab"><file name="Info.php" hash="295ae5cdd5c7fce133a8852126cc9688"/></dir></dir><file name="View.php" hash="a3e25d112227b72a5b810e90202be5a4"/></dir></dir></dir></dir></dir><dir name="CatalogInventory"><dir name="Model"><dir name="Resource"><file name="Stock.php" hash="dd232a80670b248f982f090215f16e70"/></dir><dir name="Stock"><file name="Item.php" hash="1a624d81536e993c4a7d8e164939ff80"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="45d8edf82bc22a0c1eceac2518dfc9c0"/><file name="Listing.php" hash="02b9eb1bc0367e579f8517069897b6d5"/></dir><dir name="Model"><dir name="Api"><file name="Abstract.php" hash="0118cc97f59c72914804b474b93810dd"/><file name="Action.php" hash="a20bc4e5324f5be32d8a47d1e1a14c71"/><file name="Client.php" hash="06f809265cde2d93fde082d06f4cb66a"/><file name="Createitem.php" hash="74f69c753d1884a01cfe70c9196320f4"/><file name="Getcategories.php" hash="249393ef0ce256daead6e9ffa5d0e323"/><file name="Getitem.php" hash="f5c468d2d14082b6c09f80b54f594bcd"/><file name="Getorders.php" hash="b7ddf2b501b6ad9b73c9293053fc5551"/><file name="Gettags.php" hash="09a3e057e4bbb0a090576295ddf72dd5"/><file name="Getvshopcategory.php" hash="c8887d3bcd2a4aea52e5695bde05ac0d"/><file name="Sendinvoice.php" hash="aa05937498d091a15ad2c0174e04bfdb"/><file name="Updateorder.php" hash="ffe0dbe1cedeb92c8b5d0a114dc100e8"/></dir><file name="Api.php" hash="d14a6fa9f3c48d8afd1ba1e648f0b1b8"/><dir name="Attribute"><dir name="Backend"><file name="Multiselect.php" hash="4c9778a8a40de5a0d6dad0c94fd1be7a"/></dir></dir><dir name="Catalog"><dir name="Resource"><dir name="Product"><dir name="Type"><dir name="Configurable"><dir name="Attribute"><file name="Collection.php" hash="995afa617df6f915b6642d1120ccceae"/></dir></dir></dir></dir></dir></dir><dir name="Entity"><file name="Setup.php" hash="e3757d878215c95b61d4f3ad2790f06f"/></dir><dir name="Listing"><file name="Action.php" hash="6e57b090c9575a672ceb414d7b40940d"/><dir name="Associated"><dir name="Attribute"><file name="Value.php" hash="dfc31705041aa63542ab2bfb57c3fa6e"/></dir><file name="Attribute.php" hash="934710ab465c4ca478448ea1f019f328"/></dir><dir name="Attribute"><dir name="Backend"><file name="Listing.php" hash="8021d2d56d98c295153a433a243b2cf2"/><file name="Listingupgrade.php" hash="82ea77f38d8ea7972f2b60e7c85006c4"/><file name="Payment.php" hash="7197e6b2c1a179164e2df822a204de27"/><file name="Pricing.php" hash="ac81f5980d223e5ec79f17484f1a7db1"/><file name="Shipping.php" hash="03c586856b3fb756c4ce302a810101f4"/></dir></dir><file name="Log.php" hash="db820db18e8c04d086fa51f2183641ef"/><dir name="Product"><file name="Log.php" hash="fd1f26a1d6f207c52a6deba80ec132f4"/></dir><file name="Product.php" hash="9d1e6d7069831515bc8af8cbe1bc5454"/></dir><file name="Listing.php" hash="9f9e81d3a798b1f8ca10eec38b18590e"/><dir name="Mysql4"><dir name="Listing"><file name="Collection.php" hash="747f3cf02018278d7a5d719a6272025c"/></dir><file name="Listing.php" hash="3ee54318778664a71bf5d59c02f17a03"/></dir><file name="Observer.php" hash="b5d015879d45c0fbcefd2cad88cf807e"/><dir name="Payment"><dir name="Method"><file name="Quicksales.php" hash="e43c81e148fa8bbb8212ad09164c9074"/></dir></dir><dir name="RW"><dir name="Sales"><dir name="Order"><file name="Shipment.php" hash="b4a0e5553a81ebf3c93a7e5e3a0ad17a"/></dir></dir></dir><dir name="Resource"><dir name="Listing"><dir name="Associated"><dir name="Attribute"><file name="Collection.php" hash="74159fff033230cc555970e0894e3dbd"/><dir name="Value"><file name="Collection.php" hash="df60430323f4ce8bdb8dd9724a8b5341"/></dir><file name="Value.php" hash="72854c83b0b0fde7c8c2cd18641bff90"/></dir><file name="Attribute.php" hash="33f225b6af7b2c19cf5ce5a05add0e4f"/></dir><file name="Collection.php" hash="34e455937a645ed8afbe6796742e4629"/><dir name="Log"><file name="Collection.php" hash="b3704c39dc29ab533ac265700c286444"/></dir><file name="Log.php" hash="36493f3b15e7935427b018977aa29c55"/><dir name="Product"><file name="Collection.php" hash="a9ccc5cc0705a30eade34267dfb30d6a"/><dir name="Log"><file name="Collection.php" hash="9d5b006b35062b0c63b77027a2bd0efc"/></dir><file name="Log.php" hash="2363d496d0bd1bff8a5378d47b146024"/></dir><file name="Product.php" hash="254f4f9e1104c619c7e349c479076568"/></dir><file name="Listing.php" hash="7005031b92e3a6f02e2af6a004156541"/></dir><dir name="Source"><file name="Getcategories.php" hash="44e1ad9156704b2b8dcbaa117c6c0a94"/><file name="Payments.php" hash="8ce9a6818da188308d1e52d14a5a7606"/><file name="Posttolocation.php" hash="6ac9508d1d587124069314ab7eb45920"/><file name="Shipping.php" hash="8aeec89891d2608cfc6ecf3e499a8218"/><file name="Vshopcategory.php" hash="e94a8548091fca00defc828dad2870db"/></dir><dir name="System"><file name="Autorelist.php" hash="55ecf8211df3340298d9f764ac5b2bdd"/><file name="Custom.php" hash="9ea46c68111ac558aadb01d15efa16e7"/><dir name="Customer"><file name="Import.php" hash="316802214006985ec3733a8966116a26"/></dir><file name="Description.php" hash="c1ec9931fd34929461088b60796b3a1b"/><file name="Duration.php" hash="f3916058828e9d036daf8fce673a7c10"/><dir name="Payment"><file name="Method.php" hash="a89ca6af6e29847d726b8e6f1522f159"/></dir><dir name="Price"><file name="Custom.php" hash="b69b7703d7fc71da54d34da75619d703"/></dir><file name="Price.php" hash="83c64351f8dd9a5b0973535f71a0e145"/><file name="Qty.php" hash="b50d5cb12f828736a11b785a87124c9f"/><dir name="Shipping"><file name="Method.php" hash="70354616f1d62de658ca8e5cb0febc61"/><file name="Package.php" hash="e8f3c75db3446134abf6cb20a4b04c72"/><file name="Posttolocation.php" hash="7976db08b7f232038fbe1eb3a16b97d7"/></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="ListingController.php" hash="2059467c75f5f21e31c19bd4e7d5e04c"/><file name="LogController.php" hash="cdfe5a2a44160cfcc43dbb8f02789d12"/><file name="OrderController.php" hash="58c99df32639c1c3279e9e825d8f89ce"/></dir><file name="IndexController.php" hash="43e24f364a2405594c03fee4256e20ee"/></dir><dir name="etc"><file name="adminhtml.xml" hash="5656fa1098cc51a6b1489441b815fe27"/><file name="config.xml" hash="5724f39f3eb9aa0292ac7a1237b1f708"/><file name="system.xml" hash="c4ca6657b9986c1d1b3408bf65418219"/></dir><dir name="sql"><dir name="quicksales_setup"><file name="mysql4-install-1.0.0.php" hash="ae886143d2da0214321ae4cbd92027d0"/><file name="mysql4-upgrade-1.0.0-1.1.0.php" hash="522a13ee3806982b8e4bb90e320f00ca"/><file name="mysql4-upgrade-1.1.0-1.2.0.php" hash="bed0ad53c0d65b320f07caba3199eba7"/><file name="mysql4-upgrade-1.2.0-1.2.1.php" hash="5b07273d133b25d8d5c4291178b44270"/><file name="mysql4-upgrade-1.2.1-1.2.2.php" hash="44351c292dd0fbaf81ec9ea5bb208506"/><file name="mysql4-upgrade-1.2.10-1.2.11.php" hash="31fccb02b1db0fde8a2a1e1478be39d7"/><file name="mysql4-upgrade-1.2.11-1.2.12.php" hash="414293f3d6b7f24a86bca36be361aecf"/><file name="mysql4-upgrade-1.2.12-1.2.13.php" hash="df993aed13e25303a7180c3e806ca397"/><file name="mysql4-upgrade-1.2.13-1.2.14.php" hash="8c8b0d422ff7621bd1a5ad9040acbc99"/><file name="mysql4-upgrade-1.2.14-1.2.15.php" hash="dfc249d36c655ac1173dd17058a7be59"/><file name="mysql4-upgrade-1.2.15-1.2.16.php" hash="2e1d319752280ae818201a06f894c4e1"/><file name="mysql4-upgrade-1.2.17-1.2.18.php" hash="289dc9d98c36c911088921eb71cd4fa0"/><file name="mysql4-upgrade-1.2.18-1.2.19.php" hash="873bb58b9ec5c2da4d8da6a300fa509c"/><file name="mysql4-upgrade-1.2.19-1.2.20.php" hash="1a305665d4cb0cca63df768b63e9470e"/><file name="mysql4-upgrade-1.2.2-1.2.3.php" hash="2be0aa84f69f5b7d44fc7b7eb1ae3c3e"/><file name="mysql4-upgrade-1.2.22-1.2.23.php" hash="9f611eac715c83c1305c8f3c98eff54e"/><file name="mysql4-upgrade-1.2.23-1.2.24.php" hash="adf3e0aec6fe54a929409ad2d8f4aa9c"/><file name="mysql4-upgrade-1.2.24-1.2.25.php" hash="423f672b3beedd6e2c59c6c484150188"/><file name="mysql4-upgrade-1.2.25-1.2.26.php" hash="2807523f5310438f090b4f492758b21a"/><file name="mysql4-upgrade-1.2.26-1.2.27.php" hash="e7c32ec1f342b21b88f0e76a39795d2e"/><file name="mysql4-upgrade-1.2.27-1.2.28.php" hash="72e4e27c93d52680158f5386e7a6b63a"/><file name="mysql4-upgrade-1.2.28-1.2.29.php" hash="55f796e99ae219be307ffb5f9b251038"/><file name="mysql4-upgrade-1.2.29-1.2.30.php" hash="8ea6ea37aac25b057221871ec99dbb26"/><file name="mysql4-upgrade-1.2.3-1.2.4.php" hash="4bda2413bc7a92dd0ee1363fd42dcd37"/><file name="mysql4-upgrade-1.2.30-1.2.31.php" hash="fee84457a0bd4a87fb55354d375dff5d"/><file name="mysql4-upgrade-1.2.31-1.2.32.php" hash="63a92e0ad3540d7c80d4fa78109f5c93"/><file name="mysql4-upgrade-1.2.32-1.2.33.php" hash="e660753bcf2a112454ffda451c4299ee"/><file name="mysql4-upgrade-1.2.33-1.3.1.php" hash="8ef7ae950e3b0ca0221e8bdbc839576a"/><file name="mysql4-upgrade-1.2.4-1.2.5.php" hash="d49c4c95fd5a3db349cdbe95a790ab9a"/><file name="mysql4-upgrade-1.2.5-1.2.6.php" hash="e877d91700d909632cb9d3dcb42ea7b9"/><file name="mysql4-upgrade-1.2.6-1.2.7.php" hash="2b5788963be1be407c183731cd1faa37"/><file name="mysql4-upgrade-1.2.7-1.2.8.php" hash="fdc0aaaa8e97442e5736752571ca682d"/><file name="mysql4-upgrade-1.2.8-1.2.9.php" hash="4926fd7fedf7a7be3eceb1a057d94b4a"/><file name="mysql4-upgrade-1.2.9-1.2.10.php" hash="a65c94a2be422899d23a1c8977595985"/><file name="mysql4-upgrade-1.3.1-1.3.2.php" hash="1074cad3c503e115e5392829d80abfba"/><file name="mysql4-upgrade-1.3.2-1.3.5.php" hash="fe9b5ecaaa7b0c92c8ca71933bf3dcb1"/><file name="mysql4-upgrade-1.3.5-1.3.6.php" hash="fe9b5ecaaa7b0c92c8ca71933bf3dcb1"/><file name="mysql4-upgrade-1.3.6-1.3.7.php" hash="fe9b5ecaaa7b0c92c8ca71933bf3dcb1"/><file name="mysql4-upgrade-1.3.7-1.3.8.php" hash="fe9b5ecaaa7b0c92c8ca71933bf3dcb1"/><file name="mysql4-upgrade-1.3.8-1.3.9.php" hash="fe9b5ecaaa7b0c92c8ca71933bf3dcb1"/><file name="mysql4-upgrade-1.3.9-1.4.0.php" hash="fe9b5ecaaa7b0c92c8ca71933bf3dcb1"/><file name="mysql4-upgrade-1.4.0-1.4.1.php" hash="fe9b5ecaaa7b0c92c8ca71933bf3dcb1"/><file name="mysql4-upgrade-1.4.1-1.4.2.php" hash="fe9b5ecaaa7b0c92c8ca71933bf3dcb1"/></dir></dir><dir name="xml"><file name="CreateItem_Request.xml" hash="3434ff3056e34a3e3a1c9d9e8d4ca4bb"/><file name="GetCategoriesWithTags_Request.xml" hash="f1c4558580f4a0c7103ab9318a895eaf"/><file name="GetCategories_Request.xml" hash="345535fbe533ffee4fbc0e750a9d34d0"/><file name="GetCategoryChanges_Request.xml" hash="f106996bc9650db30d4a9f1aa72cf61f"/><file name="GetCategoryVersion_Request.xml" hash="817d8ec4cb476613a1376667b9e70f79"/><file name="GetFeeList_Request.xml" hash="5c9383b8fd56cc8cea443563d1a4a684"/><file name="GetItemIDByRefID_Request.xml" hash="a554bab32ac9af2429521fb55c318f43"/><file name="GetItem_Request.xml" hash="8f072b708501d61b5b536fbb206ae221"/><file name="GetListingAndItemIDs_Request.xml" hash="bcdc9c5870f72530f0cdac42a976051f"/><file name="GetOrders_Request.xml" hash="6c662e867a3cecadcd30aa4846cc9016"/><file name="GetTagsVersion_Request.xml" hash="fc710967591911dd4f68a93f14354337"/><file name="GetTags_Request.xml" hash="dc4f0c2673dd9b7c17b7030bafc3da7c"/><file name="GetvShopCategories_Request.xml" hash="afdb4e215afe828dc515366d680aaa52"/><file name="LeaveRating_Request.xml" hash="13b82cb6e6530f2a178dd7be252ffb2c"/><file name="ReviseItem_Request.xml" hash="67955fce1342e571d42dbf8177e6db92"/><file name="SendInvoice_Request.xml" hash="88b690b77704b8db0d14c58380f41e84"/><file name="UpdateMakeAnOffer_Request.xml" hash="1346733740e45e49ed9738cdd34329d9"/><file name="UpdateOrder_Request.xml" hash="d6e4d3668c3628c35e9778e90bbebb05"/></dir></dir></dir></dir></dir></dir><dir name="design"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="quicksales.xml" hash="c58dd6c400d813e260c9bf8f5754b82f"/></dir><dir name="template"><dir name="quicksales"><dir><dir name="listing"><dir name="edit"><dir name="tab"><dir name="additional"><file name="step1.phtml" hash="dbc1d766799eebddaad777a624b7cc48"/><file name="step2.phtml" hash="dfe166cca93e697bdbeea749b9c2dd1c"/><dir name="step3"><file name="attributes.phtml" hash="228f5edd6704ad5f29f29f6b82d39413"/></dir><file name="step3.phtml" hash="ba061b5739d5cf1463354c0afeacf3ca"/></dir></dir></dir><file name="edit.phtml" hash="53fafe27aebbaadd6ba7c25678c01d99"/></dir><dir name="sales"><dir name="order"><dir name="payment"><file name="info.phtml" hash="41652cd66163ca04c4223474bdc52b5d"/></dir><dir name="view"><dir name="tab"><file name="quicksales.phtml" hash="ee8a87bd24421874a6a36516a872599a"/></dir></dir></dir></dir></dir></dir></dir></dir></dir></dir></dir></dir><dir name="js"><dir name="quicksales"><dir name="adminhtml"><file name="categories.js" hash="52faf8b90da3d1f996bd704c963e0906"/><file name="listing.js" hash="59bf31dccd6f694170421878bda2531f"/></dir></dir></dir><dir name="skin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="quicksales"><dir><dir name="css"><file name="quicksales.css" hash="e3bbf915589825e3123d0fd4133ed992"/></dir></dir></dir></dir></dir></dir></dir></target></contents>
32
  <compatible/>
33
  <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
34
  </package>