Version Notes
New features :
- BeezUP carrier
Download this release
Release Info
Developer | BeezUP |
Extension | BeezUP_Module_feed_and_tracker |
Version | 4.7.2 |
Comparing to | |
See all releases |
Code changes from version 4.7.1 to 4.7.2
- app/code/community/BeezUp/Block/Order.php +24 -28
- app/code/community/BeezUp/Model/Carrier.php +60 -0
- app/code/community/BeezUp/Model/Flatrate.php +0 -91
- app/code/community/BeezUp/etc/config.xml +175 -186
- app/code/community/BeezUp/etc/system.xml +34 -3
- app/etc/modules/BeezUp.xml +12 -9
- package.xml +5 -5
app/code/community/BeezUp/Block/Order.php
CHANGED
@@ -65,27 +65,15 @@ class Beezup_Block_Order extends Mage_core_block_text {
|
|
65 |
$this->log = new KLogger ( $logDir."log.txt" , KLogger::DEBUG );
|
66 |
$this->log2 = new KLogger ( $logDir."log2.txt" , KLogger::DEBUG );
|
67 |
$this->debugLog("Initializing OM Importation");
|
68 |
-
$shiiping_disabled = Mage::getStoreConfig('carriers/flatrate/active');
|
69 |
-
|
70 |
$this->account_id = $account_id;
|
71 |
$this->marketplace_code = $marketplace_code;
|
72 |
$this->beezup_order_id = $beezup_order_id;
|
73 |
$orderResponse = $this->getBeezupOrder();
|
74 |
if($orderResponse) {
|
75 |
|
76 |
-
|
77 |
-
Mage::getConfig()
|
78 |
-
->saveConfig('carriers/flatrate/active', 1)
|
79 |
-
->cleanCache();
|
80 |
-
Mage::app()->reinitStores();
|
81 |
-
}
|
82 |
$this->createOrder($orderResponse);
|
83 |
-
|
84 |
-
Mage::getConfig()
|
85 |
-
->saveConfig('carriers/flatrate/active', 0)
|
86 |
-
->cleanCache();
|
87 |
-
Mage::app()->reinitStores();
|
88 |
-
}
|
89 |
$configModel->saveConfig('beezup/marketplace/sync_status',0);
|
90 |
if($this->mage_order_id) {
|
91 |
echo "<script>window.location='".Mage::helper('adminhtml')->getUrl("adminhtml/sales_order/view", array('order_id'=> $this->mage_order_id))."';</script>";
|
@@ -195,22 +183,10 @@ class Beezup_Block_Order extends Mage_core_block_text {
|
|
195 |
$this->log = new KLogger ( $logDir."log.txt" , KLogger::DEBUG );
|
196 |
$this->log2 = new KLogger ( $logDir."log2.txt" , KLogger::DEBUG );
|
197 |
$this->debugLog("Initializing OM Importation");
|
198 |
-
$shiiping_disabled = Mage::getStoreConfig('carriers/flatrate/active');
|
199 |
-
if($shiiping_disabled == 0) {
|
200 |
-
Mage::getConfig()
|
201 |
-
->saveConfig('carriers/flatrate/active', 1)
|
202 |
-
->cleanCache();
|
203 |
-
Mage::app()->reinitStores();
|
204 |
-
}
|
205 |
|
206 |
|
207 |
$this->getOrderList();
|
208 |
-
|
209 |
-
Mage::getConfig()
|
210 |
-
->saveConfig('carriers/flatrate/active', 0)
|
211 |
-
->cleanCache();
|
212 |
-
Mage::app()->reinitStores();
|
213 |
-
}
|
214 |
$this->repository->updateLastSynchronizationDate( $sync_end_date);
|
215 |
$this->orderid = "";
|
216 |
$this->debugLog("OM Importation finalized succesfully");
|
@@ -1019,7 +995,7 @@ class Beezup_Block_Order extends Mage_core_block_text {
|
|
1019 |
$this->debugLog("Adding Order Shipping Cost: ". $data['order_shippingPrice']);
|
1020 |
|
1021 |
$shippingAddress->setCollectShippingRates(true)->collectShippingRates()
|
1022 |
-
->setShippingMethod('
|
1023 |
->setPaymentMethod($payment_method);
|
1024 |
|
1025 |
//$shippingAddress->addTotal(array("code" => "specialfee", "title" => "Special Fee", "value" => 20));
|
@@ -1114,6 +1090,23 @@ class Beezup_Block_Order extends Mage_core_block_text {
|
|
1114 |
$order->save();
|
1115 |
}
|
1116 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1117 |
$products = Mage::getResourceModel('sales/order_item_collection')
|
1118 |
->setOrderFilter($orderid);
|
1119 |
foreach($products as $product) {
|
@@ -1132,6 +1125,9 @@ class Beezup_Block_Order extends Mage_core_block_text {
|
|
1132 |
$order->setBaseSubtotalInclTax($order->getSubtotalInclTax());
|
1133 |
$order->save();
|
1134 |
|
|
|
|
|
|
|
1135 |
$this->setStatus($data['order_status'], $order);
|
1136 |
$this->mage_order_id = $orderid;
|
1137 |
$this->debugLog("Order imported succesfully, Magento Order Id: ".$orderid);
|
65 |
$this->log = new KLogger ( $logDir."log.txt" , KLogger::DEBUG );
|
66 |
$this->log2 = new KLogger ( $logDir."log2.txt" , KLogger::DEBUG );
|
67 |
$this->debugLog("Initializing OM Importation");
|
|
|
|
|
68 |
$this->account_id = $account_id;
|
69 |
$this->marketplace_code = $marketplace_code;
|
70 |
$this->beezup_order_id = $beezup_order_id;
|
71 |
$orderResponse = $this->getBeezupOrder();
|
72 |
if($orderResponse) {
|
73 |
|
74 |
+
|
|
|
|
|
|
|
|
|
|
|
75 |
$this->createOrder($orderResponse);
|
76 |
+
|
|
|
|
|
|
|
|
|
|
|
77 |
$configModel->saveConfig('beezup/marketplace/sync_status',0);
|
78 |
if($this->mage_order_id) {
|
79 |
echo "<script>window.location='".Mage::helper('adminhtml')->getUrl("adminhtml/sales_order/view", array('order_id'=> $this->mage_order_id))."';</script>";
|
183 |
$this->log = new KLogger ( $logDir."log.txt" , KLogger::DEBUG );
|
184 |
$this->log2 = new KLogger ( $logDir."log2.txt" , KLogger::DEBUG );
|
185 |
$this->debugLog("Initializing OM Importation");
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
186 |
|
187 |
|
188 |
$this->getOrderList();
|
189 |
+
|
|
|
|
|
|
|
|
|
|
|
190 |
$this->repository->updateLastSynchronizationDate( $sync_end_date);
|
191 |
$this->orderid = "";
|
192 |
$this->debugLog("OM Importation finalized succesfully");
|
995 |
$this->debugLog("Adding Order Shipping Cost: ". $data['order_shippingPrice']);
|
996 |
|
997 |
$shippingAddress->setCollectShippingRates(true)->collectShippingRates()
|
998 |
+
->setShippingMethod('beezup_beezup')
|
999 |
->setPaymentMethod($payment_method);
|
1000 |
|
1001 |
//$shippingAddress->addTotal(array("code" => "specialfee", "title" => "Special Fee", "value" => 20));
|
1090 |
$order->save();
|
1091 |
}
|
1092 |
|
1093 |
+
|
1094 |
+
if($order->getShippingInclTax() != $data['order_shippingPrice']) {
|
1095 |
+
$shipping_cost = (float)$data['order_shippingPrice'];
|
1096 |
+
$diff_shipping = ($shipping_cost - $order->getShippingInclTax());
|
1097 |
+
//$order->setShippingAmount($order->getShippingAmount() + $diff_shipping);
|
1098 |
+
//$order->setBaseShippingAmount($order->getShippingAmount());
|
1099 |
+
$order->setShippingInclTax($shipping_cost);
|
1100 |
+
$order->setBaseShippingInclTax($order->getShippingInclTax());
|
1101 |
+
/*
|
1102 |
+
$order->setSubtotalInclTax($order->getSubtotalInclTax() + $diff_shipping);
|
1103 |
+
$order->setBaseSubtotalInclTax($order->getSubtotalInclTax());
|
1104 |
+
$order->setSubtotal($order->getSubtotal() + $diff_shipping);
|
1105 |
+
$order->setBaseSubtotal($order->getSubtotal());
|
1106 |
+
*/
|
1107 |
+
$order->save();
|
1108 |
+
}
|
1109 |
+
|
1110 |
$products = Mage::getResourceModel('sales/order_item_collection')
|
1111 |
->setOrderFilter($orderid);
|
1112 |
foreach($products as $product) {
|
1125 |
$order->setBaseSubtotalInclTax($order->getSubtotalInclTax());
|
1126 |
$order->save();
|
1127 |
|
1128 |
+
|
1129 |
+
|
1130 |
+
|
1131 |
$this->setStatus($data['order_status'], $order);
|
1132 |
$this->mage_order_id = $orderid;
|
1133 |
$this->debugLog("Order imported succesfully, Magento Order Id: ".$orderid);
|
app/code/community/BeezUp/Model/Carrier.php
ADDED
@@ -0,0 +1,60 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
class Beezup_Model_Carrier extends Mage_Shipping_Model_Carrier_Abstract
|
4 |
+
implements Mage_Shipping_Model_Carrier_Interface {
|
5 |
+
|
6 |
+
protected $_code = 'beezup';
|
7 |
+
private $_shipPrice = 0;
|
8 |
+
|
9 |
+
public function getAllowedMethods()
|
10 |
+
{
|
11 |
+
/*
|
12 |
+
return array(
|
13 |
+
'standard' => 'Standard delivery',
|
14 |
+
'express' => 'Express delivery',
|
15 |
+
);*/
|
16 |
+
return array(
|
17 |
+
'beezup' => 'Beezup Carrier'
|
18 |
+
);
|
19 |
+
}
|
20 |
+
|
21 |
+
public function collectRates(Mage_Shipping_Model_Rate_Request $request)
|
22 |
+
{
|
23 |
+
if(!Mage::registry('shipping_cost'))
|
24 |
+
{
|
25 |
+
return false;
|
26 |
+
}
|
27 |
+
|
28 |
+
if(Mage::registry('shipping_cost') == 20000) {
|
29 |
+
$this->_shipPrice = 0;
|
30 |
+
} else {
|
31 |
+
$this->_shipPrice = Mage::registry('shipping_cost');
|
32 |
+
}
|
33 |
+
|
34 |
+
|
35 |
+
/** @var Mage_Shipping_Model_Rate_Result $result */
|
36 |
+
$result = Mage::getModel('shipping/rate_result');
|
37 |
+
$result->append($this->_getStandardRate());
|
38 |
+
|
39 |
+
return $result;
|
40 |
+
}
|
41 |
+
|
42 |
+
|
43 |
+
|
44 |
+
protected function _getStandardRate()
|
45 |
+
{
|
46 |
+
/** @var Mage_Shipping_Model_Rate_Result_Method $rate */
|
47 |
+
$rate = Mage::getModel('shipping/rate_result_method');
|
48 |
+
|
49 |
+
$rate->setCarrier($this->_code);
|
50 |
+
$rate->setCarrierTitle($this->getConfigData('title'));
|
51 |
+
$rate->setMethod('beezup');
|
52 |
+
$rate->setMethodTitle('Beezup Carrier');
|
53 |
+
$rate->setPrice($this->_shipPrice);
|
54 |
+
$rate->setCost($this->_shipPrice);
|
55 |
+
return $rate;
|
56 |
+
}
|
57 |
+
|
58 |
+
|
59 |
+
|
60 |
+
}
|
app/code/community/BeezUp/Model/Flatrate.php
DELETED
@@ -1,91 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
|
4 |
-
class BeezUp_Model_Flatrate extends Mage_Shipping_Model_Carrier_Abstract implements Mage_Shipping_Model_Carrier_Interface
|
5 |
-
{
|
6 |
-
|
7 |
-
protected $_code = 'flatrate';
|
8 |
-
protected $_isFixed = true;
|
9 |
-
|
10 |
-
|
11 |
-
public function collectRates(Mage_Shipping_Model_Rate_Request $request)
|
12 |
-
{
|
13 |
-
if (!$this->getConfigFlag('active')) {
|
14 |
-
return false;
|
15 |
-
}
|
16 |
-
|
17 |
-
$freeBoxes = 0;
|
18 |
-
if ($request->getAllItems()) {
|
19 |
-
foreach ($request->getAllItems() as $item) {
|
20 |
-
|
21 |
-
if ($item->getProduct()->isVirtual() || $item->getParentItem()) {
|
22 |
-
continue;
|
23 |
-
}
|
24 |
-
|
25 |
-
if ($item->getHasChildren() && $item->isShipSeparately()) {
|
26 |
-
foreach ($item->getChildren() as $child) {
|
27 |
-
if ($child->getFreeShipping() && !$child->getProduct()->isVirtual()) {
|
28 |
-
$freeBoxes += $item->getQty() * $child->getQty();
|
29 |
-
}
|
30 |
-
}
|
31 |
-
} elseif ($item->getFreeShipping()) {
|
32 |
-
$freeBoxes += $item->getQty();
|
33 |
-
}
|
34 |
-
}
|
35 |
-
}
|
36 |
-
$this->setFreeBoxes($freeBoxes);
|
37 |
-
|
38 |
-
$result = Mage::getModel('shipping/rate_result');
|
39 |
-
if ($this->getConfigData('type') == 'O') { // per order
|
40 |
-
$shippingPrice = $this->getConfigData('price');
|
41 |
-
} elseif ($this->getConfigData('type') == 'I') { // per item
|
42 |
-
$shippingPrice = ($request->getPackageQty() * $this->getConfigData('price')) - ($this->getFreeBoxes() * $this->getConfigData('price'));
|
43 |
-
} else {
|
44 |
-
$shippingPrice = false;
|
45 |
-
}
|
46 |
-
|
47 |
-
$shippingPrice = $this->getFinalPriceWithHandlingFee($shippingPrice);
|
48 |
-
|
49 |
-
if ($shippingPrice !== false) {
|
50 |
-
$method = Mage::getModel('shipping/rate_result_method');
|
51 |
-
|
52 |
-
$method->setCarrier('flatrate');
|
53 |
-
$method->setCarrierTitle($this->getConfigData('title'));
|
54 |
-
|
55 |
-
$method->setMethod('flatrate');
|
56 |
-
$method->setMethodTitle($this->getConfigData('name'));
|
57 |
-
|
58 |
-
if ($request->getFreeShipping() === true || $request->getPackageQty() == $this->getFreeBoxes()) {
|
59 |
-
$shippingPrice = '0.00';
|
60 |
-
}
|
61 |
-
|
62 |
-
if(Mage::registry('shipping_cost'))
|
63 |
-
{
|
64 |
-
if(Mage::registry('shipping_cost') == 20000) {
|
65 |
-
$method->setPrice('0.00');
|
66 |
-
$method->setCost('0.00');
|
67 |
-
} else {
|
68 |
-
$method->setPrice(Mage::registry('shipping_cost'));
|
69 |
-
$method->setCost(Mage::registry('shipping_cost'));
|
70 |
-
}
|
71 |
-
} else {
|
72 |
-
$method->setPrice($shippingPrice);
|
73 |
-
$method->setCost($shippingPrice);
|
74 |
-
}
|
75 |
-
|
76 |
-
$result->append($method);
|
77 |
-
}
|
78 |
-
|
79 |
-
return $result;
|
80 |
-
}
|
81 |
-
|
82 |
-
|
83 |
-
public function getAllowedMethods()
|
84 |
-
{
|
85 |
-
|
86 |
-
return array('flatrate'=>$this->getConfigData('name'));
|
87 |
-
}
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/code/community/BeezUp/etc/config.xml
CHANGED
@@ -1,211 +1,200 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<config>
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
</resources>
|
23 |
-
|
24 |
-
<blocks>
|
25 |
-
|
26 |
-
|
27 |
<beezup>
|
28 |
-
|
29 |
-
|
30 |
|
31 |
<adminhtml>
|
32 |
<rewrite>
|
33 |
-
|
34 |
-
|
35 |
-
<sales_order_invoice_totals>BeezUp_Block_Adminhtml_Sales_Order_Invoice_Totals</sales_order_invoice_totals>
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
</rewrite>
|
40 |
</adminhtml>
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
<sales>
|
45 |
<rewrite>
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
<shipping>
|
50 |
-
<rewrite>
|
51 |
-
<carrier_flatrate>BeezUp_Model_Flatrate</carrier_flatrate>
|
52 |
-
</rewrite>
|
53 |
-
</shipping>
|
54 |
-
|
55 |
-
<beezup>
|
56 |
-
<class>BeezUp_Model</class>
|
57 |
-
</beezup>
|
58 |
-
</models>
|
59 |
-
<helpers>
|
60 |
-
<beezup>
|
61 |
-
<class>BeezUp_Helper</class>
|
62 |
-
</beezup>
|
63 |
-
</helpers>
|
64 |
-
|
65 |
-
<events>
|
66 |
-
<sales_order_shipment_save_after>
|
67 |
-
<observers>
|
68 |
-
<beezup_autoship_order>
|
69 |
-
<type>singleton</type>
|
70 |
-
<class>beezup/observer</class>
|
71 |
-
<method>autoShip</method>
|
72 |
-
</beezup_autoship_order>
|
73 |
-
</observers>
|
74 |
-
</sales_order_shipment_save_after>
|
75 |
-
</events>
|
76 |
-
</global>
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
<frontend>
|
82 |
-
<routers>
|
83 |
-
<beezup>
|
84 |
-
<use>standard</use>
|
85 |
-
<args>
|
86 |
-
<module>BeezUp</module>
|
87 |
-
<frontName>beezup</frontName>
|
88 |
-
</args>
|
89 |
-
</beezup>
|
90 |
-
</routers>
|
91 |
-
<events>
|
92 |
-
<controller_action_layout_generate_blocks_before>
|
93 |
-
<observers>
|
94 |
-
<beezup_visitors_tracking>
|
95 |
-
<type>singleton</type>
|
96 |
-
<class>beezup/observer</class>
|
97 |
-
<method>addBlockTracking</method>
|
98 |
-
</beezup_visitors_tracking>
|
99 |
-
</observers>
|
100 |
-
</controller_action_layout_generate_blocks_before>
|
101 |
-
<checkout_onepage_controller_success_action>
|
102 |
-
<observers>
|
103 |
-
<beezup_sales_tracking>
|
104 |
-
<type>singleton</type>
|
105 |
-
<class>beezup/observer</class>
|
106 |
-
<method>addOrder</method>
|
107 |
-
</beezup_sales_tracking>
|
108 |
-
</observers>
|
109 |
-
</checkout_onepage_controller_success_action>
|
110 |
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
125 |
<beezup>
|
126 |
-
<
|
|
|
|
|
|
|
|
|
|
|
127 |
</beezup>
|
128 |
-
</
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
<system>
|
137 |
-
<children>
|
138 |
-
<config>
|
139 |
-
<children>
|
140 |
-
<beezup>
|
141 |
-
<title>BeezUP</title>
|
142 |
-
</beezup>
|
143 |
-
</children>
|
144 |
-
</config>
|
145 |
-
</children>
|
146 |
-
</system>
|
147 |
-
</children>
|
148 |
-
</admin>
|
149 |
-
</resources>
|
150 |
-
</acl>
|
151 |
-
<translate>
|
152 |
-
<modules>
|
153 |
-
<BeezUp>
|
154 |
-
<files>
|
155 |
-
<default>BeezUp.csv</default>
|
156 |
-
</files>
|
157 |
-
</BeezUp>
|
158 |
-
</modules>
|
159 |
-
</translate>
|
160 |
-
</adminhtml>
|
161 |
-
<default>
|
162 |
-
|
163 |
-
<beezup>
|
164 |
-
|
165 |
-
<tracking>
|
166 |
-
<active>0</active>
|
167 |
-
<storeid></storeid>
|
168 |
-
<marge>0</marge>
|
169 |
-
<debug>0</debug>
|
170 |
<montant>HT</montant>
|
171 |
-
|
172 |
-
|
173 |
<marketplace>
|
174 |
-
|
175 |
</marketplace>
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
<cachedelay>2</cachedelay>
|
185 |
<visibility>7</visibility>
|
186 |
<category_logic>1</category_logic>
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
<images></images>
|
191 |
|
192 |
-
|
193 |
-
|
194 |
-
|
195 |
|
196 |
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
|
210 |
|
211 |
|
1 |
<?xml version="1.0"?>
|
2 |
<config>
|
3 |
+
<modules>
|
4 |
+
<BeezUp>
|
5 |
+
<version>4.7.2</version>
|
6 |
+
</BeezUp>
|
7 |
+
</modules>
|
8 |
+
<global>
|
9 |
+
<resources>
|
10 |
+
<beezup_setup>
|
11 |
+
<setup>
|
12 |
+
<module>BeezUp</module>
|
13 |
+
<class>Mage_Eav_Model_Entity_Setup </class>
|
14 |
+
</setup>
|
15 |
+
<connection>
|
16 |
+
<use>core_setup</use>
|
17 |
+
</connection>
|
18 |
+
</beezup_setup>
|
19 |
+
</resources>
|
20 |
+
<blocks>
|
|
|
|
|
|
|
|
|
|
|
|
|
21 |
<beezup>
|
22 |
+
<class>BeezUp_Block</class>
|
23 |
+
</beezup>
|
24 |
|
25 |
<adminhtml>
|
26 |
<rewrite>
|
27 |
+
<sales_order_totals>BeezUp_Block_Adminhtml_Sales_Order_Totals</sales_order_totals>
|
28 |
+
<sales_order_invoice_totals>BeezUp_Block_Adminhtml_Sales_Order_Invoice_Totals</sales_order_invoice_totals>
|
|
|
|
|
|
|
|
|
29 |
</rewrite>
|
30 |
</adminhtml>
|
31 |
+
</blocks>
|
32 |
+
<models>
|
33 |
+
<sales>
|
|
|
34 |
<rewrite>
|
35 |
+
<order_pdf_invoice>BeezUp_Model_Sales_Order_Pdf_Invoice</order_pdf_invoice>
|
36 |
+
</rewrite>
|
37 |
+
</sales>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
38 |
|
39 |
+
<beezup>
|
40 |
+
<class>BeezUp_Model</class>
|
41 |
+
</beezup>
|
42 |
+
</models>
|
43 |
+
<helpers>
|
44 |
+
<beezup>
|
45 |
+
<class>BeezUp_Helper</class>
|
46 |
+
</beezup>
|
47 |
+
</helpers>
|
48 |
+
<events>
|
49 |
+
<sales_order_shipment_save_after>
|
50 |
+
<observers>
|
51 |
+
<beezup_autoship_order>
|
52 |
+
<type>singleton</type>
|
53 |
+
<class>beezup/observer</class>
|
54 |
+
<method>autoShip</method>
|
55 |
+
</beezup_autoship_order>
|
56 |
+
</observers>
|
57 |
+
</sales_order_shipment_save_after>
|
58 |
+
</events>
|
59 |
+
</global>
|
60 |
+
<frontend>
|
61 |
+
<routers>
|
62 |
+
<beezup>
|
63 |
+
<use>standard</use>
|
64 |
+
<args>
|
65 |
+
<module>BeezUp</module>
|
66 |
+
<frontName>beezup</frontName>
|
67 |
+
</args>
|
68 |
+
</beezup>
|
69 |
+
</routers>
|
70 |
+
<events>
|
71 |
+
<controller_action_layout_generate_blocks_before>
|
72 |
+
<observers>
|
73 |
+
<beezup_visitors_tracking>
|
74 |
+
<type>singleton</type>
|
75 |
+
<class>beezup/observer</class>
|
76 |
+
<method>addBlockTracking</method>
|
77 |
+
</beezup_visitors_tracking>
|
78 |
+
</observers>
|
79 |
+
</controller_action_layout_generate_blocks_before>
|
80 |
+
<checkout_onepage_controller_success_action>
|
81 |
+
<observers>
|
82 |
+
<beezup_sales_tracking>
|
83 |
+
<type>singleton</type>
|
84 |
+
<class>beezup/observer</class>
|
85 |
+
<method>addOrder</method>
|
86 |
+
</beezup_sales_tracking>
|
87 |
+
</observers>
|
88 |
+
</checkout_onepage_controller_success_action>
|
89 |
+
|
90 |
+
</events>
|
91 |
+
<translate>
|
92 |
+
<modules>
|
93 |
+
<BeezUp>
|
94 |
+
<files>
|
95 |
+
<default>BeezUp.csv</default>
|
96 |
+
</files>
|
97 |
+
</BeezUp>
|
98 |
+
</modules>
|
99 |
+
</translate>
|
100 |
+
</frontend>
|
101 |
+
<adminhtml>
|
102 |
+
<layout>
|
103 |
+
<updates>
|
104 |
+
<beezup>
|
105 |
+
<file>beezup_salestab.xml</file>
|
106 |
+
</beezup>
|
107 |
+
</updates>
|
108 |
+
</layout>
|
109 |
+
<acl>
|
110 |
+
<resources>
|
111 |
+
|
112 |
+
|
113 |
+
<admin>
|
114 |
+
<children>
|
115 |
+
<system>
|
116 |
+
<children>
|
117 |
+
<config>
|
118 |
+
<children>
|
119 |
+
<beezup>
|
120 |
+
<title>BeezUP</title>
|
121 |
+
</beezup>
|
122 |
+
</children>
|
123 |
+
</config>
|
124 |
+
</children>
|
125 |
+
</system>
|
126 |
+
</children>
|
127 |
+
</admin>
|
128 |
+
</resources>
|
129 |
+
</acl>
|
130 |
+
<translate>
|
131 |
+
<modules>
|
132 |
+
<BeezUp>
|
133 |
+
<files>
|
134 |
+
<default>BeezUp.csv</default>
|
135 |
+
</files>
|
136 |
+
</BeezUp>
|
137 |
+
</modules>
|
138 |
+
</translate>
|
139 |
+
</adminhtml>
|
140 |
+
<default>
|
141 |
+
|
142 |
+
<carriers>
|
143 |
<beezup>
|
144 |
+
<active>1</active>
|
145 |
+
<model>beezup/carrier</model>
|
146 |
+
<title>Beezup Carrier</title>
|
147 |
+
<sort_order>10</sort_order>
|
148 |
+
<sallowspecific>0</sallowspecific>
|
149 |
+
|
150 |
</beezup>
|
151 |
+
</carriers>
|
152 |
+
|
153 |
+
<beezup>
|
154 |
+
<tracking>
|
155 |
+
<active>0</active>
|
156 |
+
<storeid></storeid>
|
157 |
+
<marge>0</marge>
|
158 |
+
<debug>0</debug>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
159 |
<montant>HT</montant>
|
160 |
+
<position>head</position>
|
161 |
+
</tracking>
|
162 |
<marketplace>
|
163 |
+
<connection_status>0</connection_status>
|
164 |
</marketplace>
|
165 |
+
<flux>
|
166 |
+
<active>0</active>
|
167 |
+
<debug_flux>1</debug_flux>
|
168 |
+
<ht>1</ht>
|
169 |
+
<vat>20</vat>
|
170 |
+
<days_in>1-2</days_in>
|
171 |
+
<days_out>6-8</days_out>
|
172 |
+
<description>description</description>
|
173 |
<cachedelay>2</cachedelay>
|
174 |
<visibility>7</visibility>
|
175 |
<category_logic>1</category_logic>
|
176 |
+
<ship></ship>
|
177 |
+
<key></key>
|
178 |
+
<ip></ip>
|
179 |
<images></images>
|
180 |
|
181 |
+
</flux>
|
182 |
+
</beezup>
|
183 |
+
</default>
|
184 |
|
185 |
|
186 |
+
<admin>
|
187 |
+
<routers>
|
188 |
+
<adminhtml>
|
189 |
+
<use>admin</use>
|
190 |
+
<args>
|
191 |
+
<modules>
|
192 |
+
<BeezUp before="Mage_Adminhtml">BeezUp</BeezUp>
|
193 |
+
</modules>
|
194 |
+
</args>
|
195 |
+
</adminhtml>
|
196 |
+
</routers>
|
197 |
+
</admin>
|
198 |
|
199 |
|
200 |
|
app/code/community/BeezUp/etc/system.xml
CHANGED
@@ -1,6 +1,37 @@
|
|
1 |
<config>
|
2 |
<sections>
|
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
|
5 |
<beezup translate="label" module="beezup">
|
6 |
<label>BeezUP</label>
|
@@ -13,7 +44,7 @@
|
|
13 |
<tracking translate="label">
|
14 |
<label>Tracking</label>
|
15 |
<frontend_type>text</frontend_type>
|
16 |
-
<comment><![CDATA[<div style="font-size:11px;padding:3px;margin-bottom:20px;background:#FFF9E9;border:1px solid #EEE2BE">Support BeezUP : <a href="mailto:help@beezup.com">help@beezup.com</a> (Magento BeezUP v4.7.
|
17 |
<sort_order>1</sort_order>
|
18 |
<show_in_default>1</show_in_default>
|
19 |
<show_in_website>1</show_in_website>
|
@@ -77,7 +108,7 @@
|
|
77 |
<marketplace tanslate="label">
|
78 |
<label>Marketplace</label>
|
79 |
<frontend_type>text</frontend_type>
|
80 |
-
<comment><![CDATA[<div style="font-size:11px;padding:3px;margin-bottom:20px;background:#FFF9E9;border:1px solid #EEE2BE">Support BeezUP : <a href="mailto:help@beezup.com">help@beezup.com</a> (Magento BeezUP v4.7.
|
81 |
<sort_order>2</sort_order>
|
82 |
<show_in_default>1</show_in_default>
|
83 |
<show_in_website>1</show_in_website>
|
@@ -465,7 +496,7 @@
|
|
465 |
<flux translate="label">
|
466 |
<label>Catalog Flow</label>
|
467 |
<frontend_type>text</frontend_type>
|
468 |
-
<comment><![CDATA[<div style="font-size:11px;padding:3px;margin-bottom:20px;background:#FFF9E9;border:1px solid #EEE2BE">Support BeezUP : <a href="mailto:help@beezup.com">help@beezup.com</a> (Magento BeezUP v4.7.
|
469 |
<sort_order>2</sort_order>
|
470 |
<show_in_default>1</show_in_default>
|
471 |
<show_in_website>1</show_in_website>
|
1 |
<config>
|
2 |
<sections>
|
3 |
|
4 |
+
<carriers>
|
5 |
+
<groups>
|
6 |
+
<beezup translate="label">
|
7 |
+
<label>Beezup Shipping Method</label>
|
8 |
+
<sort_order>1</sort_order>
|
9 |
+
<show_in_default>1</show_in_default>
|
10 |
+
<show_in_website>0</show_in_website>
|
11 |
+
<show_in_store>0</show_in_store>
|
12 |
+
<fields>
|
13 |
+
<active translate="label">
|
14 |
+
<label>Enabled</label>
|
15 |
+
<frontend_type>select</frontend_type>
|
16 |
+
<source_model>adminhtml/system_config_source_yesno</source_model>
|
17 |
+
<sort_order>1</sort_order>
|
18 |
+
<show_in_default>1</show_in_default>
|
19 |
+
<show_in_website>0</show_in_website>
|
20 |
+
<show_in_store>0</show_in_store>
|
21 |
+
</active>
|
22 |
+
<title translate="label">
|
23 |
+
<label>Shipping Method Name</label>
|
24 |
+
<frontend_type>text</frontend_type>
|
25 |
+
<sort_order>20</sort_order>
|
26 |
+
<show_in_default>1</show_in_default>
|
27 |
+
<show_in_website>0</show_in_website>
|
28 |
+
<show_in_store>0</show_in_store>
|
29 |
+
</title>
|
30 |
+
|
31 |
+
</fields>
|
32 |
+
</beezup>
|
33 |
+
</groups>
|
34 |
+
</carriers>
|
35 |
|
36 |
<beezup translate="label" module="beezup">
|
37 |
<label>BeezUP</label>
|
44 |
<tracking translate="label">
|
45 |
<label>Tracking</label>
|
46 |
<frontend_type>text</frontend_type>
|
47 |
+
<comment><![CDATA[<div style="font-size:11px;padding:3px;margin-bottom:20px;background:#FFF9E9;border:1px solid #EEE2BE">Support BeezUP : <a href="mailto:help@beezup.com">help@beezup.com</a> (Magento BeezUP v4.7.2) - <a href="http://go.beezup.com" target="_blank">My BeezUP Account</a></div>]]></comment>
|
48 |
<sort_order>1</sort_order>
|
49 |
<show_in_default>1</show_in_default>
|
50 |
<show_in_website>1</show_in_website>
|
108 |
<marketplace tanslate="label">
|
109 |
<label>Marketplace</label>
|
110 |
<frontend_type>text</frontend_type>
|
111 |
+
<comment><![CDATA[<div style="font-size:11px;padding:3px;margin-bottom:20px;background:#FFF9E9;border:1px solid #EEE2BE">Support BeezUP : <a href="mailto:help@beezup.com">help@beezup.com</a> (Magento BeezUP v4.7.2) - <a href="http://go.beezup.com" target="_blank">My BeezUP Account</a></div>]]></comment>
|
112 |
<sort_order>2</sort_order>
|
113 |
<show_in_default>1</show_in_default>
|
114 |
<show_in_website>1</show_in_website>
|
496 |
<flux translate="label">
|
497 |
<label>Catalog Flow</label>
|
498 |
<frontend_type>text</frontend_type>
|
499 |
+
<comment><![CDATA[<div style="font-size:11px;padding:3px;margin-bottom:20px;background:#FFF9E9;border:1px solid #EEE2BE">Support BeezUP : <a href="mailto:help@beezup.com">help@beezup.com</a> (Magento BeezUP v4.7.2) - <a href="http://go.beezup.com" target="_blank">My BeezUP Account</a></div>]]></comment>
|
500 |
<sort_order>2</sort_order>
|
501 |
<show_in_default>1</show_in_default>
|
502 |
<show_in_website>1</show_in_website>
|
app/etc/modules/BeezUp.xml
CHANGED
@@ -1,9 +1,12 @@
|
|
1 |
-
<?xml version="1.0"?>
|
2 |
-
<config>
|
3 |
-
<modules>
|
4 |
-
<BeezUp>
|
5 |
-
<active>true</active>
|
6 |
-
<codePool>community</codePool>
|
7 |
-
|
8 |
-
|
9 |
-
</
|
|
|
|
|
|
1 |
+
<?xml version="1.0"?>
|
2 |
+
<config>
|
3 |
+
<modules>
|
4 |
+
<BeezUp>
|
5 |
+
<active>true</active>
|
6 |
+
<codePool>community</codePool>
|
7 |
+
<depends>
|
8 |
+
<Mage_Shipping />
|
9 |
+
</depends>
|
10 |
+
</BeezUp>
|
11 |
+
</modules>
|
12 |
+
</config>
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>BeezUP_Module_feed_and_tracker</name>
|
4 |
-
<version>4.7.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">Open Software License</license>
|
7 |
<channel>community</channel>
|
@@ -42,11 +42,11 @@ After Set-up, the following files are added :</p>
|
|
42 |

|
43 |
<p>By BeezUP & Magentix</p></description>
|
44 |
<notes>New features :
|
45 |
-
-
|
46 |
<authors><author><name>BeezUP</name><user>BeezUP</user><email>charles@beezup.com</email></author></authors>
|
47 |
-
<date>2016-
|
48 |
-
<time>17:
|
49 |
-
<contents><target name="magecommunity"><dir name="BeezUp"><dir name="Block"><dir name="Adminhtml"><dir name="Sales"><dir name="Order"><file name="Grid.php" hash="e18c65bc83cab8795b4ffd0d46e04c8a"/><dir name="Invoice"><file name="Totals.php" hash="ac065cd586fd2534de7e12762ab9b335"/></dir><file name="Totals.php" hash="5972281aa467d63da56a297a8df3da55"/><dir name="View"><dir name="Tab"><file name="Custom.php" hash="a60f500d604038645b826fa74e9b6619"/></dir></dir></dir><file name="Order.php" hash="c038c302f2c86f79431b49c7282c3f5c"/></dir><dir name="System"><dir name="Config"><file name="Attributes.php" hash="a504265fe4dc2df69b311d8219c88fbf"/><file name="Autoship.php" hash="29a12f9ec87f4e4a8a6d0719aab4a4f6"/><file name="Button.php" hash="476b33034b0c7d36e1bbd85f38b841db"/><file name="Childgroup.php" hash="388d3dee8f9d66a56c43c2790a44b45a"/><file name="Credentials.php" hash="b86f361800bebfd6fcf3564d9fe87c95"/><file name="Cron.php" hash="e1d47b095623593beb7f166d2ad7fecc"/><file name="Filter.php" hash="ad7ba55e18c080e25a08309dc428402a"/><file name="Log.php" hash="86221765980c0aee2381d5efd740949d"/><file name="Manualcron.php" hash="cbac01f15d256a43f0388f58449bffd0"/><file name="Orderlink.php" hash="9b9242ea9ccc4cfa746036b72aed2cc1"/><file name="Stores.php" hash="4297f4c94f136bb9778c9ddcd0cb336c"/><file name="Syncstatus.php" hash="49164eb19331aadabc0581472cd3c567"/><file name="Time.php" hash="ac5c2e4a40e9c6ff68cea1097dfa1e7b"/></dir></dir></dir><file name="Omstatus.php" hash="061d861d973e232a18acea0387a4a290"/><file name="Order.php" hash="ce1d3347e947fe4a0159e53ddb611fd3"/><file name="Tracking.php" hash="e6dcd6b89e782b2eb6cb83abfb1b7f56"/><file name="Xml.php" hash="dbaed2a7dfb2ea57f932865a09ae9760"/></dir><dir name="Helper"><file name="Data.php" hash="867a2562b255beaf3faa047d4130304f"/></dir><dir name="Model"><file name="Flatrate.php" hash="27d078203781d9b923605f685bfe5c25"/><file name="Observer.php" hash="e067e82f0a86088ad5dc062074caea51"/><file name="Products.php" hash="e2ffaec55b84d4c1923547fc2aad47b6"/><dir name="Quote"><file name="Item.php" hash="13cef88e165932990fa032b57e8905a0"/></dir><dir name="Sales"><dir name="Order"><dir name="Pdf"><file name="Invoice.php" hash="9eaf28084db176b41c6007da3d529d18"/></dir></dir></dir><dir name="System"><dir name="Config"><dir name="Backend"><file name="Attributes.php" hash="174aee475c6a6a8b0b4f2e8e076c6a25"/><file name="Autoship.php" hash="7e14eb34edffeb1f42fa372874922c84"/><file name="Credentials.php" hash="09ef9fab57f64eb6415d71ba8aec2412"/><file name="Time.php" hash="a70e4d748a9b300ec7b718168fa4d5f8"/><file name="Token.php" hash="60247c8b4d5889433ae1f92e998cc889"/></dir><dir name="Source"><file name="Attributes.php" hash="8f57313a41349c7a8132b8d8e2de275e"/><file name="Autoshipcarriers.php" hash="8d630c9bff8db63b4fb30f11768ce443"/><file name="Availableproducts.php" hash="d9d4b3705f5fbd98efbae0289a1b6d6d"/><file name="Cache.php" hash="0ca6ccc2fed56e2c602d76880d062053"/><file name="Carriers.php" hash="2aa4edae4a91dfd0bbb752aa2f4c0073"/><file name="Categories.php" hash="c4e9f0a54f1d9c688543f26f02f99142"/><file name="Countries.php" hash="b6f1a9a75d5368d6365f06b42524e002"/><file name="Customercreate.php" hash="ca5d2b2d1ad4e18f9a1135af21b10bc2"/><file name="Debug.php" hash="6538ebc0cd0d61c124e5adc806e71aff"/><file name="Description.php" hash="1746e688692fc99524f02fb18e707dcf"/><file name="Images.php" hash="78fb5e2054bbfaa2e76263b1aa9197cc"/><file name="Montant.php" hash="3a46b8d564f1c2f0ed3b62354ac8964f"/><file name="Payment.php" hash="4bebe8e6ab0f980c1ada872b46e86503"/><file name="Position.php" hash="f1d6f89f5db5bfeedc506c539e76e3a8"/><file name="Price.php" hash="71707a69106cdd4990767351ab78fc04"/><file name="Shipping.php" hash="93401afc4fe0fb60824b778a26a24cdd"/><file name="Status.php" hash="d32004ad97adac6de361703a403a6a97"/><file name="Userid.php" hash="3d028bc3bfcaf7541b57676c014c94db"/><file name="Visibility.php" hash="91c69e8f967c13162eb38306c0391080"/></dir></dir></dir></dir><dir name="controllers"><file name="CacheController.php" hash="512cc26abd39d556104d5e69c0ac8a0d"/><file name="CatalogController.php" hash="0b65f6951e26283ea8c60bffa397186d"/><file name="CronController.php" hash="026ddcd6df9a51a41037687ca8d53a0b"/><file name="LogController.php" hash="5eff0d0a2c5621456e580e214d05c745"/><file name="OmstatusController.php" hash="95ae171ef21f861a7eaf74931b62a9db"/><file name="OrderController.php" hash="a2b8df2fb01fb4df8e7f04bcd7689bb3"/></dir><dir name="etc"><file name="adminhtml.xml" hash="e50ed10cb5025ff3a6dd7c90a6f7e0a4"/><file name="config.xml" hash="64495a2fdbdc693b58247199e837f3a4"/><file name="system.xml" hash="3cbe15a192a3856849017da3518028d1"/></dir><dir name="img"><file name="ajax-loader.gif" hash="2a6692973429d7a74513bfa8bcb5be20"/></dir><dir name="lib"><file name="BeezupMageOrders.php" hash="537cfce31df19f4decda5e876ec74b5d"/><file name="BeezupOMDataHandler.php" hash="cf738987179f3125fc0f4626fd70f1a0"/><file name="BeezupOMOrderService.php" hash="47c09c14dce66f914023ff09374cd674"/><file name="BeezupOMOrderServiceInterface.php" hash="9b18485ae224c32f46ae5a2ec5966e5b"/><file name="BeezupOMRepositoryInterface.php" hash="c2a8267c01c3e5def25ed41f715fa4b4"/><file name="BeezupOMRequestData.php" hash="162196502ecc6078ac6b7dec6f068c80"/><file name="BeezupOMResponseData.php" hash="955ce5316129e837190f2ccf9962d74f"/><file name="BeezupOMServiceClientProxy.php" hash="5e3a1759aabfb0349f270ce4cfd80725"/><file name="BeezupOMStatus.php" hash="91622de51c7d8b9f53f1b9ccdafbb24c"/><file name="BeezupRepository.php" hash="4a4eaabcd0a5d7427154e93757c3733d"/><dir name="Common"><file name="BeezupOMCredential.php" hash="7f45272d16860058af07005dda39672e"/><file name="BeezupOMErrorSummary.php" hash="418db7b85beb030b2d28aee6c8b35bf1"/><file name="BeezupOMExpectedOrderChangeMetaInfo.php" hash="be802f69a3474d6cc6a5899711c7018c"/><file name="BeezupOMInfoSummaries.php" hash="cdece780cf38e3f09ce2d5550b93a567"/><file name="BeezupOMInfoSummary.php" hash="3b0d49f22882e239c87060aa58beb643"/><file name="BeezupOMLink.php" hash="9fa99dce0b51e235e101259b2f0304f8"/><file name="BeezupOMOrderIdentifier.php" hash="334f410bf0794cb2ce02b4b1e6d3e0f4"/><file name="BeezupOMProcessingStatus.php" hash="b70c4c23a75360b5bee4d9ddec9e7915"/><file name="BeezupOMRequest.php" hash="2497b1ed30c12d179a5629479aee418d"/><file name="BeezupOMResponse.php" hash="690688115873ac9a3172bf67a0d62b50"/><file name="BeezupOMResult.php" hash="5cb890ce4ad4205114dd94cd1f28222d"/><file name="BeezupOMSuccessSummary.php" hash="791c6c186ed15ec1b872905b820cd03c"/><file name="BeezupOMSummary.php" hash="6cc3712480eff9f19b80b0ab887155f0"/><file name="BeezupOMWarningSummary.php" hash="03cfd6a98901b6b460b974b8e938a659"/></dir><dir name="Harvest"><file name="BeezupOMHarvestAbstractReporting.php" hash="3d499a69ea7b646eaeef5b80f0a919f3"/><file name="BeezupOMHarvestClientReporting.php" hash="1e40eca349352912e408718f3b218777"/><file name="BeezupOMHarvestOrderReporting.php" hash="778ba93a7673f35b2072003e3510ba6b"/></dir><file name="KLogger.php" hash="fe1d31bbfdf4d59a858ffd43453536c2"/><dir name="LOV"><file name="BeezupOMLOVRequest.php" hash="165c873b3fea4201a3b35596d24ffe36"/><file name="BeezupOMLOVResponse.php" hash="586749fb17b16d5ff9f07909e516b3c7"/><file name="BeezupOMLOVResult.php" hash="c0e3cc917a1d625ac6094917481a7b52"/><file name="BeezupOMLOVValue.php" hash="0dd13ae88e99c2537df8804f3af248b9"/></dir><dir name="Marketplaces"><file name="BeezupOMMarketplace.php" hash="b85f1c977258ebc70c206a4ff461cb9a"/><file name="BeezupOMMarketplacesRequest.php" hash="5d1b27434872ed04210b9af795f5e464"/><file name="BeezupOMMarketplacesResponse.php" hash="0837f9ba0a610492362d73cd54ed4123"/><file name="BeezupOMMarketplacesResult.php" hash="369a2bf6e4c4134636ddeb849c6a8945"/></dir><dir name="Order"><file name="BeezupOMOrderItem.php" hash="a770b90ae4fcb6535563be6ff59f7528"/><file name="BeezupOMOrderRequest.php" hash="9afa0f18fc0aef344c3f71d054db23a0"/><file name="BeezupOMOrderResponse.php" hash="e8793a8754ec75a92ca6266357462307"/><file name="BeezupOMOrderResult.php" hash="b82fd5d86b578f2eb1d162a1169f3a9b"/></dir><dir name="OrderChange"><file name="BeezupOMOrderChangeMetaInfo.php" hash="abdbdfd6c3bf291fd38f9b3ddc419405"/><file name="BeezupOMOrderChangeRequest.php" hash="f43b9c0a052fe5346a1b309c6d96ae9c"/><file name="BeezupOMOrderChangeResponse.php" hash="bbb4e49e5ddb90991e763daa439a5642"/><file name="BeezupOMOrderChangeResult.php" hash="e7314addf6c2e51196577055d583f350"/></dir><dir name="OrderHistory"><file name="BeezupOMOrderChangeReporting.php" hash="fc7a7d7ee8bc53f8c5b7ed19793a911a"/><file name="BeezupOMOrderHarvestReporting.php" hash="e4cb500ef347d8e8543e0bf278d3d77c"/><file name="BeezupOMOrderHistoryRequest.php" hash="2e39c26d8d9dd4d5a92a2cde06c41353"/><file name="BeezupOMOrderHistoryResponse.php" hash="dc6a0c6dc89bf1f376d1ecfebd052a4b"/><file name="BeezupOMOrderHistoryResult.php" hash="d85d9b4ecf6c0456b5c8453cc3b9cfdd"/></dir><dir name="OrderList"><file name="BeezupOMOrderHeader.php" hash="af366bc39855f1315678f01b53859c1c"/><file name="BeezupOMOrderListRequest.php" hash="817c20c7c82fd5f05e0efb19ee19ec4b"/><file name="BeezupOMOrderListResponse.php" hash="b1b0ed33ba495f6e2c2f3a39ade2a5cd"/><file name="BeezupOMOrderListResult.php" hash="8befe82305a6c6fe3cacf113b3722585"/><file name="BeezupOMPaginationResult.php" hash="1e1ef534ddef8ac43d98839b4ed7f941"/></dir><dir name="SetOrderId"><file name="BeezupOMSetOrderIdRequest.php" hash="40b4a05023396115f582c2e907834e3b"/><file name="BeezupOMSetOrderIdResponse.php" hash="c4cb1f9013ae32dfdff8ca80e4725282"/><file name="BeezupOMSetOrderIdResult.php" hash="8b35abb55c52f6acdfd55bf20b370bf0"/><file name="BeezupOMSetOrderIdValues.php" hash="978b41465512c15bfe160463ca23d24f"/></dir><dir name="Stores"><file name="BeezupOMStore.php" hash="0882efcae2eff339d6cdcceee83135a7"/><file name="BeezupOMStoresRequest.php" hash="a6b1391e306f2ed21fd5e2fcdbcbbec5"/><file name="BeezupOMStoresResponse.php" hash="21535a8957506ef7da343a0526b57b02"/><file name="BeezupOMStoresResult.php" hash="d4ceed947e9e8086638497e75bbd20e8"/></dir><file name="bootstrap.php" hash="9dba513402094fc02ec291e08583b419"/></dir><dir name="sql"><dir name="beezup_setup"><file name="mysql4-install-4.0.0.php" hash="75dacb26e3f96975a873c906eb37fbb0"/><file name="mysql4-upgrade-4.5.0-4.6.0.php" hash="34d1bc3a9b7658923a389fd6653ed4c9"/></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="BeezUp.xml" hash="93df32f86c55b57363b9abc62cf68474"/></dir></target><target name="magelocale"><dir name="fr_FR"><file name="BeezUp.csv" hash="3ae5819ffc7157b01772a15a9b16d2a2"/></dir><dir name="en_US"><file name="BeezUp.csv" hash="05b26592c14245824173936807731db4"/></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="beezup_salestab.xml" hash="784925d72538a1eeb0ca695417147a7a"/></dir><dir name="template"><dir name="beezup"><file name="custom.phtml" hash="ea83d17a2e8814c3a9ae9e056c7926a8"/></dir></dir></dir></dir></dir></target></contents>
|
50 |
<compatible/>
|
51 |
<dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
|
52 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>BeezUP_Module_feed_and_tracker</name>
|
4 |
+
<version>4.7.2</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">Open Software License</license>
|
7 |
<channel>community</channel>
|
42 |

|
43 |
<p>By BeezUP & Magentix</p></description>
|
44 |
<notes>New features :
|
45 |
+
- BeezUP carrier</notes>
|
46 |
<authors><author><name>BeezUP</name><user>BeezUP</user><email>charles@beezup.com</email></author></authors>
|
47 |
+
<date>2016-11-17</date>
|
48 |
+
<time>17:49:13</time>
|
49 |
+
<contents><target name="magecommunity"><dir name="BeezUp"><dir name="Block"><dir name="Adminhtml"><dir name="Sales"><dir name="Order"><file name="Grid.php" hash="e18c65bc83cab8795b4ffd0d46e04c8a"/><dir name="Invoice"><file name="Totals.php" hash="ac065cd586fd2534de7e12762ab9b335"/></dir><file name="Totals.php" hash="5972281aa467d63da56a297a8df3da55"/><dir name="View"><dir name="Tab"><file name="Custom.php" hash="a60f500d604038645b826fa74e9b6619"/></dir></dir></dir><file name="Order.php" hash="c038c302f2c86f79431b49c7282c3f5c"/></dir><dir name="System"><dir name="Config"><file name="Attributes.php" hash="a504265fe4dc2df69b311d8219c88fbf"/><file name="Autoship.php" hash="29a12f9ec87f4e4a8a6d0719aab4a4f6"/><file name="Button.php" hash="476b33034b0c7d36e1bbd85f38b841db"/><file name="Childgroup.php" hash="388d3dee8f9d66a56c43c2790a44b45a"/><file name="Credentials.php" hash="b86f361800bebfd6fcf3564d9fe87c95"/><file name="Cron.php" hash="e1d47b095623593beb7f166d2ad7fecc"/><file name="Filter.php" hash="ad7ba55e18c080e25a08309dc428402a"/><file name="Log.php" hash="86221765980c0aee2381d5efd740949d"/><file name="Manualcron.php" hash="cbac01f15d256a43f0388f58449bffd0"/><file name="Orderlink.php" hash="9b9242ea9ccc4cfa746036b72aed2cc1"/><file name="Stores.php" hash="4297f4c94f136bb9778c9ddcd0cb336c"/><file name="Syncstatus.php" hash="49164eb19331aadabc0581472cd3c567"/><file name="Time.php" hash="ac5c2e4a40e9c6ff68cea1097dfa1e7b"/></dir></dir></dir><file name="Omstatus.php" hash="061d861d973e232a18acea0387a4a290"/><file name="Order.php" hash="a305db75dba76f06f9d2320fcd8e38c1"/><file name="Tracking.php" hash="e6dcd6b89e782b2eb6cb83abfb1b7f56"/><file name="Xml.php" hash="dbaed2a7dfb2ea57f932865a09ae9760"/></dir><dir name="Helper"><file name="Data.php" hash="867a2562b255beaf3faa047d4130304f"/></dir><dir name="Model"><file name="Carrier.php" hash="4a8f63e7cab3145ab679fbe0eff9a0bd"/><file name="Observer.php" hash="e067e82f0a86088ad5dc062074caea51"/><file name="Products.php" hash="e2ffaec55b84d4c1923547fc2aad47b6"/><dir name="Quote"><file name="Item.php" hash="13cef88e165932990fa032b57e8905a0"/></dir><dir name="Sales"><dir name="Order"><dir name="Pdf"><file name="Invoice.php" hash="9eaf28084db176b41c6007da3d529d18"/></dir></dir></dir><dir name="System"><dir name="Config"><dir name="Backend"><file name="Attributes.php" hash="174aee475c6a6a8b0b4f2e8e076c6a25"/><file name="Autoship.php" hash="7e14eb34edffeb1f42fa372874922c84"/><file name="Credentials.php" hash="09ef9fab57f64eb6415d71ba8aec2412"/><file name="Time.php" hash="a70e4d748a9b300ec7b718168fa4d5f8"/><file name="Token.php" hash="60247c8b4d5889433ae1f92e998cc889"/></dir><dir name="Source"><file name="Attributes.php" hash="8f57313a41349c7a8132b8d8e2de275e"/><file name="Autoshipcarriers.php" hash="8d630c9bff8db63b4fb30f11768ce443"/><file name="Availableproducts.php" hash="d9d4b3705f5fbd98efbae0289a1b6d6d"/><file name="Cache.php" hash="0ca6ccc2fed56e2c602d76880d062053"/><file name="Carriers.php" hash="2aa4edae4a91dfd0bbb752aa2f4c0073"/><file name="Categories.php" hash="c4e9f0a54f1d9c688543f26f02f99142"/><file name="Countries.php" hash="b6f1a9a75d5368d6365f06b42524e002"/><file name="Customercreate.php" hash="ca5d2b2d1ad4e18f9a1135af21b10bc2"/><file name="Debug.php" hash="6538ebc0cd0d61c124e5adc806e71aff"/><file name="Description.php" hash="1746e688692fc99524f02fb18e707dcf"/><file name="Images.php" hash="78fb5e2054bbfaa2e76263b1aa9197cc"/><file name="Montant.php" hash="3a46b8d564f1c2f0ed3b62354ac8964f"/><file name="Payment.php" hash="4bebe8e6ab0f980c1ada872b46e86503"/><file name="Position.php" hash="f1d6f89f5db5bfeedc506c539e76e3a8"/><file name="Price.php" hash="71707a69106cdd4990767351ab78fc04"/><file name="Shipping.php" hash="93401afc4fe0fb60824b778a26a24cdd"/><file name="Status.php" hash="d32004ad97adac6de361703a403a6a97"/><file name="Userid.php" hash="3d028bc3bfcaf7541b57676c014c94db"/><file name="Visibility.php" hash="91c69e8f967c13162eb38306c0391080"/></dir></dir></dir></dir><dir name="controllers"><file name="CacheController.php" hash="512cc26abd39d556104d5e69c0ac8a0d"/><file name="CatalogController.php" hash="0b65f6951e26283ea8c60bffa397186d"/><file name="CronController.php" hash="026ddcd6df9a51a41037687ca8d53a0b"/><file name="LogController.php" hash="5eff0d0a2c5621456e580e214d05c745"/><file name="OmstatusController.php" hash="95ae171ef21f861a7eaf74931b62a9db"/><file name="OrderController.php" hash="a2b8df2fb01fb4df8e7f04bcd7689bb3"/></dir><dir name="etc"><file name="adminhtml.xml" hash="e50ed10cb5025ff3a6dd7c90a6f7e0a4"/><file name="config.xml" hash="131035357771caf0c7c0c5c934837e2e"/><file name="system.xml" hash="ad69d215a4a8bb8b4fd90a576d550623"/></dir><dir name="img"><file name="ajax-loader.gif" hash="2a6692973429d7a74513bfa8bcb5be20"/></dir><dir name="lib"><file name="BeezupMageOrders.php" hash="537cfce31df19f4decda5e876ec74b5d"/><file name="BeezupOMDataHandler.php" hash="cf738987179f3125fc0f4626fd70f1a0"/><file name="BeezupOMOrderService.php" hash="47c09c14dce66f914023ff09374cd674"/><file name="BeezupOMOrderServiceInterface.php" hash="9b18485ae224c32f46ae5a2ec5966e5b"/><file name="BeezupOMRepositoryInterface.php" hash="c2a8267c01c3e5def25ed41f715fa4b4"/><file name="BeezupOMRequestData.php" hash="162196502ecc6078ac6b7dec6f068c80"/><file name="BeezupOMResponseData.php" hash="955ce5316129e837190f2ccf9962d74f"/><file name="BeezupOMServiceClientProxy.php" hash="5e3a1759aabfb0349f270ce4cfd80725"/><file name="BeezupOMStatus.php" hash="91622de51c7d8b9f53f1b9ccdafbb24c"/><file name="BeezupRepository.php" hash="4a4eaabcd0a5d7427154e93757c3733d"/><dir name="Common"><file name="BeezupOMCredential.php" hash="7f45272d16860058af07005dda39672e"/><file name="BeezupOMErrorSummary.php" hash="418db7b85beb030b2d28aee6c8b35bf1"/><file name="BeezupOMExpectedOrderChangeMetaInfo.php" hash="be802f69a3474d6cc6a5899711c7018c"/><file name="BeezupOMInfoSummaries.php" hash="cdece780cf38e3f09ce2d5550b93a567"/><file name="BeezupOMInfoSummary.php" hash="3b0d49f22882e239c87060aa58beb643"/><file name="BeezupOMLink.php" hash="9fa99dce0b51e235e101259b2f0304f8"/><file name="BeezupOMOrderIdentifier.php" hash="334f410bf0794cb2ce02b4b1e6d3e0f4"/><file name="BeezupOMProcessingStatus.php" hash="b70c4c23a75360b5bee4d9ddec9e7915"/><file name="BeezupOMRequest.php" hash="2497b1ed30c12d179a5629479aee418d"/><file name="BeezupOMResponse.php" hash="690688115873ac9a3172bf67a0d62b50"/><file name="BeezupOMResult.php" hash="5cb890ce4ad4205114dd94cd1f28222d"/><file name="BeezupOMSuccessSummary.php" hash="791c6c186ed15ec1b872905b820cd03c"/><file name="BeezupOMSummary.php" hash="6cc3712480eff9f19b80b0ab887155f0"/><file name="BeezupOMWarningSummary.php" hash="03cfd6a98901b6b460b974b8e938a659"/></dir><dir name="Harvest"><file name="BeezupOMHarvestAbstractReporting.php" hash="3d499a69ea7b646eaeef5b80f0a919f3"/><file name="BeezupOMHarvestClientReporting.php" hash="1e40eca349352912e408718f3b218777"/><file name="BeezupOMHarvestOrderReporting.php" hash="778ba93a7673f35b2072003e3510ba6b"/></dir><file name="KLogger.php" hash="fe1d31bbfdf4d59a858ffd43453536c2"/><dir name="LOV"><file name="BeezupOMLOVRequest.php" hash="165c873b3fea4201a3b35596d24ffe36"/><file name="BeezupOMLOVResponse.php" hash="586749fb17b16d5ff9f07909e516b3c7"/><file name="BeezupOMLOVResult.php" hash="c0e3cc917a1d625ac6094917481a7b52"/><file name="BeezupOMLOVValue.php" hash="0dd13ae88e99c2537df8804f3af248b9"/></dir><dir name="Marketplaces"><file name="BeezupOMMarketplace.php" hash="b85f1c977258ebc70c206a4ff461cb9a"/><file name="BeezupOMMarketplacesRequest.php" hash="5d1b27434872ed04210b9af795f5e464"/><file name="BeezupOMMarketplacesResponse.php" hash="0837f9ba0a610492362d73cd54ed4123"/><file name="BeezupOMMarketplacesResult.php" hash="369a2bf6e4c4134636ddeb849c6a8945"/></dir><dir name="Order"><file name="BeezupOMOrderItem.php" hash="a770b90ae4fcb6535563be6ff59f7528"/><file name="BeezupOMOrderRequest.php" hash="9afa0f18fc0aef344c3f71d054db23a0"/><file name="BeezupOMOrderResponse.php" hash="e8793a8754ec75a92ca6266357462307"/><file name="BeezupOMOrderResult.php" hash="b82fd5d86b578f2eb1d162a1169f3a9b"/></dir><dir name="OrderChange"><file name="BeezupOMOrderChangeMetaInfo.php" hash="abdbdfd6c3bf291fd38f9b3ddc419405"/><file name="BeezupOMOrderChangeRequest.php" hash="f43b9c0a052fe5346a1b309c6d96ae9c"/><file name="BeezupOMOrderChangeResponse.php" hash="bbb4e49e5ddb90991e763daa439a5642"/><file name="BeezupOMOrderChangeResult.php" hash="e7314addf6c2e51196577055d583f350"/></dir><dir name="OrderHistory"><file name="BeezupOMOrderChangeReporting.php" hash="fc7a7d7ee8bc53f8c5b7ed19793a911a"/><file name="BeezupOMOrderHarvestReporting.php" hash="e4cb500ef347d8e8543e0bf278d3d77c"/><file name="BeezupOMOrderHistoryRequest.php" hash="2e39c26d8d9dd4d5a92a2cde06c41353"/><file name="BeezupOMOrderHistoryResponse.php" hash="dc6a0c6dc89bf1f376d1ecfebd052a4b"/><file name="BeezupOMOrderHistoryResult.php" hash="d85d9b4ecf6c0456b5c8453cc3b9cfdd"/></dir><dir name="OrderList"><file name="BeezupOMOrderHeader.php" hash="af366bc39855f1315678f01b53859c1c"/><file name="BeezupOMOrderListRequest.php" hash="817c20c7c82fd5f05e0efb19ee19ec4b"/><file name="BeezupOMOrderListResponse.php" hash="b1b0ed33ba495f6e2c2f3a39ade2a5cd"/><file name="BeezupOMOrderListResult.php" hash="8befe82305a6c6fe3cacf113b3722585"/><file name="BeezupOMPaginationResult.php" hash="1e1ef534ddef8ac43d98839b4ed7f941"/></dir><dir name="SetOrderId"><file name="BeezupOMSetOrderIdRequest.php" hash="40b4a05023396115f582c2e907834e3b"/><file name="BeezupOMSetOrderIdResponse.php" hash="c4cb1f9013ae32dfdff8ca80e4725282"/><file name="BeezupOMSetOrderIdResult.php" hash="8b35abb55c52f6acdfd55bf20b370bf0"/><file name="BeezupOMSetOrderIdValues.php" hash="978b41465512c15bfe160463ca23d24f"/></dir><dir name="Stores"><file name="BeezupOMStore.php" hash="0882efcae2eff339d6cdcceee83135a7"/><file name="BeezupOMStoresRequest.php" hash="a6b1391e306f2ed21fd5e2fcdbcbbec5"/><file name="BeezupOMStoresResponse.php" hash="21535a8957506ef7da343a0526b57b02"/><file name="BeezupOMStoresResult.php" hash="d4ceed947e9e8086638497e75bbd20e8"/></dir><file name="bootstrap.php" hash="9dba513402094fc02ec291e08583b419"/></dir><dir name="sql"><dir name="beezup_setup"><file name="mysql4-install-4.0.0.php" hash="75dacb26e3f96975a873c906eb37fbb0"/><file name="mysql4-upgrade-4.5.0-4.6.0.php" hash="34d1bc3a9b7658923a389fd6653ed4c9"/></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="BeezUp.xml" hash="78c53bf08b7a60920283c91fec9f18dd"/></dir></target><target name="magelocale"><dir name="fr_FR"><file name="BeezUp.csv" hash="3ae5819ffc7157b01772a15a9b16d2a2"/></dir><dir name="en_US"><file name="BeezUp.csv" hash="05b26592c14245824173936807731db4"/></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="beezup_salestab.xml" hash="784925d72538a1eeb0ca695417147a7a"/></dir><dir name="template"><dir name="beezup"><file name="custom.phtml" hash="ea83d17a2e8814c3a9ae9e056c7926a8"/></dir></dir></dir></dir></dir></target></contents>
|
50 |
<compatible/>
|
51 |
<dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
|
52 |
</package>
|