Version Notes
- Minor bugfixes & improvements
Download this release
Release Info
Developer | ShoppingFlux |
Extension | Profileolabs_Shoppingflux |
Version | 1.0.1 |
Comparing to | |
See all releases |
Code changes from version 1.0.0 to 1.0.1
- app/code/community/Profileolabs/Shoppingflux/Block/Manageorders/Adminhtml/System/Config/Form/Fieldset/Customer/Group.php +88 -0
- app/code/community/Profileolabs/Shoppingflux/Block/Manageorders/Adminhtml/System/Config/Form/Fieldset/Shipping/Method.php +15 -25
- app/code/community/Profileolabs/Shoppingflux/Block/Manageorders/Adminhtml/System/Config/Form/Fieldset/Shipping/Method/Extra.php +98 -0
- app/code/community/Profileolabs/Shoppingflux/Helper/Data.php +1 -1
- app/code/community/Profileolabs/Shoppingflux/Model/Manageorders/Observer.php +26 -0
- app/code/community/Profileolabs/Shoppingflux/Model/Manageorders/Order.php +11 -5
- app/code/community/Profileolabs/Shoppingflux/Model/Service.php +7 -0
- app/code/community/Profileolabs/Shoppingflux/controllers/Export/FluxController.php +27 -18
- app/code/community/Profileolabs/Shoppingflux/etc/config.xml +9 -8
- app/code/community/Profileolabs/Shoppingflux/etc/marketplaces.csv +55 -0
- app/code/community/Profileolabs/Shoppingflux/etc/system.xml +3 -583
- app/locale/en_US/Profileolabs_Shoppingflux.csv +2 -58
- app/locale/fr_FR/Profileolabs_Shoppingflux.csv +2 -58
- package.xml +4 -4
app/code/community/Profileolabs/Shoppingflux/Block/Manageorders/Adminhtml/System/Config/Form/Fieldset/Customer/Group.php
ADDED
@@ -0,0 +1,88 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
class Profileolabs_Shoppingflux_Block_Manageorders_Adminhtml_System_Config_Form_Fieldset_Customer_Group extends Profileolabs_Shoppingflux_Block_Adminhtml_System_Config_Form_Fieldset_Abstract {
|
4 |
+
|
5 |
+
public function render(Varien_Data_Form_Element_Abstract $element) {
|
6 |
+
if(!$this->shouldRenderUnregistered()) {
|
7 |
+
return parent::render($element);
|
8 |
+
}
|
9 |
+
|
10 |
+
$html = $this->_getHeaderHtml($element);
|
11 |
+
|
12 |
+
|
13 |
+
$marketplaceCsvFile = Mage::getModuleDir( '', 'Profileolabs_Shoppingflux' ) . DS . 'etc' . DS . 'marketplaces.csv';
|
14 |
+
$marketplaces = file($marketplaceCsvFile);
|
15 |
+
|
16 |
+
|
17 |
+
|
18 |
+
$i = 1;
|
19 |
+
foreach($marketplaces as $marketplace) {
|
20 |
+
$this->_addCustomerGroupField($element, $marketplace, 10*$i++);
|
21 |
+
}
|
22 |
+
|
23 |
+
|
24 |
+
foreach ($element->getSortedElements() as $field) {
|
25 |
+
$html .= $field->toHtml();
|
26 |
+
}
|
27 |
+
|
28 |
+
$html .= $this->_getFooterHtml($element);
|
29 |
+
|
30 |
+
return $html;
|
31 |
+
}
|
32 |
+
|
33 |
+
protected function _getHeaderHtml($element) {
|
34 |
+
$html = parent::_getHeaderHtml($element);
|
35 |
+
return $html;
|
36 |
+
}
|
37 |
+
|
38 |
+
protected function _getFieldRenderer() {
|
39 |
+
if (empty($this->_fieldRenderer)) {
|
40 |
+
$this->_fieldRenderer = Mage::getBlockSingleton('adminhtml/system_config_form_field');
|
41 |
+
}
|
42 |
+
return $this->_fieldRenderer;
|
43 |
+
}
|
44 |
+
|
45 |
+
protected function _getDummyElement() {
|
46 |
+
if (empty($this->_dummyElement)) {
|
47 |
+
$this->_dummyElement = new Varien_Object(array('show_in_default' => 1, 'show_in_website' => 1, 'show_in_store' => 0));
|
48 |
+
}
|
49 |
+
return $this->_dummyElement;
|
50 |
+
}
|
51 |
+
|
52 |
+
protected function _getNiceName($index) {
|
53 |
+
return ucwords(str_replace('_', ' ', $index));
|
54 |
+
}
|
55 |
+
|
56 |
+
|
57 |
+
protected function _addCustomerGroupField($fieldset, $marketplace, $sortOrder) {
|
58 |
+
$customerGroup = strtolower(preg_replace('%[^a-zA-Z0-9_]%', '', $marketplace))."_group";
|
59 |
+
$configData = $this->getConfigData();
|
60 |
+
$path = 'shoppingflux_mo/import_customer/' . $customerGroup;
|
61 |
+
$data = '';
|
62 |
+
$inherit = false;
|
63 |
+
if (isset($configData[$path])) {
|
64 |
+
$data = $configData[$path];
|
65 |
+
$inherit = false;
|
66 |
+
} else {
|
67 |
+
if($this->getForm()->getConfigRoot()) {
|
68 |
+
$data = (string) $this->getForm()->getConfigRoot()->descend($path);
|
69 |
+
$inherit = true;
|
70 |
+
}
|
71 |
+
}
|
72 |
+
$e = $this->_getDummyElement();
|
73 |
+
$fieldset->addField($customerGroup, 'select', array(
|
74 |
+
'name' => 'groups[import_customer][fields][' . $customerGroup . '][value]',
|
75 |
+
'label' => Mage::helper('profileolabs_shoppingflux')->__('%s customer group', $this->_getNiceName($marketplace)),
|
76 |
+
'comment' => Mage::helper('profileolabs_shoppingflux')->__('Leave empty to use default group'),
|
77 |
+
'value' => $data,
|
78 |
+
'values' => Mage::getSingleton('adminhtml/system_config_source_customer_group')->toOptionArray(),
|
79 |
+
'sort_order' => $sortOrder,
|
80 |
+
'inherit' => $inherit,
|
81 |
+
'can_use_default_value' => 0,
|
82 |
+
'can_use_website_value' => 0,
|
83 |
+
))->setRenderer($this->_getFieldRenderer());
|
84 |
+
|
85 |
+
}
|
86 |
+
|
87 |
+
|
88 |
+
}
|
app/code/community/Profileolabs/Shoppingflux/Block/Manageorders/Adminhtml/System/Config/Form/Fieldset/Shipping/Method.php
CHANGED
@@ -9,15 +9,13 @@ class Profileolabs_Shoppingflux_Block_Manageorders_Adminhtml_System_Config_Form_
|
|
9 |
|
10 |
$html = $this->_getHeaderHtml($element);
|
11 |
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
}
|
17 |
-
|
18 |
$i = 1;
|
19 |
-
foreach($
|
20 |
-
$this->_addShippingMethodField($element, $
|
21 |
}
|
22 |
|
23 |
|
@@ -54,10 +52,10 @@ class Profileolabs_Shoppingflux_Block_Manageorders_Adminhtml_System_Config_Form_
|
|
54 |
}
|
55 |
|
56 |
|
57 |
-
protected function _addShippingMethodField($fieldset, $
|
58 |
-
$shippingMethod = preg_replace('%[^a-zA-Z0-9_]%', '', $
|
59 |
$configData = $this->getConfigData();
|
60 |
-
$path = 'shoppingflux_mo/
|
61 |
$data = '';
|
62 |
$inherit = false;
|
63 |
if (isset($configData[$path])) {
|
@@ -71,28 +69,20 @@ class Profileolabs_Shoppingflux_Block_Manageorders_Adminhtml_System_Config_Form_
|
|
71 |
}
|
72 |
$e = $this->_getDummyElement();
|
73 |
$fieldset->addField($shippingMethod, 'select', array(
|
74 |
-
'name' => 'groups[
|
75 |
-
'label' => Mage::helper('profileolabs_shoppingflux')->__('Shipping Method for %s', $this->_getNiceName($
|
|
|
76 |
'value' => $data,
|
77 |
'values' => Mage::getSingleton('adminhtml/system_config_source_shipping_allmethods')->toOptionArray(),
|
78 |
'sort_order' => $sortOrder,
|
79 |
'inherit' => $inherit,
|
80 |
-
'can_use_default_value' =>
|
81 |
-
'can_use_website_value' =>
|
82 |
))->setRenderer($this->_getFieldRenderer());
|
83 |
|
84 |
}
|
85 |
|
86 |
|
87 |
-
|
88 |
-
$configData = $this->getConfigData();
|
89 |
-
$path = 'shoppingflux_mo/advanced_shipping_method/zzzzzz';
|
90 |
-
$e = $this->_getDummyElement();
|
91 |
-
$fieldset->addField('zzzzzz', 'note', array(
|
92 |
-
'name' => 'groups[advanced_shipping_method][fields][zzzzzz][value]',
|
93 |
-
'label' => Mage::helper('profileolabs_shoppingflux')->__('There is no marketplace shipping method registered yet.'),
|
94 |
-
))->setRenderer($this->_getFieldRenderer());
|
95 |
-
|
96 |
-
}
|
97 |
|
98 |
}
|
9 |
|
10 |
$html = $this->_getHeaderHtml($element);
|
11 |
|
12 |
+
|
13 |
+
$marketplaceCsvFile = Mage::getModuleDir( '', 'Profileolabs_Shoppingflux' ) . DS . 'etc' . DS . 'marketplaces.csv';
|
14 |
+
$marketplaces = file($marketplaceCsvFile);
|
15 |
+
|
|
|
|
|
16 |
$i = 1;
|
17 |
+
foreach($marketplaces as $marketplace) {
|
18 |
+
$this->_addShippingMethodField($element, $marketplace, 10*$i++);
|
19 |
}
|
20 |
|
21 |
|
52 |
}
|
53 |
|
54 |
|
55 |
+
protected function _addShippingMethodField($fieldset, $marketplace, $sortOrder) {
|
56 |
+
$shippingMethod = strtolower(preg_replace('%[^a-zA-Z0-9_]%', '', $marketplace))."_method";
|
57 |
$configData = $this->getConfigData();
|
58 |
+
$path = 'shoppingflux_mo/shipping_method/' . $shippingMethod;
|
59 |
$data = '';
|
60 |
$inherit = false;
|
61 |
if (isset($configData[$path])) {
|
69 |
}
|
70 |
$e = $this->_getDummyElement();
|
71 |
$fieldset->addField($shippingMethod, 'select', array(
|
72 |
+
'name' => 'groups[shipping_method][fields][' . $shippingMethod . '][value]',
|
73 |
+
'label' => Mage::helper('profileolabs_shoppingflux')->__('Shipping Method for %s', $this->_getNiceName($marketplace)),
|
74 |
+
'comment' => Mage::helper('profileolabs_shoppingflux')->__('Leave empty to use default shipping method.'),
|
75 |
'value' => $data,
|
76 |
'values' => Mage::getSingleton('adminhtml/system_config_source_shipping_allmethods')->toOptionArray(),
|
77 |
'sort_order' => $sortOrder,
|
78 |
'inherit' => $inherit,
|
79 |
+
'can_use_default_value' => 0,
|
80 |
+
'can_use_website_value' => 0,
|
81 |
))->setRenderer($this->_getFieldRenderer());
|
82 |
|
83 |
}
|
84 |
|
85 |
|
86 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
87 |
|
88 |
}
|
app/code/community/Profileolabs/Shoppingflux/Block/Manageorders/Adminhtml/System/Config/Form/Fieldset/Shipping/Method/Extra.php
ADDED
@@ -0,0 +1,98 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
class Profileolabs_Shoppingflux_Block_Manageorders_Adminhtml_System_Config_Form_Fieldset_Shipping_Method_Extra extends Profileolabs_Shoppingflux_Block_Adminhtml_System_Config_Form_Fieldset_Abstract {
|
4 |
+
|
5 |
+
public function render(Varien_Data_Form_Element_Abstract $element) {
|
6 |
+
if(!$this->shouldRenderUnregistered()) {
|
7 |
+
return parent::render($element);
|
8 |
+
}
|
9 |
+
|
10 |
+
$html = $this->_getHeaderHtml($element);
|
11 |
+
|
12 |
+
$collection = Mage::getModel('profileolabs_shoppingflux/manageorders_shipping_method')->getCollection();
|
13 |
+
|
14 |
+
if($collection->count()<=0) {
|
15 |
+
$this->_addEmptyField($element);
|
16 |
+
}
|
17 |
+
|
18 |
+
$i = 1;
|
19 |
+
foreach($collection as $shippingMethod) {
|
20 |
+
$this->_addShippingMethodField($element, $shippingMethod->getFullShippingMethodCode(), 10*$i++);
|
21 |
+
}
|
22 |
+
|
23 |
+
|
24 |
+
foreach ($element->getSortedElements() as $field) {
|
25 |
+
$html .= $field->toHtml();
|
26 |
+
}
|
27 |
+
|
28 |
+
$html .= $this->_getFooterHtml($element);
|
29 |
+
|
30 |
+
return $html;
|
31 |
+
}
|
32 |
+
|
33 |
+
protected function _getHeaderHtml($element) {
|
34 |
+
$html = parent::_getHeaderHtml($element);
|
35 |
+
return $html;
|
36 |
+
}
|
37 |
+
|
38 |
+
protected function _getFieldRenderer() {
|
39 |
+
if (empty($this->_fieldRenderer)) {
|
40 |
+
$this->_fieldRenderer = Mage::getBlockSingleton('adminhtml/system_config_form_field');
|
41 |
+
}
|
42 |
+
return $this->_fieldRenderer;
|
43 |
+
}
|
44 |
+
|
45 |
+
protected function _getDummyElement() {
|
46 |
+
if (empty($this->_dummyElement)) {
|
47 |
+
$this->_dummyElement = new Varien_Object(array('show_in_default' => 1, 'show_in_website' => 1, 'show_in_store' => 0));
|
48 |
+
}
|
49 |
+
return $this->_dummyElement;
|
50 |
+
}
|
51 |
+
|
52 |
+
protected function _getNiceName($index) {
|
53 |
+
return ucwords(str_replace('_', ' ', $index));
|
54 |
+
}
|
55 |
+
|
56 |
+
|
57 |
+
protected function _addShippingMethodField($fieldset, $shippingMethod, $sortOrder) {
|
58 |
+
$shippingMethod = preg_replace('%[^a-zA-Z0-9_]%', '', $shippingMethod);
|
59 |
+
$configData = $this->getConfigData();
|
60 |
+
$path = 'shoppingflux_mo/advanced_shipping_method/' . $shippingMethod;
|
61 |
+
$data = '';
|
62 |
+
$inherit = false;
|
63 |
+
if (isset($configData[$path])) {
|
64 |
+
$data = $configData[$path];
|
65 |
+
$inherit = false;
|
66 |
+
} else {
|
67 |
+
if($this->getForm()->getConfigRoot()) {
|
68 |
+
$data = (string) $this->getForm()->getConfigRoot()->descend($path);
|
69 |
+
$inherit = true;
|
70 |
+
}
|
71 |
+
}
|
72 |
+
$e = $this->_getDummyElement();
|
73 |
+
$fieldset->addField($shippingMethod, 'select', array(
|
74 |
+
'name' => 'groups[advanced_shipping_method][fields][' . $shippingMethod . '][value]',
|
75 |
+
'label' => Mage::helper('profileolabs_shoppingflux')->__('Shipping Method for %s', $this->_getNiceName($shippingMethod)),
|
76 |
+
'value' => $data,
|
77 |
+
'values' => Mage::getSingleton('adminhtml/system_config_source_shipping_allmethods')->toOptionArray(),
|
78 |
+
'sort_order' => $sortOrder,
|
79 |
+
'inherit' => $inherit,
|
80 |
+
'can_use_default_value' => $this->getForm()->canUseDefaultValue($e),
|
81 |
+
'can_use_website_value' => $this->getForm()->canUseWebsiteValue($e),
|
82 |
+
))->setRenderer($this->_getFieldRenderer());
|
83 |
+
|
84 |
+
}
|
85 |
+
|
86 |
+
|
87 |
+
protected function _addEmptyField($fieldset) {
|
88 |
+
$configData = $this->getConfigData();
|
89 |
+
$path = 'shoppingflux_mo/advanced_shipping_method/zzzzzz';
|
90 |
+
$e = $this->_getDummyElement();
|
91 |
+
$fieldset->addField('zzzzzz', 'note', array(
|
92 |
+
'name' => 'groups[advanced_shipping_method][fields][zzzzzz][value]',
|
93 |
+
'label' => Mage::helper('profileolabs_shoppingflux')->__('There is no marketplace shipping method registered yet.'),
|
94 |
+
))->setRenderer($this->_getFieldRenderer());
|
95 |
+
|
96 |
+
}
|
97 |
+
|
98 |
+
}
|
app/code/community/Profileolabs/Shoppingflux/Helper/Data.php
CHANGED
@@ -44,7 +44,7 @@ class Profileolabs_Shoppingflux_Helper_Data extends Mage_Core_Helper_Abstract {
|
|
44 |
} else {
|
45 |
$line = mb_substr($street, 0 , $lineMaxLength);
|
46 |
}
|
47 |
-
$street =
|
48 |
return array_merge(array($line), $this->truncateAddress($street, $lineMaxLength), $res);
|
49 |
}
|
50 |
|
44 |
} else {
|
45 |
$line = mb_substr($street, 0 , $lineMaxLength);
|
46 |
}
|
47 |
+
$street = trim(mb_substr($street, strlen($line)));
|
48 |
return array_merge(array($line), $this->truncateAddress($street, $lineMaxLength), $res);
|
49 |
}
|
50 |
|
app/code/community/Profileolabs/Shoppingflux/Model/Manageorders/Observer.php
CHANGED
@@ -224,5 +224,31 @@ class Profileolabs_Shoppingflux_Model_Manageorders_Observer {
|
|
224 |
}
|
225 |
}
|
226 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
227 |
|
228 |
}
|
224 |
}
|
225 |
}
|
226 |
}
|
227 |
+
|
228 |
+
public function updateMarketplaceList() {
|
229 |
+
$apiKey = false;
|
230 |
+
foreach(Mage::app()->getStores() as $store) {
|
231 |
+
if(!$apiKey) {
|
232 |
+
$apiKey = $this->getConfig()->getApiKey($store->getId());
|
233 |
+
$wsUri = $this->getConfig()->getWsUri();
|
234 |
+
}
|
235 |
+
}
|
236 |
+
|
237 |
+
$service = new Profileolabs_Shoppingflux_Model_Service($apiKey, $wsUri);
|
238 |
+
|
239 |
+
try {
|
240 |
+
$marketplaces = $service->getMarketplaces();
|
241 |
+
if(count($marketplaces) > 5) {
|
242 |
+
$marketplaceCsvFile = Mage::getModuleDir( '', 'Profileolabs_Shoppingflux' ) . DS . 'etc' . DS . 'marketplaces.csv';
|
243 |
+
$handle = fopen($marketplaceCsvFile, 'w+');
|
244 |
+
foreach($marketplaces as $marketplace) {
|
245 |
+
fwrite($handle, $marketplace."\n");
|
246 |
+
}
|
247 |
+
fclose($handle);
|
248 |
+
}
|
249 |
+
} catch(Exception $e) {
|
250 |
+
echo $e->getMessage();
|
251 |
+
}
|
252 |
+
}
|
253 |
|
254 |
}
|
app/code/community/Profileolabs/Shoppingflux/Model/Manageorders/Order.php
CHANGED
@@ -130,12 +130,13 @@ class Profileolabs_Shoppingflux_Model_Manageorders_Order extends Varien_Object {
|
|
130 |
}
|
131 |
|
132 |
/* Double vérification, pour gérer un appel simultané. (qui ne devrait pas arriver, mais au cas ou..) */
|
133 |
-
$
|
|
|
134 |
if ($flagPath) {
|
|
|
135 |
return true;
|
136 |
}
|
137 |
-
$config
|
138 |
-
$config->saveConfig('shoppingflux/order_flags/'.$idShoppingflux, date('Y-m-d H:i:s'));
|
139 |
/* end double check */
|
140 |
|
141 |
return false;
|
@@ -244,7 +245,7 @@ class Profileolabs_Shoppingflux_Model_Manageorders_Order extends Varien_Object {
|
|
244 |
'Marketplace' => $orderSf['Marketplace'],
|
245 |
'MageOrderId' => is_object($importedOrder)?$importedOrder->getIncrementId():'',
|
246 |
'ShippingMethod' => $orderSf['ShippingMethod'],
|
247 |
-
'ErrorOrder' => false
|
248 |
);
|
249 |
continue;
|
250 |
}
|
@@ -298,7 +299,6 @@ class Profileolabs_Shoppingflux_Model_Manageorders_Order extends Varien_Object {
|
|
298 |
$config = new Mage_Core_Model_Config();
|
299 |
$orderFlags = Mage::getStoreConfig('shoppingflux/order_flags');
|
300 |
foreach($orderFlags as $orderId => $importDate) {
|
301 |
-
echo $orderId;
|
302 |
if(strtotime($importDate) < time()-3*60*60) {
|
303 |
$config->deleteConfig('shoppingflux/order_flags/' . $orderId);
|
304 |
}
|
@@ -644,6 +644,7 @@ class Profileolabs_Shoppingflux_Model_Manageorders_Order extends Varien_Object {
|
|
644 |
$additionalData['shipping_description'] = "Frais de port de la place de marché (" . $shippingMethod . ")";
|
645 |
}
|
646 |
/* @var $service Mage_Sales_Model_Service_Quote */
|
|
|
647 |
$service = Mage::getModel('sales/service_quote', $this->_getQuote());
|
648 |
$service->setOrderData($additionalData);
|
649 |
$order = false;
|
@@ -663,6 +664,11 @@ class Profileolabs_Shoppingflux_Model_Manageorders_Order extends Varien_Object {
|
|
663 |
} catch(Exception $e) {
|
664 |
throw $e;
|
665 |
}
|
|
|
|
|
|
|
|
|
|
|
666 |
|
667 |
if ($order) {
|
668 |
|
130 |
}
|
131 |
|
132 |
/* Double vérification, pour gérer un appel simultané. (qui ne devrait pas arriver, mais au cas ou..) */
|
133 |
+
$config = new Mage_Core_Model_Config();
|
134 |
+
$flagPath = Mage::getStoreConfig('shoppingflux/order_flags/order_'.$idShoppingflux);
|
135 |
if ($flagPath) {
|
136 |
+
$config->saveConfig('shoppingflux/order_flags/order_'.$idShoppingflux, 0);
|
137 |
return true;
|
138 |
}
|
139 |
+
$config->saveConfig('shoppingflux/order_flags/order_'.$idShoppingflux, date('Y-m-d H:i:s'));
|
|
|
140 |
/* end double check */
|
141 |
|
142 |
return false;
|
245 |
'Marketplace' => $orderSf['Marketplace'],
|
246 |
'MageOrderId' => is_object($importedOrder)?$importedOrder->getIncrementId():'',
|
247 |
'ShippingMethod' => $orderSf['ShippingMethod'],
|
248 |
+
'ErrorOrder' => is_object($importedOrder)?false:true
|
249 |
);
|
250 |
continue;
|
251 |
}
|
299 |
$config = new Mage_Core_Model_Config();
|
300 |
$orderFlags = Mage::getStoreConfig('shoppingflux/order_flags');
|
301 |
foreach($orderFlags as $orderId => $importDate) {
|
|
|
302 |
if(strtotime($importDate) < time()-3*60*60) {
|
303 |
$config->deleteConfig('shoppingflux/order_flags/' . $orderId);
|
304 |
}
|
644 |
$additionalData['shipping_description'] = "Frais de port de la place de marché (" . $shippingMethod . ")";
|
645 |
}
|
646 |
/* @var $service Mage_Sales_Model_Service_Quote */
|
647 |
+
$quote = $this->_getQuote();
|
648 |
$service = Mage::getModel('sales/service_quote', $this->_getQuote());
|
649 |
$service->setOrderData($additionalData);
|
650 |
$order = false;
|
664 |
} catch(Exception $e) {
|
665 |
throw $e;
|
666 |
}
|
667 |
+
try {
|
668 |
+
$quote->setIsActive(0)->save();
|
669 |
+
} catch (Exception $ex) {
|
670 |
+
|
671 |
+
}
|
672 |
|
673 |
if ($order) {
|
674 |
|
app/code/community/Profileolabs/Shoppingflux/Model/Service.php
CHANGED
@@ -23,6 +23,7 @@ class Profileolabs_Shoppingflux_Model_Service extends Varien_Object {
|
|
23 |
const METHOD_UPDATE_PRODUCT = "UpdateProduct";
|
24 |
const METHOD_LOGIN = "getLogin";
|
25 |
const METHOD_IS_CLIENT = "IsClient";
|
|
|
26 |
|
27 |
/**
|
28 |
*
|
@@ -163,6 +164,12 @@ class Profileolabs_Shoppingflux_Model_Service extends Varien_Object {
|
|
163 |
return $this->_xml;
|
164 |
}
|
165 |
|
|
|
|
|
|
|
|
|
|
|
|
|
166 |
/**
|
167 |
* Retrieve orders
|
168 |
*
|
23 |
const METHOD_UPDATE_PRODUCT = "UpdateProduct";
|
24 |
const METHOD_LOGIN = "getLogin";
|
25 |
const METHOD_IS_CLIENT = "IsClient";
|
26 |
+
const METHOD_GET_MARKETPLACES = 'GetMarketplaces';
|
27 |
|
28 |
/**
|
29 |
*
|
164 |
return $this->_xml;
|
165 |
}
|
166 |
|
167 |
+
|
168 |
+
public function getMarketplaces() {
|
169 |
+
$data = $this->_connect($this->_getApiKey(), self::METHOD_GET_MARKETPLACES);
|
170 |
+
return $data->Response->Marketplaces->Marketplace;
|
171 |
+
}
|
172 |
+
|
173 |
/**
|
174 |
* Retrieve orders
|
175 |
*
|
app/code/community/Profileolabs/Shoppingflux/controllers/Export/FluxController.php
CHANGED
@@ -23,30 +23,39 @@ ALTER TABLE `{$installer->getTable('shoppingflux_export_flux')}` ADD INDEX ( `
|
|
23 |
");*/
|
24 |
//$results = $readConnection->fetchAll('SHOW COLUMNS FROM '.$installer->getTable('shoppingflux_export_flux'));
|
25 |
// $results = $readConnection->fetchAll("SHOW INDEXES FROM shoppingflux_export_flux");
|
26 |
-
|
27 |
-
var_dump($results);die();
|
28 |
|
29 |
|
30 |
//Mage::getModel('profileolabs_shoppingflux/export_flux')->checkForDeletedProducts();
|
31 |
//Mage::helper('profileolabs_shoppingflux')->newInstallation();
|
32 |
|
33 |
-
|
34 |
$installer = Mage::getResourceModel('catalog/setup','profileolabs_shoppingflux_setup');
|
35 |
-
|
36 |
-
'
|
37 |
-
'
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
'
|
48 |
-
|
49 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
50 |
//$sql = "delete from `".$installer->getTable('core/config_data')."` where `path` = 'shoppingflux_export/attributes_mapping/additional,'";
|
51 |
//$sql = sprintf("UPDATE `%s` SET `path` = '%s' WHERE `path` = '%s'",$installer->getTable('core/config_data'), 'shoppingflux_export/attributes_mapping/additional', 'shoppingflux_export/attributes_additionnal/list');
|
52 |
//$installer->run($sql);
|
23 |
");*/
|
24 |
//$results = $readConnection->fetchAll('SHOW COLUMNS FROM '.$installer->getTable('shoppingflux_export_flux'));
|
25 |
// $results = $readConnection->fetchAll("SHOW INDEXES FROM shoppingflux_export_flux");
|
26 |
+
//$results = $readConnection->fetchAll("SELECT * FROM core_config_data where path like 'shoppingflux_mo/shi%'");
|
27 |
+
//var_dump($results);die();
|
28 |
|
29 |
|
30 |
//Mage::getModel('profileolabs_shoppingflux/export_flux')->checkForDeletedProducts();
|
31 |
//Mage::helper('profileolabs_shoppingflux')->newInstallation();
|
32 |
|
33 |
+
|
34 |
$installer = Mage::getResourceModel('catalog/setup','profileolabs_shoppingflux_setup');
|
35 |
+
$installer->addAttribute('catalog_product', 'shoppingflux_default_category', array(
|
36 |
+
'group' => 'General',
|
37 |
+
'type' => 'int',
|
38 |
+
'backend' => '',
|
39 |
+
'frontend_input' => '',
|
40 |
+
'frontend' => '',
|
41 |
+
'label' => 'Default Shoppingflux Category',
|
42 |
+
'input' => 'select',
|
43 |
+
'class' => '',
|
44 |
+
// 'source' => 'profileolabs_shoppingflux/attribute_source_category', Optional. Needs to be added manually. To avoid having an error on uninstall if attribute is still there.
|
45 |
+
'global' => Mage_Catalog_Model_Resource_Eav_Attribute::SCOPE_STORE,
|
46 |
+
'visible' => false,// Optional. Needs to be added manually. To avoid having an error on uninstall if attribute is still there.
|
47 |
+
'used_in_product_listing' => true,
|
48 |
+
'frontend_class' => '',
|
49 |
+
'required' => false,
|
50 |
+
'user_defined' => true,
|
51 |
+
'default' => '',
|
52 |
+
'searchable' => false,
|
53 |
+
'filterable' => false,
|
54 |
+
'comparable' => false,
|
55 |
+
'visible_on_front' => false,
|
56 |
+
'unique' => false,
|
57 |
+
'position' => 60,
|
58 |
+
));
|
59 |
//$sql = "delete from `".$installer->getTable('core/config_data')."` where `path` = 'shoppingflux_export/attributes_mapping/additional,'";
|
60 |
//$sql = sprintf("UPDATE `%s` SET `path` = '%s' WHERE `path` = '%s'",$installer->getTable('core/config_data'), 'shoppingflux_export/attributes_mapping/additional', 'shoppingflux_export/attributes_additionnal/list');
|
61 |
//$installer->run($sql);
|
app/code/community/Profileolabs/Shoppingflux/etc/config.xml
CHANGED
@@ -2,18 +2,11 @@
|
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Profileolabs_Shoppingflux>
|
5 |
-
<version>1.0.
|
6 |
</Profileolabs_Shoppingflux>
|
7 |
</modules>
|
8 |
<admin>
|
9 |
<routers>
|
10 |
-
<!--<shoppingflux>
|
11 |
-
<use>admin</use>
|
12 |
-
<args>
|
13 |
-
<module>Profileolabs_Shoppingflux</module>
|
14 |
-
<frontName>shoppingflux</frontName>
|
15 |
-
</args>
|
16 |
-
</shoppingflux>-->
|
17 |
<adminhtml>
|
18 |
<args>
|
19 |
<modules>
|
@@ -379,6 +372,14 @@
|
|
379 |
<model>profileolabs_shoppingflux/export_flux::checkForDeletedProducts</model>
|
380 |
</run>
|
381 |
</remove_old_products>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
382 |
<export_update_stock_shoppingflux>
|
383 |
<schedule>
|
384 |
<cron_expr>*/30 * * * *</cron_expr>
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Profileolabs_Shoppingflux>
|
5 |
+
<version>1.0.1</version>
|
6 |
</Profileolabs_Shoppingflux>
|
7 |
</modules>
|
8 |
<admin>
|
9 |
<routers>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
<adminhtml>
|
11 |
<args>
|
12 |
<modules>
|
372 |
<model>profileolabs_shoppingflux/export_flux::checkForDeletedProducts</model>
|
373 |
</run>
|
374 |
</remove_old_products>
|
375 |
+
<update_marketplaces>
|
376 |
+
<schedule>
|
377 |
+
<cron_expr>0 2 1 * *</cron_expr>
|
378 |
+
</schedule>
|
379 |
+
<run>
|
380 |
+
<model>profileolabs_shoppingflux/manageorders_observer::updateMarketplaceList</model>
|
381 |
+
</run>
|
382 |
+
</update_marketplaces>
|
383 |
<export_update_stock_shoppingflux>
|
384 |
<schedule>
|
385 |
<cron_expr>*/30 * * * *</cron_expr>
|
app/code/community/Profileolabs/Shoppingflux/etc/marketplaces.csv
ADDED
@@ -0,0 +1,55 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Amazon
|
2 |
+
Aushopping
|
3 |
+
BackMarket
|
4 |
+
Boulanger
|
5 |
+
Boutwik
|
6 |
+
Brandalley
|
7 |
+
CDiscount
|
8 |
+
Commentseruiner
|
9 |
+
Darty
|
10 |
+
Delamaison
|
11 |
+
Docteurdiscount
|
12 |
+
Doctipharma
|
13 |
+
eBay
|
14 |
+
Elevenmain
|
15 |
+
Etsy
|
16 |
+
Fnac
|
17 |
+
GaleriesLafayette
|
18 |
+
Glamour
|
19 |
+
Gosport
|
20 |
+
Gstk
|
21 |
+
Holosfind
|
22 |
+
Houzz
|
23 |
+
jardimarket
|
24 |
+
Jardinermalin
|
25 |
+
Lagranderecre
|
26 |
+
Laredoute
|
27 |
+
Lecomptoirsante
|
28 |
+
Lequipe
|
29 |
+
Menlook
|
30 |
+
Mercadolibre
|
31 |
+
Milleunepharmacies
|
32 |
+
Mistergooddeal
|
33 |
+
Monechelle
|
34 |
+
Moneden
|
35 |
+
NatureEtDecouvertes
|
36 |
+
Oclio
|
37 |
+
Pixmania
|
38 |
+
PlaceDuMariage
|
39 |
+
PriceMinister
|
40 |
+
Privalia
|
41 |
+
Rakuten
|
42 |
+
rakutenes
|
43 |
+
Rdc
|
44 |
+
Redoute
|
45 |
+
Ricardo
|
46 |
+
Rueducommerce
|
47 |
+
Rueducommerceean
|
48 |
+
Sears
|
49 |
+
Spartoo
|
50 |
+
Starqos
|
51 |
+
Tap
|
52 |
+
Thebeautyst
|
53 |
+
Tootici
|
54 |
+
Wizacha
|
55 |
+
Yodetiendas
|
app/code/community/Profileolabs/Shoppingflux/etc/system.xml
CHANGED
@@ -158,7 +158,7 @@
|
|
158 |
</manageorders>
|
159 |
<import_customer translate="label" module="profileolabs_shoppingflux">
|
160 |
<label>Customer Import</label>
|
161 |
-
<frontend_model>profileolabs_shoppingflux/
|
162 |
<show_in_default>0</show_in_default>
|
163 |
<show_in_website>0</show_in_website>
|
164 |
<show_in_store>1</show_in_store>
|
@@ -203,301 +203,11 @@
|
|
203 |
<show_in_store>1</show_in_store>
|
204 |
<source_model>adminhtml/system_config_source_customer_group</source_model>
|
205 |
</default_group>
|
206 |
-
<amazon_group>
|
207 |
-
<label>Amazon customer group</label>
|
208 |
-
<comment>Leave empty to use default group</comment>
|
209 |
-
<frontend_type>select</frontend_type>
|
210 |
-
<sort_order>30</sort_order>
|
211 |
-
<show_in_default>0</show_in_default>
|
212 |
-
<show_in_website>0</show_in_website>
|
213 |
-
<show_in_store>1</show_in_store>
|
214 |
-
<source_model>adminhtml/system_config_source_customer_group</source_model>
|
215 |
-
</amazon_group>
|
216 |
-
<cdiscount_group>
|
217 |
-
<label>Cdiscount customer group</label>
|
218 |
-
<comment>Leave empty to use default group</comment>
|
219 |
-
<frontend_type>select</frontend_type>
|
220 |
-
<sort_order>40</sort_order>
|
221 |
-
<show_in_default>0</show_in_default>
|
222 |
-
<show_in_website>0</show_in_website>
|
223 |
-
<show_in_store>1</show_in_store>
|
224 |
-
<source_model>adminhtml/system_config_source_customer_group</source_model>
|
225 |
-
</cdiscount_group>
|
226 |
-
<ebay_group>
|
227 |
-
<label>Ebay customer group</label>
|
228 |
-
<comment>Leave empty to use default group</comment>
|
229 |
-
<frontend_type>select</frontend_type>
|
230 |
-
<sort_order>50</sort_order>
|
231 |
-
<show_in_default>0</show_in_default>
|
232 |
-
<show_in_website>0</show_in_website>
|
233 |
-
<show_in_store>1</show_in_store>
|
234 |
-
<source_model>adminhtml/system_config_source_customer_group</source_model>
|
235 |
-
</ebay_group>
|
236 |
-
<fnac_group>
|
237 |
-
<label>Fnac customer group</label>
|
238 |
-
<comment>Leave empty to use default group</comment>
|
239 |
-
<frontend_type>select</frontend_type>
|
240 |
-
<sort_order>50</sort_order>
|
241 |
-
<show_in_default>0</show_in_default>
|
242 |
-
<show_in_website>0</show_in_website>
|
243 |
-
<show_in_store>1</show_in_store>
|
244 |
-
<source_model>adminhtml/system_config_source_customer_group</source_model>
|
245 |
-
</fnac_group>
|
246 |
-
<pixmania_group>
|
247 |
-
<label>Pixmania customer group</label>
|
248 |
-
<comment>Leave empty to use default group</comment>
|
249 |
-
<frontend_type>select</frontend_type>
|
250 |
-
<sort_order>60</sort_order>
|
251 |
-
<show_in_default>0</show_in_default>
|
252 |
-
<show_in_website>0</show_in_website>
|
253 |
-
<show_in_store>1</show_in_store>
|
254 |
-
<source_model>adminhtml/system_config_source_customer_group</source_model>
|
255 |
-
</pixmania_group>
|
256 |
-
<priceminister_group>
|
257 |
-
<label>Priceminister customer group</label>
|
258 |
-
<comment>Leave empty to use default group</comment>
|
259 |
-
<frontend_type>select</frontend_type>
|
260 |
-
<sort_order>60</sort_order>
|
261 |
-
<show_in_default>0</show_in_default>
|
262 |
-
<show_in_website>0</show_in_website>
|
263 |
-
<show_in_store>1</show_in_store>
|
264 |
-
<source_model>adminhtml/system_config_source_customer_group</source_model>
|
265 |
-
</priceminister_group>
|
266 |
-
<rueducommerce_group>
|
267 |
-
<label>Rueducommerce customer group</label>
|
268 |
-
<comment>Leave empty to use default group</comment>
|
269 |
-
<frontend_type>select</frontend_type>
|
270 |
-
<sort_order>60</sort_order>
|
271 |
-
<show_in_default>0</show_in_default>
|
272 |
-
<show_in_website>0</show_in_website>
|
273 |
-
<show_in_store>1</show_in_store>
|
274 |
-
<source_model>adminhtml/system_config_source_customer_group</source_model>
|
275 |
-
</rueducommerce_group>
|
276 |
-
<brandalley_group>
|
277 |
-
<label>Brandalley customer group</label>
|
278 |
-
<comment>Leave empty to use default group</comment>
|
279 |
-
<frontend_type>select</frontend_type>
|
280 |
-
<sort_order>60</sort_order>
|
281 |
-
<show_in_default>0</show_in_default>
|
282 |
-
<show_in_website>0</show_in_website>
|
283 |
-
<show_in_store>1</show_in_store>
|
284 |
-
<source_model>adminhtml/system_config_source_customer_group</source_model>
|
285 |
-
</brandalley_group>
|
286 |
-
<toutaporter_group>
|
287 |
-
<label>ToutAPorter customer group</label>
|
288 |
-
<comment>Leave empty to use default group</comment>
|
289 |
-
<frontend_type>select</frontend_type>
|
290 |
-
<sort_order>60</sort_order>
|
291 |
-
<show_in_default>0</show_in_default>
|
292 |
-
<show_in_website>0</show_in_website>
|
293 |
-
<show_in_store>1</show_in_store>
|
294 |
-
<source_model>adminhtml/system_config_source_customer_group</source_model>
|
295 |
-
</toutaporter_group>
|
296 |
-
<greenrepublic_group>
|
297 |
-
<label>GreenRepublic customer group</label>
|
298 |
-
<comment>Leave empty to use default group</comment>
|
299 |
-
<frontend_type>select</frontend_type>
|
300 |
-
<sort_order>60</sort_order>
|
301 |
-
<show_in_default>0</show_in_default>
|
302 |
-
<show_in_website>0</show_in_website>
|
303 |
-
<show_in_store>1</show_in_store>
|
304 |
-
<source_model>adminhtml/system_config_source_customer_group</source_model>
|
305 |
-
</greenrepublic_group>
|
306 |
-
<laredoute_group>
|
307 |
-
<label>Laredoute customer group</label>
|
308 |
-
<comment>Leave empty to use default group</comment>
|
309 |
-
<frontend_type>select</frontend_type>
|
310 |
-
<sort_order>60</sort_order>
|
311 |
-
<show_in_default>0</show_in_default>
|
312 |
-
<show_in_website>0</show_in_website>
|
313 |
-
<show_in_store>1</show_in_store>
|
314 |
-
<source_model>adminhtml/system_config_source_customer_group</source_model>
|
315 |
-
</laredoute_group>
|
316 |
-
<babyssima_group>
|
317 |
-
<label>Babyssima customer group</label>
|
318 |
-
<comment>Leave empty to use default group</comment>
|
319 |
-
<frontend_type>select</frontend_type>
|
320 |
-
<sort_order>60</sort_order>
|
321 |
-
<show_in_default>0</show_in_default>
|
322 |
-
<show_in_website>0</show_in_website>
|
323 |
-
<show_in_store>1</show_in_store>
|
324 |
-
<source_model>adminhtml/system_config_source_customer_group</source_model>
|
325 |
-
</babyssima_group>
|
326 |
-
<ecitizen_group>
|
327 |
-
<label>Ecitizen customer group</label>
|
328 |
-
<comment>Leave empty to use default group</comment>
|
329 |
-
<frontend_type>select</frontend_type>
|
330 |
-
<sort_order>60</sort_order>
|
331 |
-
<show_in_default>0</show_in_default>
|
332 |
-
<show_in_website>0</show_in_website>
|
333 |
-
<show_in_store>1</show_in_store>
|
334 |
-
<source_model>adminhtml/system_config_source_customer_group</source_model>
|
335 |
-
</ecitizen_group>
|
336 |
-
<decofinder_group>
|
337 |
-
<label>Decofinder customer group</label>
|
338 |
-
<comment>Leave empty to use default group</comment>
|
339 |
-
<frontend_type>select</frontend_type>
|
340 |
-
<sort_order>60</sort_order>
|
341 |
-
<show_in_default>0</show_in_default>
|
342 |
-
<show_in_website>0</show_in_website>
|
343 |
-
<show_in_store>1</show_in_store>
|
344 |
-
<source_model>adminhtml/system_config_source_customer_group</source_model>
|
345 |
-
</decofinder_group>
|
346 |
-
<docteurdiscount_group>
|
347 |
-
<label>Docteurdiscount customer group</label>
|
348 |
-
<comment>Leave empty to use default group</comment>
|
349 |
-
<frontend_type>select</frontend_type>
|
350 |
-
<sort_order>60</sort_order>
|
351 |
-
<show_in_default>0</show_in_default>
|
352 |
-
<show_in_website>0</show_in_website>
|
353 |
-
<show_in_store>1</show_in_store>
|
354 |
-
<source_model>adminhtml/system_config_source_customer_group</source_model>
|
355 |
-
</docteurdiscount_group>
|
356 |
-
<glamour_group>
|
357 |
-
<label>Glamour customer group</label>
|
358 |
-
<comment>Leave empty to use default group</comment>
|
359 |
-
<frontend_type>select</frontend_type>
|
360 |
-
<sort_order>60</sort_order>
|
361 |
-
<show_in_default>0</show_in_default>
|
362 |
-
<show_in_website>0</show_in_website>
|
363 |
-
<show_in_store>1</show_in_store>
|
364 |
-
<source_model>adminhtml/system_config_source_customer_group</source_model>
|
365 |
-
</glamour_group>
|
366 |
-
<gstk_group>
|
367 |
-
<label>Gstk customer group</label>
|
368 |
-
<comment>Leave empty to use default group</comment>
|
369 |
-
<frontend_type>select</frontend_type>
|
370 |
-
<sort_order>60</sort_order>
|
371 |
-
<show_in_default>0</show_in_default>
|
372 |
-
<show_in_website>0</show_in_website>
|
373 |
-
<show_in_store>1</show_in_store>
|
374 |
-
<source_model>adminhtml/system_config_source_customer_group</source_model>
|
375 |
-
</gstk_group>
|
376 |
-
<mistergooddeal_group>
|
377 |
-
<label>MisterGoodDeal customer group</label>
|
378 |
-
<comment>Leave empty to use default group</comment>
|
379 |
-
<frontend_type>select</frontend_type>
|
380 |
-
<sort_order>70</sort_order>
|
381 |
-
<show_in_default>0</show_in_default>
|
382 |
-
<show_in_website>0</show_in_website>
|
383 |
-
<show_in_store>1</show_in_store>
|
384 |
-
<source_model>adminhtml/system_config_source_customer_group</source_model>
|
385 |
-
</mistergooddeal_group>
|
386 |
-
<placedumariage_group>
|
387 |
-
<label>PlaceDuMariage customer group</label>
|
388 |
-
<comment>Leave empty to use default group</comment>
|
389 |
-
<frontend_type>select</frontend_type>
|
390 |
-
<sort_order>70</sort_order>
|
391 |
-
<show_in_default>0</show_in_default>
|
392 |
-
<show_in_website>0</show_in_website>
|
393 |
-
<show_in_store>1</show_in_store>
|
394 |
-
<source_model>adminhtml/system_config_source_customer_group</source_model>
|
395 |
-
</placedumariage_group>
|
396 |
-
<tap_group>
|
397 |
-
<label>Tap customer group</label>
|
398 |
-
<comment>Leave empty to use default group</comment>
|
399 |
-
<frontend_type>select</frontend_type>
|
400 |
-
<sort_order>70</sort_order>
|
401 |
-
<show_in_default>0</show_in_default>
|
402 |
-
<show_in_website>0</show_in_website>
|
403 |
-
<show_in_store>1</show_in_store>
|
404 |
-
<source_model>adminhtml/system_config_source_customer_group</source_model>
|
405 |
-
</tap_group>
|
406 |
-
<spartoo_group>
|
407 |
-
<label>Spartoo customer group</label>
|
408 |
-
<comment>Leave empty to use default group</comment>
|
409 |
-
<frontend_type>select</frontend_type>
|
410 |
-
<sort_order>70</sort_order>
|
411 |
-
<show_in_default>0</show_in_default>
|
412 |
-
<show_in_website>0</show_in_website>
|
413 |
-
<show_in_store>1</show_in_store>
|
414 |
-
<source_model>adminhtml/system_config_source_customer_group</source_model>
|
415 |
-
</spartoo_group>
|
416 |
-
<jardinermalin_group>
|
417 |
-
<label>Jardinermalin customer group</label>
|
418 |
-
<comment>Leave empty to use default group</comment>
|
419 |
-
<frontend_type>select</frontend_type>
|
420 |
-
<sort_order>70</sort_order>
|
421 |
-
<show_in_default>0</show_in_default>
|
422 |
-
<show_in_website>0</show_in_website>
|
423 |
-
<show_in_store>1</show_in_store>
|
424 |
-
<source_model>adminhtml/system_config_source_customer_group</source_model>
|
425 |
-
</jardinermalin_group>
|
426 |
-
<monechelle_group>
|
427 |
-
<label>Monechelle customer group</label>
|
428 |
-
<comment>Leave empty to use default group</comment>
|
429 |
-
<frontend_type>select</frontend_type>
|
430 |
-
<sort_order>70</sort_order>
|
431 |
-
<show_in_default>0</show_in_default>
|
432 |
-
<show_in_website>0</show_in_website>
|
433 |
-
<show_in_store>1</show_in_store>
|
434 |
-
<source_model>adminhtml/system_config_source_customer_group</source_model>
|
435 |
-
</monechelle_group>
|
436 |
-
<localismarket_group>
|
437 |
-
<label>Localismarket customer group</label>
|
438 |
-
<comment>Leave empty to use default group</comment>
|
439 |
-
<frontend_type>select</frontend_type>
|
440 |
-
<sort_order>70</sort_order>
|
441 |
-
<show_in_default>0</show_in_default>
|
442 |
-
<show_in_website>0</show_in_website>
|
443 |
-
<show_in_store>1</show_in_store>
|
444 |
-
<source_model>adminhtml/system_config_source_customer_group</source_model>
|
445 |
-
</localismarket_group>
|
446 |
-
<galerieslafayette_group>
|
447 |
-
<label>GaleriesLafayette customer group</label>
|
448 |
-
<comment>Leave empty to use default group</comment>
|
449 |
-
<frontend_type>select</frontend_type>
|
450 |
-
<sort_order>70</sort_order>
|
451 |
-
<show_in_default>0</show_in_default>
|
452 |
-
<show_in_website>0</show_in_website>
|
453 |
-
<show_in_store>1</show_in_store>
|
454 |
-
<source_model>adminhtml/system_config_source_customer_group</source_model>
|
455 |
-
</galerieslafayette_group>
|
456 |
-
<monchouchou_group>
|
457 |
-
<label>Monchouchou customer group</label>
|
458 |
-
<comment>Leave empty to use default group</comment>
|
459 |
-
<frontend_type>select</frontend_type>
|
460 |
-
<sort_order>70</sort_order>
|
461 |
-
<show_in_default>0</show_in_default>
|
462 |
-
<show_in_website>0</show_in_website>
|
463 |
-
<show_in_store>1</show_in_store>
|
464 |
-
<source_model>adminhtml/system_config_source_customer_group</source_model>
|
465 |
-
</monchouchou_group>
|
466 |
-
<elevenmain_group>
|
467 |
-
<label>Elevenmain customer group</label>
|
468 |
-
<comment>Leave empty to use default group</comment>
|
469 |
-
<frontend_type>select</frontend_type>
|
470 |
-
<sort_order>70</sort_order>
|
471 |
-
<show_in_default>0</show_in_default>
|
472 |
-
<show_in_website>0</show_in_website>
|
473 |
-
<show_in_store>1</show_in_store>
|
474 |
-
<source_model>adminhtml/system_config_source_customer_group</source_model>
|
475 |
-
</elevenmain_group>
|
476 |
-
<sears_group>
|
477 |
-
<label>Sears customer group</label>
|
478 |
-
<comment>Leave empty to use default group</comment>
|
479 |
-
<frontend_type>select</frontend_type>
|
480 |
-
<sort_order>70</sort_order>
|
481 |
-
<show_in_default>0</show_in_default>
|
482 |
-
<show_in_website>0</show_in_website>
|
483 |
-
<show_in_store>1</show_in_store>
|
484 |
-
<source_model>adminhtml/system_config_source_customer_group</source_model>
|
485 |
-
</sears_group>
|
486 |
-
<wizacha_group>
|
487 |
-
<label>Wizacha customer group</label>
|
488 |
-
<comment>Leave empty to use default group</comment>
|
489 |
-
<frontend_type>select</frontend_type>
|
490 |
-
<sort_order>70</sort_order>
|
491 |
-
<show_in_default>0</show_in_default>
|
492 |
-
<show_in_website>0</show_in_website>
|
493 |
-
<show_in_store>1</show_in_store>
|
494 |
-
<source_model>adminhtml/system_config_source_customer_group</source_model>
|
495 |
-
</wizacha_group>
|
496 |
</fields>
|
497 |
</import_customer>
|
498 |
<shipping_method translate="label" module="profileolabs_shoppingflux">
|
499 |
<label>Shipping Method</label>
|
500 |
-
<frontend_model>profileolabs_shoppingflux/
|
501 |
<show_in_default>0</show_in_default>
|
502 |
<show_in_website>0</show_in_website>
|
503 |
<show_in_store>1</show_in_store>
|
@@ -513,302 +223,12 @@
|
|
513 |
<show_in_store>1</show_in_store>
|
514 |
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
515 |
</default_method>
|
516 |
-
<amazon_method>
|
517 |
-
<label>Amazon shipping method</label>
|
518 |
-
<comment>Leave empty to use default shipping method.</comment>
|
519 |
-
<frontend_type>select</frontend_type>
|
520 |
-
<sort_order>30</sort_order>
|
521 |
-
<show_in_default>0</show_in_default>
|
522 |
-
<show_in_website>0</show_in_website>
|
523 |
-
<show_in_store>1</show_in_store>
|
524 |
-
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
525 |
-
</amazon_method>
|
526 |
-
<cdiscount_method>
|
527 |
-
<label>Cdiscount shipping method</label>
|
528 |
-
<comment>Leave empty to use default shipping method.</comment>
|
529 |
-
<frontend_type>select</frontend_type>
|
530 |
-
<sort_order>40</sort_order>
|
531 |
-
<show_in_default>0</show_in_default>
|
532 |
-
<show_in_website>0</show_in_website>
|
533 |
-
<show_in_store>1</show_in_store>
|
534 |
-
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
535 |
-
</cdiscount_method>
|
536 |
-
<ebay_method>
|
537 |
-
<label>Ebay shipping method</label>
|
538 |
-
<comment>Leave empty to use default shipping method.</comment>
|
539 |
-
<frontend_type>select</frontend_type>
|
540 |
-
<sort_order>50</sort_order>
|
541 |
-
<show_in_default>0</show_in_default>
|
542 |
-
<show_in_website>0</show_in_website>
|
543 |
-
<show_in_store>1</show_in_store>
|
544 |
-
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
545 |
-
</ebay_method>
|
546 |
-
<fnac_method>
|
547 |
-
<label>Fnac shipping method</label>
|
548 |
-
<comment>Leave empty to use default shipping method.</comment>
|
549 |
-
<frontend_type>select</frontend_type>
|
550 |
-
<sort_order>50</sort_order>
|
551 |
-
<show_in_default>0</show_in_default>
|
552 |
-
<show_in_website>0</show_in_website>
|
553 |
-
<show_in_store>1</show_in_store>
|
554 |
-
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
555 |
-
</fnac_method>
|
556 |
-
<pixmania_method>
|
557 |
-
<label>Pixmania shipping method</label>
|
558 |
-
<comment>Leave empty to use default shipping method.</comment>
|
559 |
-
<frontend_type>select</frontend_type>
|
560 |
-
<sort_order>60</sort_order>
|
561 |
-
<show_in_default>0</show_in_default>
|
562 |
-
<show_in_website>0</show_in_website>
|
563 |
-
<show_in_store>1</show_in_store>
|
564 |
-
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
565 |
-
</pixmania_method>
|
566 |
-
<priceminister_method>
|
567 |
-
<label>Priceminister shipping method</label>
|
568 |
-
<comment>Leave empty to use default shipping method.</comment>
|
569 |
-
<frontend_type>select</frontend_type>
|
570 |
-
<sort_order>60</sort_order>
|
571 |
-
<show_in_default>0</show_in_default>
|
572 |
-
<show_in_website>0</show_in_website>
|
573 |
-
<show_in_store>1</show_in_store>
|
574 |
-
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
575 |
-
</priceminister_method>
|
576 |
-
<rueducommerce_method>
|
577 |
-
<label>Rueducommerce shipping method</label>
|
578 |
-
<comment>Leave empty to use default shipping method.</comment>
|
579 |
-
<frontend_type>select</frontend_type>
|
580 |
-
<sort_order>60</sort_order>
|
581 |
-
<show_in_default>0</show_in_default>
|
582 |
-
<show_in_website>0</show_in_website>
|
583 |
-
<show_in_store>1</show_in_store>
|
584 |
-
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
585 |
-
</rueducommerce_method>
|
586 |
-
<brandalley_method>
|
587 |
-
<label>Brandalley shipping method</label>
|
588 |
-
<comment>Leave empty to use default shipping method.</comment>
|
589 |
-
<frontend_type>select</frontend_type>
|
590 |
-
<sort_order>60</sort_order>
|
591 |
-
<show_in_default>0</show_in_default>
|
592 |
-
<show_in_website>0</show_in_website>
|
593 |
-
<show_in_store>1</show_in_store>
|
594 |
-
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
595 |
-
</brandalley_method>
|
596 |
-
<toutaporter_method>
|
597 |
-
<label>ToutAPorter shipping method</label>
|
598 |
-
<comment>Leave empty to use default shipping method.</comment>
|
599 |
-
<frontend_type>select</frontend_type>
|
600 |
-
<sort_order>60</sort_order>
|
601 |
-
<show_in_default>0</show_in_default>
|
602 |
-
<show_in_website>0</show_in_website>
|
603 |
-
<show_in_store>1</show_in_store>
|
604 |
-
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
605 |
-
</toutaporter_method>
|
606 |
-
<greenrepublic_method>
|
607 |
-
<label>GreenRepublic shipping method</label>
|
608 |
-
<comment>Leave empty to use default shipping method.</comment>
|
609 |
-
<frontend_type>select</frontend_type>
|
610 |
-
<sort_order>60</sort_order>
|
611 |
-
<show_in_default>0</show_in_default>
|
612 |
-
<show_in_website>0</show_in_website>
|
613 |
-
<show_in_store>1</show_in_store>
|
614 |
-
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
615 |
-
</greenrepublic_method>
|
616 |
-
<laredoute_method>
|
617 |
-
<label>Laredoute shipping method</label>
|
618 |
-
<comment>Leave empty to use default shipping method.</comment>
|
619 |
-
<frontend_type>select</frontend_type>
|
620 |
-
<sort_order>60</sort_order>
|
621 |
-
<show_in_default>0</show_in_default>
|
622 |
-
<show_in_website>0</show_in_website>
|
623 |
-
<show_in_store>1</show_in_store>
|
624 |
-
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
625 |
-
</laredoute_method>
|
626 |
-
<babyssima_method>
|
627 |
-
<label>Babyssima shipping method</label>
|
628 |
-
<comment>Leave empty to use default shipping method.</comment>
|
629 |
-
<frontend_type>select</frontend_type>
|
630 |
-
<sort_order>60</sort_order>
|
631 |
-
<show_in_default>0</show_in_default>
|
632 |
-
<show_in_website>0</show_in_website>
|
633 |
-
<show_in_store>1</show_in_store>
|
634 |
-
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
635 |
-
</babyssima_method>
|
636 |
-
<monechelle_method>
|
637 |
-
<label>Monechelle shipping method</label>
|
638 |
-
<comment>Leave empty to use default shipping method.</comment>
|
639 |
-
<frontend_type>select</frontend_type>
|
640 |
-
<sort_order>60</sort_order>
|
641 |
-
<show_in_default>0</show_in_default>
|
642 |
-
<show_in_website>0</show_in_website>
|
643 |
-
<show_in_store>1</show_in_store>
|
644 |
-
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
645 |
-
</monechelle_method>
|
646 |
-
<ecitizen_method>
|
647 |
-
<label>Ecitizen shipping method</label>
|
648 |
-
<comment>Leave empty to use default shipping method.</comment>
|
649 |
-
<frontend_type>select</frontend_type>
|
650 |
-
<sort_order>60</sort_order>
|
651 |
-
<show_in_default>0</show_in_default>
|
652 |
-
<show_in_website>0</show_in_website>
|
653 |
-
<show_in_store>1</show_in_store>
|
654 |
-
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
655 |
-
</ecitizen_method>
|
656 |
-
<decofinder_method>
|
657 |
-
<label>Decofinder shipping method</label>
|
658 |
-
<comment>Leave empty to use default shipping method.</comment>
|
659 |
-
<frontend_type>select</frontend_type>
|
660 |
-
<sort_order>60</sort_order>
|
661 |
-
<show_in_default>0</show_in_default>
|
662 |
-
<show_in_website>0</show_in_website>
|
663 |
-
<show_in_store>1</show_in_store>
|
664 |
-
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
665 |
-
</decofinder_method>
|
666 |
-
<docteurdiscount_method>
|
667 |
-
<label>Docteurdiscount shipping method</label>
|
668 |
-
<comment>Leave empty to use default shipping method.</comment>
|
669 |
-
<frontend_type>select</frontend_type>
|
670 |
-
<sort_order>60</sort_order>
|
671 |
-
<show_in_default>0</show_in_default>
|
672 |
-
<show_in_website>0</show_in_website>
|
673 |
-
<show_in_store>1</show_in_store>
|
674 |
-
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
675 |
-
</docteurdiscount_method>
|
676 |
-
<glamour_method>
|
677 |
-
<label>Glamour shipping method</label>
|
678 |
-
<comment>Leave empty to use default shipping method.</comment>
|
679 |
-
<frontend_type>select</frontend_type>
|
680 |
-
<sort_order>60</sort_order>
|
681 |
-
<show_in_default>0</show_in_default>
|
682 |
-
<show_in_website>0</show_in_website>
|
683 |
-
<show_in_store>1</show_in_store>
|
684 |
-
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
685 |
-
</glamour_method>
|
686 |
-
<gstk_method>
|
687 |
-
<label>Gstk shipping method</label>
|
688 |
-
<comment>Leave empty to use default shipping method.</comment>
|
689 |
-
<frontend_type>select</frontend_type>
|
690 |
-
<sort_order>60</sort_order>
|
691 |
-
<show_in_default>0</show_in_default>
|
692 |
-
<show_in_website>0</show_in_website>
|
693 |
-
<show_in_store>1</show_in_store>
|
694 |
-
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
695 |
-
</gstk_method>
|
696 |
-
<mistergooddeal_method>
|
697 |
-
<label>Mistergooddeal shipping method</label>
|
698 |
-
<comment>Leave empty to use default shipping method.</comment>
|
699 |
-
<frontend_type>select</frontend_type>
|
700 |
-
<sort_order>60</sort_order>
|
701 |
-
<show_in_default>0</show_in_default>
|
702 |
-
<show_in_website>0</show_in_website>
|
703 |
-
<show_in_store>1</show_in_store>
|
704 |
-
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
705 |
-
</mistergooddeal_method>
|
706 |
-
<placedumariage_method>
|
707 |
-
<label>PlaceDuMariage shipping method</label>
|
708 |
-
<comment>Leave empty to use default shipping method.</comment>
|
709 |
-
<frontend_type>select</frontend_type>
|
710 |
-
<sort_order>60</sort_order>
|
711 |
-
<show_in_default>0</show_in_default>
|
712 |
-
<show_in_website>0</show_in_website>
|
713 |
-
<show_in_store>1</show_in_store>
|
714 |
-
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
715 |
-
</placedumariage_method>
|
716 |
-
<tap_method>
|
717 |
-
<label>Tout à porter shipping method</label>
|
718 |
-
<comment>Leave empty to use default shipping method.</comment>
|
719 |
-
<frontend_type>select</frontend_type>
|
720 |
-
<sort_order>60</sort_order>
|
721 |
-
<show_in_default>0</show_in_default>
|
722 |
-
<show_in_website>0</show_in_website>
|
723 |
-
<show_in_store>1</show_in_store>
|
724 |
-
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
725 |
-
</tap_method>
|
726 |
-
<spartoo_method>
|
727 |
-
<label>Spartoo shipping method</label>
|
728 |
-
<comment>Leave empty to use default shipping method.</comment>
|
729 |
-
<frontend_type>select</frontend_type>
|
730 |
-
<sort_order>60</sort_order>
|
731 |
-
<show_in_default>0</show_in_default>
|
732 |
-
<show_in_website>0</show_in_website>
|
733 |
-
<show_in_store>1</show_in_store>
|
734 |
-
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
735 |
-
</spartoo_method>
|
736 |
-
<jardinermalin_method>
|
737 |
-
<label>Jardinermalin shipping method</label>
|
738 |
-
<comment>Leave empty to use default shipping method.</comment>
|
739 |
-
<frontend_type>select</frontend_type>
|
740 |
-
<sort_order>60</sort_order>
|
741 |
-
<show_in_default>0</show_in_default>
|
742 |
-
<show_in_website>0</show_in_website>
|
743 |
-
<show_in_store>1</show_in_store>
|
744 |
-
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
745 |
-
</jardinermalin_method>
|
746 |
-
<localismarket_method>
|
747 |
-
<label>Localismarket shipping method</label>
|
748 |
-
<comment>Leave empty to use default shipping method.</comment>
|
749 |
-
<frontend_type>select</frontend_type>
|
750 |
-
<sort_order>60</sort_order>
|
751 |
-
<show_in_default>0</show_in_default>
|
752 |
-
<show_in_website>0</show_in_website>
|
753 |
-
<show_in_store>1</show_in_store>
|
754 |
-
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
755 |
-
</localismarket_method>
|
756 |
-
<galerieslafayette_method>
|
757 |
-
<label>GaleriesLafayette shipping method</label>
|
758 |
-
<comment>Leave empty to use default shipping method.</comment>
|
759 |
-
<frontend_type>select</frontend_type>
|
760 |
-
<sort_order>60</sort_order>
|
761 |
-
<show_in_default>0</show_in_default>
|
762 |
-
<show_in_website>0</show_in_website>
|
763 |
-
<show_in_store>1</show_in_store>
|
764 |
-
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
765 |
-
</galerieslafayette_method>
|
766 |
-
<monchouchou_method>
|
767 |
-
<label>Monchouchou shipping method</label>
|
768 |
-
<comment>Leave empty to use default shipping method.</comment>
|
769 |
-
<frontend_type>select</frontend_type>
|
770 |
-
<sort_order>60</sort_order>
|
771 |
-
<show_in_default>0</show_in_default>
|
772 |
-
<show_in_website>0</show_in_website>
|
773 |
-
<show_in_store>1</show_in_store>
|
774 |
-
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
775 |
-
</monchouchou_method>
|
776 |
-
<elevenmain_method>
|
777 |
-
<label>Elevenmain shipping method</label>
|
778 |
-
<comment>Leave empty to use default shipping method.</comment>
|
779 |
-
<frontend_type>select</frontend_type>
|
780 |
-
<sort_order>60</sort_order>
|
781 |
-
<show_in_default>0</show_in_default>
|
782 |
-
<show_in_website>0</show_in_website>
|
783 |
-
<show_in_store>1</show_in_store>
|
784 |
-
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
785 |
-
</elevenmain_method>
|
786 |
-
<sears_method>
|
787 |
-
<label>Sears shipping method</label>
|
788 |
-
<comment>Leave empty to use default shipping method.</comment>
|
789 |
-
<frontend_type>select</frontend_type>
|
790 |
-
<sort_order>60</sort_order>
|
791 |
-
<show_in_default>0</show_in_default>
|
792 |
-
<show_in_website>0</show_in_website>
|
793 |
-
<show_in_store>1</show_in_store>
|
794 |
-
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
795 |
-
</sears_method>
|
796 |
-
<wizacha_method>
|
797 |
-
<label>Wizacha shipping method</label>
|
798 |
-
<comment>Leave empty to use default shipping method.</comment>
|
799 |
-
<frontend_type>select</frontend_type>
|
800 |
-
<sort_order>60</sort_order>
|
801 |
-
<show_in_default>0</show_in_default>
|
802 |
-
<show_in_website>0</show_in_website>
|
803 |
-
<show_in_store>1</show_in_store>
|
804 |
-
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
805 |
-
</wizacha_method>
|
806 |
|
807 |
</fields>
|
808 |
</shipping_method>
|
809 |
<advanced_shipping_method translate="label" module="profileolabs_shoppingflux">
|
810 |
<label>Advanced Shipping Methods Mapping</label>
|
811 |
-
<frontend_model>profileolabs_shoppingflux/
|
812 |
<show_in_default>0</show_in_default>
|
813 |
<show_in_website>0</show_in_website>
|
814 |
<show_in_store>1</show_in_store>
|
158 |
</manageorders>
|
159 |
<import_customer translate="label" module="profileolabs_shoppingflux">
|
160 |
<label>Customer Import</label>
|
161 |
+
<frontend_model>profileolabs_shoppingflux/manageorders_adminhtml_system_config_form_fieldset_customer_group</frontend_model>
|
162 |
<show_in_default>0</show_in_default>
|
163 |
<show_in_website>0</show_in_website>
|
164 |
<show_in_store>1</show_in_store>
|
203 |
<show_in_store>1</show_in_store>
|
204 |
<source_model>adminhtml/system_config_source_customer_group</source_model>
|
205 |
</default_group>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
206 |
</fields>
|
207 |
</import_customer>
|
208 |
<shipping_method translate="label" module="profileolabs_shoppingflux">
|
209 |
<label>Shipping Method</label>
|
210 |
+
<frontend_model>profileolabs_shoppingflux/manageorders_adminhtml_system_config_form_fieldset_shipping_method</frontend_model>
|
211 |
<show_in_default>0</show_in_default>
|
212 |
<show_in_website>0</show_in_website>
|
213 |
<show_in_store>1</show_in_store>
|
223 |
<show_in_store>1</show_in_store>
|
224 |
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
225 |
</default_method>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
226 |
|
227 |
</fields>
|
228 |
</shipping_method>
|
229 |
<advanced_shipping_method translate="label" module="profileolabs_shoppingflux">
|
230 |
<label>Advanced Shipping Methods Mapping</label>
|
231 |
+
<frontend_model>profileolabs_shoppingflux/manageorders_adminhtml_system_config_form_fieldset_shipping_method_extra</frontend_model>
|
232 |
<show_in_default>0</show_in_default>
|
233 |
<show_in_website>0</show_in_website>
|
234 |
<show_in_store>1</show_in_store>
|
app/locale/en_US/Profileolabs_Shoppingflux.csv
CHANGED
@@ -71,68 +71,12 @@
|
|
71 |
"Import mobile phone instead of desk phone, if available","Import mobile phone instead of desk phone, if available"
|
72 |
"Default customer group","Default customer group"
|
73 |
"Leave empty to use default group","Leave empty to use default group"
|
74 |
-
"
|
75 |
-
"Cdiscount customer group","Cdiscount customer group"
|
76 |
-
"Ebay customer group","Ebay customer group"
|
77 |
-
"Fnac customer group","Fnac customer group"
|
78 |
-
"Pixmania customer group","Pixmania customer group"
|
79 |
-
"Priceminister customer group","Priceminister customer group"
|
80 |
-
"Rueducommerce customer group","Rueducommerce customer group"
|
81 |
-
"Brandalley customer group","Brandalley customer group"
|
82 |
-
"ToutAPorter customer group","ToutAPorter customer group"
|
83 |
-
"GreenRepublic customer group","GreenRepublic customer group"
|
84 |
-
"Laredoute customer group","Laredoute customer group"
|
85 |
-
"Babyssima customer group","Babyssima customer group"
|
86 |
-
"Ecitizen customer group","Ecitizen customer group"
|
87 |
-
"Decofinder customer group","Decofinder customer group"
|
88 |
-
"Docteurdiscount customer group","Docteurdiscount customer group"
|
89 |
-
"Glamour customer group","Glamour customer group"
|
90 |
-
"Gstk customer group","Gstk customer group"
|
91 |
-
"MisterGoodDeal customer group","MisterGoodDeal customer group"
|
92 |
-
"PlaceDuMariage customer group","PlaceDuMariage customer group"
|
93 |
-
"Tap customer group","Tap customer group"
|
94 |
-
"Spartoo customer group","Spartoo customer group"
|
95 |
-
"Jardinermalin customer group","Jardinermalin customer group"
|
96 |
-
"Monechelle customer group","Monechelle customer group"
|
97 |
-
"Localismarket customer group","Localismarket customer group"
|
98 |
-
"GaleriesLafayette customer group","GaleriesLafayette customer group"
|
99 |
-
"Monchouchou customer group","Monchouchou customer group"
|
100 |
-
"Elevenmain customer group","Elevenmain customer group"
|
101 |
-
"Sears customer group","Sears customer group"
|
102 |
-
"Wizacha customer group","Wizacha customer group"
|
103 |
"Shipping Method","Shipping Method"
|
104 |
"Default shipping method","Default shipping method"
|
105 |
"Specific shipping method to use for imported ShoppingFlux's order","Specific shipping method to use for imported ShoppingFlux's order"
|
106 |
"Leave empty to use default shipping method.","Leave empty to use default shipping method."
|
107 |
-
"
|
108 |
-
"Cdiscount shipping method","Cdiscount shipping method"
|
109 |
-
"Ebay shipping method","Ebay shipping method"
|
110 |
-
"Fnac shipping method","Fnac shipping method"
|
111 |
-
"Pixmania shipping method","Pixmania shipping method"
|
112 |
-
"Priceminister shipping method","Priceminister shipping method"
|
113 |
-
"Rueducommerce shipping method","Rueducommerce shipping method"
|
114 |
-
"Brandalley shipping method","Brandalley shipping method"
|
115 |
-
"ToutAPorter shipping method","ToutAPorter shipping method"
|
116 |
-
"GreenRepublic shipping method","GreenRepublic shipping method"
|
117 |
-
"Laredoute shipping method","Laredoute shipping method"
|
118 |
-
"Babyssima shipping method","Babyssima shipping method"
|
119 |
-
"Monechelle shipping method","Monechelle shipping method"
|
120 |
-
"Ecitizen shipping method","Ecitizen shipping method"
|
121 |
-
"Decofinder shipping method","Decofinder shipping method"
|
122 |
-
"Docteurdiscount shipping method","Docteurdiscount shipping method"
|
123 |
-
"Glamour shipping method","Glamour shipping method"
|
124 |
-
"Gstk shipping method","Gstk shipping method"
|
125 |
-
"Mistergooddeal shipping method","Mistergooddeal shipping method"
|
126 |
-
"PlaceDuMariage shipping method","PlaceDuMariage shipping method"
|
127 |
-
"Tout à porter shipping method","Tout à porter shipping method"
|
128 |
-
"Spartoo shipping method","Spartoo shipping method"
|
129 |
-
"Jardinermalin shipping method","Jardinermalin shipping method"
|
130 |
-
"Localismarket shipping method","Localismarket shipping method"
|
131 |
-
"GaleriesLafayette shipping method","GaleriesLafayette shipping method"
|
132 |
-
"Monchouchou shipping method","Monchouchou shipping method"
|
133 |
-
"Elevenmain shipping method","Elevenmain shipping method"
|
134 |
-
"Sears shipping method","Sears shipping method"
|
135 |
-
"Wizacha shipping method","Wizacha shipping method"
|
136 |
"Advanced Shipping Methods Mapping","Advanced Shipping Methods Mapping"
|
137 |
"Shipment Update","Shipment Update"
|
138 |
"Max time before sending shipment update to marketplace","Max time before sending shipment update to marketplace"
|
71 |
"Import mobile phone instead of desk phone, if available","Import mobile phone instead of desk phone, if available"
|
72 |
"Default customer group","Default customer group"
|
73 |
"Leave empty to use default group","Leave empty to use default group"
|
74 |
+
"%s customer group","%s customer group"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
75 |
"Shipping Method","Shipping Method"
|
76 |
"Default shipping method","Default shipping method"
|
77 |
"Specific shipping method to use for imported ShoppingFlux's order","Specific shipping method to use for imported ShoppingFlux's order"
|
78 |
"Leave empty to use default shipping method.","Leave empty to use default shipping method."
|
79 |
+
"%s shipping method","%s shipping method"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
80 |
"Advanced Shipping Methods Mapping","Advanced Shipping Methods Mapping"
|
81 |
"Shipment Update","Shipment Update"
|
82 |
"Max time before sending shipment update to marketplace","Max time before sending shipment update to marketplace"
|
app/locale/fr_FR/Profileolabs_Shoppingflux.csv
CHANGED
@@ -71,68 +71,12 @@
|
|
71 |
"Import mobile phone instead of desk phone, if available","Importer le mobile plutot que le fixe, si disponible"
|
72 |
"Default customer group","Groupe client par défaut"
|
73 |
"Leave empty to use default group","Laisser vide pour utilisé le groupe client par défaut"
|
74 |
-
"
|
75 |
-
"Cdiscount customer group","Groupe client Cdiscount"
|
76 |
-
"Ebay customer group","Groupe client Ebay"
|
77 |
-
"Fnac customer group","Groupe client Fnac"
|
78 |
-
"Pixmania customer group","Groupe client Pixmania"
|
79 |
-
"Priceminister customer group","Groupe client Priceminister"
|
80 |
-
"Rueducommerce customer group","Groupe client Rueducommerce"
|
81 |
-
"Brandalley customer group","Groupe client Brandalley"
|
82 |
-
"ToutAPorter customer group","Groupe client ToutAPorter"
|
83 |
-
"GreenRepublic customer group","Groupe client GreenRepublic"
|
84 |
-
"Laredoute customer group","Groupe client Laredoute"
|
85 |
-
"Babyssima customer group","Groupe client Babyssima"
|
86 |
-
"Ecitizen customer group","Groupe client Ecitizen"
|
87 |
-
"Decofinder customer group","Groupe client Decofinder"
|
88 |
-
"Docteurdiscount customer group","Groupe client Docteurdiscount"
|
89 |
-
"Glamour customer group","Groupe client Glamour"
|
90 |
-
"Gstk customer group","Groupe client Gstk"
|
91 |
-
"MisterGoodDeal customer group","Groupe client MisterGoodDeal"
|
92 |
-
"PlaceDuMariage customer group","Groupe client PlaceDuMariage"
|
93 |
-
"Tap customer group","Groupe client Tap"
|
94 |
-
"Spartoo customer group","Groupe client Spartoo"
|
95 |
-
"Jardinermalin customer group","Groupe client Jardinermalin"
|
96 |
-
"Monechelle customer group","Groupe client Monechelle"
|
97 |
-
"Localismarket customer group","Groupe client Localismarket"
|
98 |
-
"GaleriesLafayette customer group","Groupe client GaleriesLafayette"
|
99 |
-
"Monchouchou customer group","Groupe client Monchouchou"
|
100 |
-
"Elevenmain customer group","Groupe client Elevenmain"
|
101 |
-
"Sears customer group","Groupe client Sears"
|
102 |
-
"Wizacha customer group","Groupe client Wizacha"
|
103 |
"Shipping Method","Méthode de livraison"
|
104 |
"Default shipping method","Méthode de livraison par défaut"
|
105 |
"Specific shipping method to use for imported ShoppingFlux's order","Méthode de livraison à utiliser lors de l'import de commande"
|
106 |
"Leave empty to use default shipping method.","Laisser vide pour utiliser la méthode de livraison par défaut"
|
107 |
-
"
|
108 |
-
"Cdiscount shipping method","Méthode de livraison Cdiscount"
|
109 |
-
"Ebay shipping method","Méthode de livraison Ebay"
|
110 |
-
"Fnac shipping method","Méthode de livraison Fnac"
|
111 |
-
"Pixmania shipping method","Méthode de livraison Pixmania"
|
112 |
-
"Priceminister shipping method","Méthode de livraison Priceminister"
|
113 |
-
"Rueducommerce shipping method","Méthode de livraison Rueducommerce"
|
114 |
-
"Brandalley shipping method","Méthode de livraison Brandalley"
|
115 |
-
"ToutAPorter shipping method","Méthode de livraison ToutAPorter"
|
116 |
-
"GreenRepublic shipping method","Méthode de livraison GreenRepublic"
|
117 |
-
"Laredoute shipping method","Méthode de livraison Laredoute"
|
118 |
-
"Babyssima shipping method","Méthode de livraison Babyssima"
|
119 |
-
"Monechelle shipping method","Méthode de livraison Monechelle"
|
120 |
-
"Ecitizen shipping method","Méthode de livraison Ecitizen"
|
121 |
-
"Decofinder shipping method","Méthode de livraison Decofinder"
|
122 |
-
"Docteurdiscount shipping method","Méthode de livraison Docteurdiscount"
|
123 |
-
"Glamour shipping method","Méthode de livraison Glamour"
|
124 |
-
"Gstk shipping method","Méthode de livraison Gstk"
|
125 |
-
"Mistergooddeal shipping method","Méthode de livraison Mistergooddeal"
|
126 |
-
"PlaceDuMariage shipping method","Méthode de livraison PlaceDuMariage"
|
127 |
-
"Tout à porter shipping method","Méthode de livraison Tout à porter"
|
128 |
-
"Spartoo shipping method","Méthode de livraison Spartoo"
|
129 |
-
"Jardinermalin shipping method","Méthode de livraison Jardinermalin"
|
130 |
-
"Localismarket shipping method","Méthode de livraison Localismarket"
|
131 |
-
"GaleriesLafayette shipping method","Méthode de livraison GaleriesLafayette"
|
132 |
-
"Monchouchou shipping method","Méthode de livraison Monchouchou"
|
133 |
-
"Elevenmain shipping method","Méthode de livraison Elevenmain"
|
134 |
-
"Sears shipping method","Méthode de livraison Sears"
|
135 |
-
"Wizacha shipping method","Méthode de livraison Wizacha"
|
136 |
"Advanced Shipping Methods Mapping","Méthode de livraison - Mapping avancé"
|
137 |
"Shipment Update","Mise à jour d'expédition"
|
138 |
"Max time before sending shipment update to marketplace","Durée maximum avant l'envoi de l'expédition vers la marketplace"
|
71 |
"Import mobile phone instead of desk phone, if available","Importer le mobile plutot que le fixe, si disponible"
|
72 |
"Default customer group","Groupe client par défaut"
|
73 |
"Leave empty to use default group","Laisser vide pour utilisé le groupe client par défaut"
|
74 |
+
"%s customer group","Groupe client %s"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
75 |
"Shipping Method","Méthode de livraison"
|
76 |
"Default shipping method","Méthode de livraison par défaut"
|
77 |
"Specific shipping method to use for imported ShoppingFlux's order","Méthode de livraison à utiliser lors de l'import de commande"
|
78 |
"Leave empty to use default shipping method.","Laisser vide pour utiliser la méthode de livraison par défaut"
|
79 |
+
"%s shipping method","Méthode de livraison "%s"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
80 |
"Advanced Shipping Methods Mapping","Méthode de livraison - Mapping avancé"
|
81 |
"Shipment Update","Mise à jour d'expédition"
|
82 |
"Max time before sending shipment update to marketplace","Durée maximum avant l'envoi de l'expédition vers la marketplace"
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Profileolabs_Shoppingflux</name>
|
4 |
-
<version>1.0.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://www.opensource.org/licenses/gpl-license.php">GNU General Public License (GPL)</license>
|
7 |
<channel>community</channel>
|
@@ -11,9 +11,9 @@
|
|
11 |
<notes>- Minor bugfixes & improvements
|
12 |
</notes>
|
13 |
<authors><author><name>ShoppingFlux</name><user>ShoppingFlux</user><email>olivier.levy@gmail.com</email></author></authors>
|
14 |
-
<date>2015-
|
15 |
-
<time>
|
16 |
-
<contents><target name="magecommunity"><dir name="Profileolabs"><dir name="Shoppingflux"><dir name="Block"><dir name="Adminhtml"><dir name="Register"><file name="Notification.php" hash="13c5b3fccfd09dca376d4bc03f883384"/></dir><dir name="System"><dir name="Config"><dir name="Form"><dir name="Fieldset"><file name="Abstract.php" hash="9046ac88c58d7768d28047c5102789ae"/></dir></dir></dir></dir></dir><dir name="Export"><dir name="Adminhtml"><dir name="Catalog"><dir name="Category"><dir name="Edit"><file name="Form.php" hash="da466a657f2b80567ef576711a190805"/></dir><dir name="Tab"><file name="Default.php" hash="da1c24f56e463d6e93488633fc41539d"/></dir></dir></dir><file name="Feed.php" hash="a6bfac2be7c99ba5631626404e231ab0"/><file name="Process.php" hash="d5cd1471abfc8ea7f364dfb4610e4fd4"/><dir name="Product"><file name="Grid.php" hash="03b7aa3a458a0405d5d22ce7c0566033"/></dir><file name="Product.php" hash="f71a0d0f25e2484f74f1ceaeee514d3f"/><dir name="Widget"><dir name="Grid"><dir name="Column"><dir name="Renderer"><file name="Bool.php" hash="2717fd3964299bb372c355427c8136d7"/></dir></dir></dir></dir></dir><file name="Flow.php" hash="51cfa87ab0417ff26669a33bd22b50fa"/><file name="Flux.php" hash="c6da5407ccd3df3c5cd34883f02b9490"/><file name="Tracking.php" hash="a01f384121dda81f8ee3faa80ee3a32a"/></dir><dir name="Manageorders"><dir name="Adminhtml"><dir name="Cron"><file name="Grid.php" hash="ddfd5d9374446afafef1f545839e869e"/></dir><file name="Cron.php" hash="1a6a4042d3270b56e2dadc80f5c12cfa"/><file name="Import.php" hash="0d675a1731ca646ba57989b8545f4682"/><dir name="Log"><file name="Grid.php" hash="9170b01b3a6d3d558801faeba745390f"/></dir><file name="Log.php" hash="3336bc53002b82b4ab16d18a4e68e0cb"/><dir name="Order"><file name="Grid.php" hash="00cc7d1bb20437d8f7a547e0acfd7f9c"/><dir name="View"><dir name="Tab"><file name="Shoppingflux.php" hash="c0039acf525620c14cc8a1945d44150e"/></dir></dir></dir><file name="Order.php" hash="a6d45eb0146fb448f72348724c3151df"/><dir name="System"><dir name="Config"><dir name="Form"><dir name="Fieldset"><dir name="Shipping"><file name="Method.php" hash="3133c5e5e3f54a1605d8f59041fb5f1c"/></dir></dir></dir></dir></dir></dir><dir name="Payment"><dir name="Info"><file name="Purchaseorder.php" hash="df942f5c9a19506ef2bf70ca1d4da809"/></dir></dir></dir><dir name="Tracking"><file name="Buyline.php" hash="a60b19ed533b265a7a2aafe75c03c0fa"/><file name="Roi.php" hash="e34e26dffead694a35798d0397782d55"/></dir></dir><dir name="Helper"><file name="Data.php" hash="dbab029caf8bfd578042fef4c8b009b3"/></dir><dir name="Model"><dir name="Attribute"><dir name="Source"><file name="Category.php" hash="49f1f7959c4741c22bbf79b7e0bd24e7"/></dir></dir><dir name="Catalog"><dir name="Product"><file name="Collection.php" hash="8c3a5fe7c329059b6b85a1e0e5ee48fd"/></dir><dir name="Resource"><dir name="Eav"><file name="Attribute.php" hash="e0a9b926e138b9043f05d2da3e973883"/></dir></dir></dir><file name="Config.php" hash="74d82e33dabb7a09d0ba1c1d52e8e3f3"/><dir name="Export"><dir name="Convert"><dir name="Parser"><file name="Product.php" hash="4e50613b82ba84c35eb87f991645c118"/></dir></dir><file name="Flow.php" hash="842fa4b4a49ea86bdeb1cb0441433ccd"/><file name="Flux.php" hash="8d2d66053332bc3072826351d933fdc0"/><file name="Observer.php" hash="1c110fc1e4f81e26661f4ef42e431731"/><dir name="Rewrite"><dir name="Catalog"><file name="Config.php" hash="c87b13b0141123b80cb1ac33eaf75715"/></dir><dir name="CatalogInventory"><dir name="Stock"><file name="Item.php" hash="5249964f31fda6d5b7ff9587e713ca81"/></dir></dir></dir><dir name="Source"><file name="Attributes.php" hash="7c86df4782b77b69c59204a39766a787"/><file name="Attributesprice.php" hash="6cddf3b9562c8dbc56e670b377e341c1"/><dir name="Category"><file name="Level.php" hash="477d3dccefe5720eedc6b5d7a7110c9a"/></dir><dir name="Tracking"><file name="Delay.php" hash="9f375db7fac8d245dd72dc416d20ae28"/></dir><file name="Visibility.php" hash="c2a1494bc2e554074d19c58523c450b2"/></dir><file name="Updates.php" hash="6a12528f1ba69f0e0240ba471b471578"/><file name="Xml.php" hash="d6574955d2a108a91c1ebf84feb1b02b"/><file name="Xmlflow.deprecated.php" hash="960d81e05b332cdb16449029b07f0eca"/><file name="Xmlflow.php" hash="82815362cf6b2127ef961be79e48c127"/></dir><dir name="Manageorders"><dir name="Convert"><file name="Customer.php" hash="ad8f3406a1d5e9b7c093eaed069b39c6"/></dir><dir name="Export"><file name="Shipments.php" hash="20e617e183366ef5447ea653aa989065"/></dir><file name="Log.php" hash="a6c88fc107c3fa207265c97b8568c757"/><file name="Observer.php" hash="ee39cd0d9acbff0ddfbe3017e3b70144"/><file name="Order.php" hash="f12b03d0ba256c004ba6164b1b009600"/><dir name="Payment"><dir name="Method"><file name="Purchaseorder.php" hash="5f04df4c6792a54ba1358f1020f4415f"/></dir></dir><file name="Product.php" hash="0041c5ebcd0aa8ca17f5c1a4f07ec03d"/><dir name="Shipping"><dir name="Carrier"><file name="Shoppingflux.php" hash="7a94de78175c833705386ae1c5ddbe3d"/></dir><file name="Method.php" hash="a71d621b210ecdb1e69290f3e0c6f6d2"/></dir><dir name="Source"><file name="Attributes.php" hash="c9207872ddd962d6b0166d35cfe98626"/></dir></dir><dir name="Mysql4"><dir name="Export"><dir name="Flux"><file name="Collection.php" hash="25a6420bb66aeefb6a8ac0a9e6fc538f"/></dir><file name="Flux.php" hash="6140eeee9d40615eaaba736377aba17e"/><dir name="Updates"><file name="Collection.php" hash="21b355b1db82e4b8a5d1950ac2ffbd18"/></dir><file name="Updates.php" hash="02ef11d051020470231e470f3232f862"/></dir><dir name="Manageorders"><dir name="Export"><dir name="Shipments"><file name="Collection.php" hash="fcdf3c607a8d479beb10a53a618aa225"/></dir><file name="Shipments.php" hash="e06dfaf254a5fd3d8649685b56874258"/></dir><dir name="Log"><file name="Collection.php" hash="0efd8c68937edf98cc9f9bb35bd76f79"/></dir><file name="Log.php" hash="b30bbf3ead209d69993546b29f72ecd7"/><dir name="Shipping"><dir name="Method"><file name="Collection.php" hash="7b2c8fb56625953ea8cd79cc7ddcc9df"/></dir><file name="Method.php" hash="a919a6c61ad6ddefd19ffc287eaa7325"/></dir></dir></dir><dir name="Sales"><dir name="Service"><file name="Quote.php" hash="ebd9c8bd918e12d0c77c26a3ce42ccb5"/></dir></dir><dir name="Service"><dir name="Http"><dir name="Client"><dir name="Adapter"><file name="Curl.php" hash="659ab165cdd8492fdc7ee08b515732ac"/><file name="Stream.php" hash="c3a61972f5ffb625dba59ba53365965d"/></dir></dir></dir></dir><file name="Service.php" hash="3e1b05fa9e9a4ad27605bbc7586d2653"/><dir name="System"><dir name="Config"><dir name="Backend"><file name="Apikey.php" hash="90036cf58c627fcc68920af912171a0c"/><file name="Category.php" hash="7d25e1953c33d3176b2b510f5d0be381"/><file name="Refresh.php" hash="d53cbdc6ae73c146af67ef5f20d9e4e8"/></dir></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Shoppingfeed"><dir name="Export"><file name="CategoryController.php" hash="7aa5537d9aedd58aa6fdbcac31f8e10d"/></dir><file name="ExportController.php" hash="de6c4a519b3076946134858d6ddb8df2"/><file name="GeneralController.php" hash="9ac32875ecb62f0befad7993456d46d7"/><dir name="Order"><file name="CronController.php" hash="abb88558c15f2446ba09ca8a1cb48111"/><file name="ImportController.php" hash="2e2822fb67e89465eaae85bf254849b6"/><file name="LogController.php" hash="8905b421f3f12f4d1fd41a7e124826be"/></dir><file name="OrderController.php" hash="78b60bb37f0e43f23ee77d463458d5ae"/></dir></dir><dir name="Export"><file name="FluxController.php" hash="1e1b17ab3fef4eace620c7ea5d61c4ef"/></dir><dir name="Manageorders"><file name="LaunchController.php" hash="38c4741a204c55c1b2225a2279f578bc"/></dir></dir><dir name="doc"><file name="ShoppingFeed_US.pdf" hash="0cd685730056d5f2f9c9f8292dead3ae"/><file name="ShoppingFlux_FR.pdf" hash="5590a49838bd67f70f0cacf9605cea2b"/></dir><dir name="etc"><file name="adminhtml.xml" hash="385b2a7b1f745e8958c0e160a9df3514"/><file name="config.xml" hash="8320569528c118b5ef39e0cdcd9fe727"/><file name="system.xml" hash="93744c59f8947c27144595088ff9f259"/></dir><dir name="sql"><dir name="profileolabs_shoppingflux_setup"><file name="mysql4-install-0.1.0.php" hash="87c47ba97a55bd71dada152b52736be2"/><file name="mysql4-install-0.8.0.php" hash="48e14fe6bea37e0813d4e8011d97f9a9"/><file name="mysql4-install-0.8.5.php" hash="1aae90e495b0a281bb6916d425561620"/><file name="mysql4-install-0.8.6.php" hash="ae6e23c12465b3b091c3235598c20b0e"/><file name="mysql4-install-0.8.7.php" hash="7672f1e89056b6bd476bf7443937dd73"/><file name="mysql4-install-0.9.3.php" hash="33a66ff8e8d4505e0c68f2f027a00750"/><file name="mysql4-install-0.9.9.php" hash="c0f1233e4196ca2012c8c4f3838fd883"/><file name="mysql4-upgrade-0.1.0-0.1.1.php" hash="0f95646d855413c52928ed4c258aacb1"/><file name="mysql4-upgrade-0.3.13-0.3.14.php" hash="4f6a5399ad06457f0ebf57b33353ebe2"/><file name="mysql4-upgrade-0.3.14-0.3.15.php" hash="6215917eef61544fc6f4193d31956df4"/><file name="mysql4-upgrade-0.3.17-0.3.18.php" hash="112b34baecd80300682bda9ba69c8970"/><file name="mysql4-upgrade-0.4.2-0.4.3.php" hash="2322a9d2b5130bc78699c1953df87a04"/><file name="mysql4-upgrade-0.4.6-0.5.0.php" hash="02be6c02a8c77e642ef3e40ded1ba8be"/><file name="mysql4-upgrade-0.5.1-0.5.2.php" hash="0e5414628efee519deff6aff301651c7"/><file name="mysql4-upgrade-0.5.3-0.5.4.php" hash="9dfb5e5895a9a2973dba57a049d9d379"/><file name="mysql4-upgrade-0.5.5-0.5.6.php" hash="e0ebe03688b7eac8252efa0d5b9b4258"/><file name="mysql4-upgrade-0.6.5-0.6.6.php" hash="c58a1219b2858d50a3d72e77ac6ee43c"/><file name="mysql4-upgrade-0.7.7-0.7.8.php" hash="0804f52786bdd97024dee79eb4b68695"/><file name="mysql4-upgrade-0.7.9-0.8.0.php" hash="7fdd68eda7f3162e979995ed2d7f847d"/><file name="mysql4-upgrade-0.8.4-0.8.5.php" hash="edb5ea0572bdc0e75fd402aeaefc4858"/><file name="mysql4-upgrade-0.8.5-0.8.6.php" hash="a80ecd198b298fecbf6807eba980361e"/><file name="mysql4-upgrade-0.8.6-0.8.7.php" hash="b2f8a980fbace011ff9632198ae6c0a5"/><file name="mysql4-upgrade-0.9.0-0.9.1.php" hash="d8c3ba1dd0bbd12c20fc221e03ff2391"/><file name="mysql4-upgrade-0.9.2-0.9.3.php" hash="5e611f9c8f337cbee764e692721520e4"/></dir></dir></dir><file name=".DS_Store" hash="d3146c6d782e4b3220b6aaa51d65eccc"/></dir></target><target name="mageetc"><dir name="modules"><file name="Profileolabs_Shoppingflux.xml" hash="73ec83cf32c72884815a3cac9f754a54"/></dir></target><target name="magelocale"><dir><dir name="en_US"><file name="Profileolabs_Shoppingflux.csv" hash="bb846cd4e91b8d5b49c66c29afda5c52"/></dir><dir name="fr_FR"><file name="Profileolabs_Shoppingflux.csv" hash="e7b3eb4b163a56bfe6194264c308e8d9"/></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="profileolabs_shoppingflux.xml" hash="d2ffb38fd9146dd1af653b8a3f45738b"/></dir><dir name="template"><dir name="profileolabs"><dir name="shoppingflux"><dir name="export"><dir name="category"><file name="edit.phtml" hash="8af812638245a0aa59a1c90aa6c20a4f"/></dir><file name="edit.phtml" hash="49c3739d62374c64cd9002d74c890a22"/><file name="feed.phtml" hash="e380f0fa763f112ff153976b97dc3704"/><file name="process.phtml" hash="1dee42b2f14c0862446e5b475aaccad3"/><file name="product.phtml" hash="3d93144b8eb1e16672d610d9c0c35092"/></dir><dir name="manageorders"><file name="import.phtml" hash="6fd3bca397be66fc17d340cfae558fe9"/><dir name="payment"><dir name="info"><file name="purchaseorder.phtml" hash="782768b0e4836b25f46443dda098db29"/></dir></dir><dir name="sales"><dir name="order"><dir name="invoice"><file name="total.phtml" hash="0d8d4aec814c41f80b9d9c475b5da3ae"/></dir><file name="total.phtml" hash="ad58dad0fd4007764f03c74cc5a6ca57"/><dir name="view"><dir name="tab"><file name="shoppingflux.phtml" hash="7492846bef04ca1f0419cd804e7c4599"/></dir></dir></dir></dir></dir><dir name="register"><file name="notification.phtml" hash="80e22e32016bbbfea1c4b8e66ba18579"/></dir><file name="register.phtml" hash="614dfd40a4e74c0db2667ba30aeb71e3"/></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="profileolabs_shoppingflux.xml" hash="7fd081f5a153c3912b924fe5258cc468"/></dir></dir></dir><dir name="default"><dir name="default"><dir name="layout"><file name="profileolabs_shoppingflux.xml" hash="7fd081f5a153c3912b924fe5258cc468"/></dir></dir></dir></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="images"><dir name="shoppingflux"><file name="ad.png" hash="b76c0f3e4a7084a88ba0527be9fdcc25"/><file name="ad.png.txt" hash="4b54b44ffcb31c68e84f9a553e7fac28"/><file name="logo_us.jpg" hash="cae9e6bcba9814193a59bb07d541edb6"/><file name="s_shoppingfeed.png" hash="8782818108e316533ad090c5b078866f"/><file name="s_shoppingfeed_1.jpg" hash="50b18c2dcbe3bbfa6d0bdb55787da06b"/></dir></dir><dir name="css"><file name="shoppingflux.css" hash="b607a6c8ed09795fdf9fe4876c6ca2d6"/></dir></dir></dir></dir></target><target name="magelocal"><dir name="Varien"><dir name="Data"><dir name="Form"><dir name="Element"><file name="Wcmultiselect.php" hash="304b59d32ecdd9205af1716e528ae4bd"/></dir></dir></dir></dir></target></contents>
|
17 |
<compatible/>
|
18 |
<dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
|
19 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Profileolabs_Shoppingflux</name>
|
4 |
+
<version>1.0.1</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://www.opensource.org/licenses/gpl-license.php">GNU General Public License (GPL)</license>
|
7 |
<channel>community</channel>
|
11 |
<notes>- Minor bugfixes & improvements
|
12 |
</notes>
|
13 |
<authors><author><name>ShoppingFlux</name><user>ShoppingFlux</user><email>olivier.levy@gmail.com</email></author></authors>
|
14 |
+
<date>2015-11-18</date>
|
15 |
+
<time>08:38:53</time>
|
16 |
+
<contents><target name="magecommunity"><dir name="Profileolabs"><dir name="Shoppingflux"><dir name="Block"><dir name="Adminhtml"><dir name="Register"><file name="Notification.php" hash="13c5b3fccfd09dca376d4bc03f883384"/></dir><dir name="System"><dir name="Config"><dir name="Form"><dir name="Fieldset"><file name="Abstract.php" hash="9046ac88c58d7768d28047c5102789ae"/></dir></dir></dir></dir></dir><dir name="Export"><dir name="Adminhtml"><dir name="Catalog"><dir name="Category"><dir name="Edit"><file name="Form.php" hash="da466a657f2b80567ef576711a190805"/></dir><dir name="Tab"><file name="Default.php" hash="da1c24f56e463d6e93488633fc41539d"/></dir></dir></dir><file name="Feed.php" hash="a6bfac2be7c99ba5631626404e231ab0"/><file name="Process.php" hash="d5cd1471abfc8ea7f364dfb4610e4fd4"/><dir name="Product"><file name="Grid.php" hash="03b7aa3a458a0405d5d22ce7c0566033"/></dir><file name="Product.php" hash="f71a0d0f25e2484f74f1ceaeee514d3f"/><dir name="Widget"><dir name="Grid"><dir name="Column"><dir name="Renderer"><file name="Bool.php" hash="2717fd3964299bb372c355427c8136d7"/></dir></dir></dir></dir></dir><file name="Flow.php" hash="51cfa87ab0417ff26669a33bd22b50fa"/><file name="Flux.php" hash="c6da5407ccd3df3c5cd34883f02b9490"/><file name="Tracking.php" hash="a01f384121dda81f8ee3faa80ee3a32a"/></dir><dir name="Manageorders"><dir name="Adminhtml"><dir name="Cron"><file name="Grid.php" hash="ddfd5d9374446afafef1f545839e869e"/></dir><file name="Cron.php" hash="1a6a4042d3270b56e2dadc80f5c12cfa"/><file name="Import.php" hash="0d675a1731ca646ba57989b8545f4682"/><dir name="Log"><file name="Grid.php" hash="9170b01b3a6d3d558801faeba745390f"/></dir><file name="Log.php" hash="3336bc53002b82b4ab16d18a4e68e0cb"/><dir name="Order"><file name="Grid.php" hash="00cc7d1bb20437d8f7a547e0acfd7f9c"/><dir name="View"><dir name="Tab"><file name="Shoppingflux.php" hash="c0039acf525620c14cc8a1945d44150e"/></dir></dir></dir><file name="Order.php" hash="a6d45eb0146fb448f72348724c3151df"/><dir name="System"><dir name="Config"><dir name="Form"><dir name="Fieldset"><dir name="Customer"><file name="Group.php" hash="73164d7a0c51a0577dcb0d5496661f35"/></dir><dir name="Shipping"><dir name="Method"><file name="Extra.php" hash="2f1787d3f7dfdc39b1e5252e48b3f2c2"/></dir><file name="Method.php" hash="520a9e6e1170098764a54ead38233c70"/></dir></dir></dir></dir></dir></dir><dir name="Payment"><dir name="Info"><file name="Purchaseorder.php" hash="df942f5c9a19506ef2bf70ca1d4da809"/></dir></dir></dir><dir name="Tracking"><file name="Buyline.php" hash="a60b19ed533b265a7a2aafe75c03c0fa"/><file name="Roi.php" hash="e34e26dffead694a35798d0397782d55"/></dir></dir><dir name="Helper"><file name="Data.php" hash="11abb1054197fbb3e329f3114a17bba2"/></dir><dir name="Model"><dir name="Attribute"><dir name="Source"><file name="Category.php" hash="49f1f7959c4741c22bbf79b7e0bd24e7"/></dir></dir><dir name="Catalog"><dir name="Product"><file name="Collection.php" hash="8c3a5fe7c329059b6b85a1e0e5ee48fd"/></dir><dir name="Resource"><dir name="Eav"><file name="Attribute.php" hash="e0a9b926e138b9043f05d2da3e973883"/></dir></dir></dir><file name="Config.php" hash="74d82e33dabb7a09d0ba1c1d52e8e3f3"/><dir name="Export"><dir name="Convert"><dir name="Parser"><file name="Product.php" hash="4e50613b82ba84c35eb87f991645c118"/></dir></dir><file name="Flow.php" hash="842fa4b4a49ea86bdeb1cb0441433ccd"/><file name="Flux.php" hash="8d2d66053332bc3072826351d933fdc0"/><file name="Observer.php" hash="1c110fc1e4f81e26661f4ef42e431731"/><dir name="Rewrite"><dir name="Catalog"><file name="Config.php" hash="c87b13b0141123b80cb1ac33eaf75715"/></dir><dir name="CatalogInventory"><dir name="Stock"><file name="Item.php" hash="5249964f31fda6d5b7ff9587e713ca81"/></dir></dir></dir><dir name="Source"><file name="Attributes.php" hash="7c86df4782b77b69c59204a39766a787"/><file name="Attributesprice.php" hash="6cddf3b9562c8dbc56e670b377e341c1"/><dir name="Category"><file name="Level.php" hash="477d3dccefe5720eedc6b5d7a7110c9a"/></dir><dir name="Tracking"><file name="Delay.php" hash="9f375db7fac8d245dd72dc416d20ae28"/></dir><file name="Visibility.php" hash="c2a1494bc2e554074d19c58523c450b2"/></dir><file name="Updates.php" hash="6a12528f1ba69f0e0240ba471b471578"/><file name="Xml.php" hash="d6574955d2a108a91c1ebf84feb1b02b"/><file name="Xmlflow.deprecated.php" hash="960d81e05b332cdb16449029b07f0eca"/><file name="Xmlflow.php" hash="82815362cf6b2127ef961be79e48c127"/></dir><dir name="Manageorders"><dir name="Convert"><file name="Customer.php" hash="ad8f3406a1d5e9b7c093eaed069b39c6"/></dir><dir name="Export"><file name="Shipments.php" hash="20e617e183366ef5447ea653aa989065"/></dir><file name="Log.php" hash="a6c88fc107c3fa207265c97b8568c757"/><file name="Observer.php" hash="e947db8b12fc2f083a4431a3d6eaf14c"/><file name="Order.php" hash="bc4dde07f4159bdb9ff3e7ea853f153f"/><dir name="Payment"><dir name="Method"><file name="Purchaseorder.php" hash="5f04df4c6792a54ba1358f1020f4415f"/></dir></dir><file name="Product.php" hash="0041c5ebcd0aa8ca17f5c1a4f07ec03d"/><dir name="Shipping"><dir name="Carrier"><file name="Shoppingflux.php" hash="7a94de78175c833705386ae1c5ddbe3d"/></dir><file name="Method.php" hash="a71d621b210ecdb1e69290f3e0c6f6d2"/></dir><dir name="Source"><file name="Attributes.php" hash="c9207872ddd962d6b0166d35cfe98626"/></dir></dir><dir name="Mysql4"><dir name="Export"><dir name="Flux"><file name="Collection.php" hash="25a6420bb66aeefb6a8ac0a9e6fc538f"/></dir><file name="Flux.php" hash="6140eeee9d40615eaaba736377aba17e"/><dir name="Updates"><file name="Collection.php" hash="21b355b1db82e4b8a5d1950ac2ffbd18"/></dir><file name="Updates.php" hash="02ef11d051020470231e470f3232f862"/></dir><dir name="Manageorders"><dir name="Export"><dir name="Shipments"><file name="Collection.php" hash="fcdf3c607a8d479beb10a53a618aa225"/></dir><file name="Shipments.php" hash="e06dfaf254a5fd3d8649685b56874258"/></dir><dir name="Log"><file name="Collection.php" hash="0efd8c68937edf98cc9f9bb35bd76f79"/></dir><file name="Log.php" hash="b30bbf3ead209d69993546b29f72ecd7"/><dir name="Shipping"><dir name="Method"><file name="Collection.php" hash="7b2c8fb56625953ea8cd79cc7ddcc9df"/></dir><file name="Method.php" hash="a919a6c61ad6ddefd19ffc287eaa7325"/></dir></dir></dir><dir name="Sales"><dir name="Service"><file name="Quote.php" hash="ebd9c8bd918e12d0c77c26a3ce42ccb5"/></dir></dir><dir name="Service"><dir name="Http"><dir name="Client"><dir name="Adapter"><file name="Curl.php" hash="659ab165cdd8492fdc7ee08b515732ac"/><file name="Stream.php" hash="c3a61972f5ffb625dba59ba53365965d"/></dir></dir></dir></dir><file name="Service.php" hash="274fa05cf7a504acf93c9434b6653de9"/><dir name="System"><dir name="Config"><dir name="Backend"><file name="Apikey.php" hash="90036cf58c627fcc68920af912171a0c"/><file name="Category.php" hash="7d25e1953c33d3176b2b510f5d0be381"/><file name="Refresh.php" hash="d53cbdc6ae73c146af67ef5f20d9e4e8"/></dir></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Shoppingfeed"><dir name="Export"><file name="CategoryController.php" hash="7aa5537d9aedd58aa6fdbcac31f8e10d"/></dir><file name="ExportController.php" hash="de6c4a519b3076946134858d6ddb8df2"/><file name="GeneralController.php" hash="9ac32875ecb62f0befad7993456d46d7"/><dir name="Order"><file name="CronController.php" hash="abb88558c15f2446ba09ca8a1cb48111"/><file name="ImportController.php" hash="2e2822fb67e89465eaae85bf254849b6"/><file name="LogController.php" hash="8905b421f3f12f4d1fd41a7e124826be"/></dir><file name="OrderController.php" hash="78b60bb37f0e43f23ee77d463458d5ae"/></dir></dir><dir name="Export"><file name="FluxController.php" hash="c444e0fbf3675c7e86073b0849328ba0"/></dir><dir name="Manageorders"><file name="LaunchController.php" hash="38c4741a204c55c1b2225a2279f578bc"/></dir></dir><dir name="doc"><file name="ShoppingFeed_US.pdf" hash="0cd685730056d5f2f9c9f8292dead3ae"/><file name="ShoppingFlux_FR.pdf" hash="5590a49838bd67f70f0cacf9605cea2b"/></dir><dir name="etc"><file name="adminhtml.xml" hash="385b2a7b1f745e8958c0e160a9df3514"/><file name="config.xml" hash="5797be2504e667f6b3d6cb354e671f58"/><file name="marketplaces.csv" hash="98b4ca91bd42a1277a91f6a2a59f9603"/><file name="system.xml" hash="9b2385127692010dd211a0219dba536f"/></dir><dir name="sql"><dir name="profileolabs_shoppingflux_setup"><file name="mysql4-install-0.1.0.php" hash="87c47ba97a55bd71dada152b52736be2"/><file name="mysql4-install-0.8.0.php" hash="48e14fe6bea37e0813d4e8011d97f9a9"/><file name="mysql4-install-0.8.5.php" hash="1aae90e495b0a281bb6916d425561620"/><file name="mysql4-install-0.8.6.php" hash="ae6e23c12465b3b091c3235598c20b0e"/><file name="mysql4-install-0.8.7.php" hash="7672f1e89056b6bd476bf7443937dd73"/><file name="mysql4-install-0.9.3.php" hash="33a66ff8e8d4505e0c68f2f027a00750"/><file name="mysql4-install-0.9.9.php" hash="c0f1233e4196ca2012c8c4f3838fd883"/><file name="mysql4-upgrade-0.1.0-0.1.1.php" hash="0f95646d855413c52928ed4c258aacb1"/><file name="mysql4-upgrade-0.3.13-0.3.14.php" hash="4f6a5399ad06457f0ebf57b33353ebe2"/><file name="mysql4-upgrade-0.3.14-0.3.15.php" hash="6215917eef61544fc6f4193d31956df4"/><file name="mysql4-upgrade-0.3.17-0.3.18.php" hash="112b34baecd80300682bda9ba69c8970"/><file name="mysql4-upgrade-0.4.2-0.4.3.php" hash="2322a9d2b5130bc78699c1953df87a04"/><file name="mysql4-upgrade-0.4.6-0.5.0.php" hash="02be6c02a8c77e642ef3e40ded1ba8be"/><file name="mysql4-upgrade-0.5.1-0.5.2.php" hash="0e5414628efee519deff6aff301651c7"/><file name="mysql4-upgrade-0.5.3-0.5.4.php" hash="9dfb5e5895a9a2973dba57a049d9d379"/><file name="mysql4-upgrade-0.5.5-0.5.6.php" hash="e0ebe03688b7eac8252efa0d5b9b4258"/><file name="mysql4-upgrade-0.6.5-0.6.6.php" hash="c58a1219b2858d50a3d72e77ac6ee43c"/><file name="mysql4-upgrade-0.7.7-0.7.8.php" hash="0804f52786bdd97024dee79eb4b68695"/><file name="mysql4-upgrade-0.7.9-0.8.0.php" hash="7fdd68eda7f3162e979995ed2d7f847d"/><file name="mysql4-upgrade-0.8.4-0.8.5.php" hash="edb5ea0572bdc0e75fd402aeaefc4858"/><file name="mysql4-upgrade-0.8.5-0.8.6.php" hash="a80ecd198b298fecbf6807eba980361e"/><file name="mysql4-upgrade-0.8.6-0.8.7.php" hash="b2f8a980fbace011ff9632198ae6c0a5"/><file name="mysql4-upgrade-0.9.0-0.9.1.php" hash="d8c3ba1dd0bbd12c20fc221e03ff2391"/><file name="mysql4-upgrade-0.9.2-0.9.3.php" hash="5e611f9c8f337cbee764e692721520e4"/></dir></dir></dir><file name=".DS_Store" hash="d3146c6d782e4b3220b6aaa51d65eccc"/></dir></target><target name="mageetc"><dir name="modules"><file name="Profileolabs_Shoppingflux.xml" hash="73ec83cf32c72884815a3cac9f754a54"/></dir></target><target name="magelocale"><dir><dir name="en_US"><file name="Profileolabs_Shoppingflux.csv" hash="e1102a462aa9b70b7a268c1ac2fc4151"/></dir><dir name="fr_FR"><file name="Profileolabs_Shoppingflux.csv" hash="e9318215b9447a637bd69f48d03abad3"/></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="profileolabs_shoppingflux.xml" hash="d2ffb38fd9146dd1af653b8a3f45738b"/></dir><dir name="template"><dir name="profileolabs"><dir name="shoppingflux"><dir name="export"><dir name="category"><file name="edit.phtml" hash="8af812638245a0aa59a1c90aa6c20a4f"/></dir><file name="edit.phtml" hash="49c3739d62374c64cd9002d74c890a22"/><file name="feed.phtml" hash="e380f0fa763f112ff153976b97dc3704"/><file name="process.phtml" hash="1dee42b2f14c0862446e5b475aaccad3"/><file name="product.phtml" hash="3d93144b8eb1e16672d610d9c0c35092"/></dir><dir name="manageorders"><file name="import.phtml" hash="6fd3bca397be66fc17d340cfae558fe9"/><dir name="payment"><dir name="info"><file name="purchaseorder.phtml" hash="782768b0e4836b25f46443dda098db29"/></dir></dir><dir name="sales"><dir name="order"><dir name="invoice"><file name="total.phtml" hash="0d8d4aec814c41f80b9d9c475b5da3ae"/></dir><file name="total.phtml" hash="ad58dad0fd4007764f03c74cc5a6ca57"/><dir name="view"><dir name="tab"><file name="shoppingflux.phtml" hash="7492846bef04ca1f0419cd804e7c4599"/></dir></dir></dir></dir></dir><dir name="register"><file name="notification.phtml" hash="80e22e32016bbbfea1c4b8e66ba18579"/></dir><file name="register.phtml" hash="614dfd40a4e74c0db2667ba30aeb71e3"/></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="profileolabs_shoppingflux.xml" hash="7fd081f5a153c3912b924fe5258cc468"/></dir></dir></dir><dir name="default"><dir name="default"><dir name="layout"><file name="profileolabs_shoppingflux.xml" hash="7fd081f5a153c3912b924fe5258cc468"/></dir></dir></dir></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="images"><dir name="shoppingflux"><file name="ad.png" hash="b76c0f3e4a7084a88ba0527be9fdcc25"/><file name="ad.png.txt" hash="4b54b44ffcb31c68e84f9a553e7fac28"/><file name="logo_us.jpg" hash="cae9e6bcba9814193a59bb07d541edb6"/><file name="s_shoppingfeed.png" hash="8782818108e316533ad090c5b078866f"/><file name="s_shoppingfeed_1.jpg" hash="50b18c2dcbe3bbfa6d0bdb55787da06b"/></dir></dir><dir name="css"><file name="shoppingflux.css" hash="b607a6c8ed09795fdf9fe4876c6ca2d6"/></dir></dir></dir></dir></target><target name="magelocal"><dir name="Varien"><dir name="Data"><dir name="Form"><dir name="Element"><file name="Wcmultiselect.php" hash="304b59d32ecdd9205af1716e528ae4bd"/></dir></dir></dir></dir></target></contents>
|
17 |
<compatible/>
|
18 |
<dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
|
19 |
</package>
|