BeezUP_Module_feed_and_tracker - Version 4.2.0

Version Notes

New features :
> Change order status directly from Magento
> Categories logic choice
> Minor bugs

Download this release

Release Info

Developer BeezUP
Extension BeezUP_Module_feed_and_tracker
Version 4.2.0
Comparing to
See all releases


Code changes from version 4.1.0 to 4.2.0

app/code/community/BeezUp/Block/Adminhtml/Sales/Order.php ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class BeezUp_Block_Adminhtml_Sales_Order extends Mage_Adminhtml_Block_Widget_Grid_Container
4
+ {
5
+ public function __construct()
6
+ {
7
+ $this->_blockGroup = 'beezup';
8
+ $this->_controller = 'adminhtml_sales_order';
9
+ $this->_headerText = Mage::helper('beezup')->__('BeezUP Orders');
10
+
11
+ parent::__construct();
12
+ $this->_removeButton('add');
13
+ }
14
+ }
app/code/community/BeezUp/Block/Adminhtml/Sales/Order/Creditmemo/Totals.php DELETED
@@ -1,51 +0,0 @@
1
- <?php
2
-
3
- class BeezUp_Block_Adminhtml_Sales_Order_Creditmemo_Totals extends Mage_Adminhtml_Block_Sales_Order_Creditmemo_Totals
4
- {
5
- /**
6
- * Initialize order totals array
7
- *
8
- * @return Mage_Sales_Block_Order_Totals
9
- */
10
- protected function _initTotals()
11
- {
12
-
13
- $id =$this->getSource()->getQuoteId();
14
- $resource = Mage::getSingleton('core/resource');
15
- $readConnection = $resource->getConnection('core_read');
16
- $table = $resource->getTableName('sales/quote_address');
17
- $query = 'SELECT beezup_fee FROM ' . $table . ' WHERE quote_id = '.$id.' and address_type = \'shipping\' LIMIT 1';
18
- $fee = $readConnection->fetchOne($query);
19
- parent::_initTotals();
20
- $amount = 20;
21
-
22
- if ($fee>0) {
23
- $this->addTotalBefore(new Varien_Object(array(
24
- 'code' => 'turnkeye_insurance',
25
- 'value' => $fee,
26
- 'base_value'=> $fee,
27
- 'label' => $this->helper('beezup')->__('Special Fee'),
28
- ), array('shipping', 'tax')));
29
- }
30
- $this->_totals['paid'] = new Varien_Object(array(
31
- 'code' => 'paid',
32
- 'strong' => true,
33
- 'value' => $this->getSource()->getTotalPaid() +$fee,
34
- 'base_value'=> $this->getSource()->getBaseTotalPaid() + $fee,
35
- 'label' => $this->helper('sales')->__('Total Paid'),
36
- 'area' => 'footer'
37
- ));
38
-
39
- $this->_totals['grand_total'] = new Varien_Object(array(
40
- 'code' => 'grand_total',
41
- 'strong' => true,
42
- 'value' => $this->getSource()->getGrandTotal() +$fee,
43
- 'base_value'=> $this->getSource()->getBaseGrandTotal() +$fee,
44
- 'label' => $this->helper('sales')->__('Grand Total'),
45
- 'area' => 'footer'
46
- ));
47
-
48
- // $this->setGrandTotal($this->getGrandTotal() + 20);
49
- return $this;
50
- }
51
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/code/community/BeezUp/Block/Adminhtml/Sales/Order/Grid.php CHANGED
@@ -1,109 +1,71 @@
1
- <?php
2
 
3
- /**
4
- * Adminhtml sales orders grid
5
- *
6
- * @author Inchoo <ivan.galambos@inchoo.net>
7
- */
8
- class BeezUp_Block_Adminhtml_Sales_Order_Grid extends Mage_Adminhtml_Block_Widget_Grid
9
  {
10
-
11
  public function __construct()
12
  {
13
-
14
- parent::__construct();
15
-
16
- $this->setId('sales_order_grid');
17
- $this->setUseAjax(true);
18
- $this->setDefaultSort('created_at');
19
- $this->setDefaultSort('entity_id');
20
  $this->setDefaultDir('DESC');
21
  $this->setSaveParametersInSession(true);
22
-
23
- if ($this->getRequest()->getParam('prepared') === 'beezup') {
24
- $this->setDefaultFilter( array(
25
  'beezup_order' => '1'
26
  ) );
27
- }
28
- }
29
-
30
- /**
31
- * Modify column filter if needed by custom implementation of IN() and NOT IN() MySQL statement + prepared filter functionality
32
- *
33
- */
34
- protected function _addColumnFilterToCollection($column)
35
- {
36
- $filterArr = Mage::registry('preparedFilter');
37
-
38
- if (($column->getId() === 'store_id' || $column->getId() === 'status') && $column->getFilter()->getValue() && strpos($column->getFilter()->getValue(), ',')) {
39
-
40
- $_inNin = explode(',', $column->getFilter()->getValue());
41
- $inNin = array();
42
-
43
- foreach ($_inNin as $k => $v) {
44
- if (is_string($v) && strlen(trim($v))) {
45
- $inNin[] = trim($v);
46
- }
47
- }
48
-
49
- if (count($inNin)>1 && in_array($inNin[0], array('in', 'nin'))) {
50
- $in = $inNin[0];
51
- $values = array_slice($inNin, 1);
52
- $this->getCollection()->addFieldToFilter($column->getId(), array($in => $values));
53
- } else {
54
- parent::_addColumnFilterToCollection($column);
55
-
56
- }
57
- } elseif (is_array($filterArr) && array_key_exists($column->getId(), $filterArr) && isset($filterArr[$column->getId()])) {
58
- $this->getCollection()->addFieldToFilter($column->getId(), $filterArr[$column->getId()]);
59
-
60
- } else {
61
- parent::_addColumnFilterToCollection($column);
62
-
63
- }
64
- // Zend_Debug::dump((string)$this->getCollection()->getSelect(), 'Prepared filter:');
65
- return $this;
66
- }
67
- /**
68
- * Retrieve collection class
69
- *
70
- * @return string
71
- */
72
- protected function _getCollectionClass()
73
- {
74
- return 'sales/order_grid_collection';
75
  }
76
 
77
  protected function _prepareCollection()
78
  {
79
- $collection = Mage::getResourceModel($this->_getCollectionClass());
80
  $this->setCollection($collection);
81
  return parent::_prepareCollection();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
82
  }
83
 
84
  protected function _prepareColumns()
85
  {
86
- $this->addColumn('real_order_id', array(
87
- 'header'=> Mage::helper('sales')->__('Order #'),
88
- 'width' => '80px',
89
- 'type' => 'text',
90
- 'index' => 'increment_id',
 
91
  ));
92
- if (!Mage::app()->isSingleStoreMode()) {
93
- $this->addColumn('store_id', array(
94
- 'header' => Mage::helper('sales')->__('Purchased From (Store)'),
95
- 'index' => 'store_id',
96
- // 'type' => 'store',
97
- // 'store_view'=> true,
98
- // 'display_deleted' => true,
99
- ));
100
- }
101
- $this->addColumn('created_at', array(
102
- 'header' => Mage::helper('sales')->__('Purchased On'),
103
- 'index' => 'created_at',
104
- 'type' => 'datetime',
105
- 'width' => '100px',
106
  ));
 
107
  $this->addColumn('billing_name', array(
108
  'header' => Mage::helper('sales')->__('Bill to Name'),
109
  'index' => 'billing_name',
@@ -112,9 +74,7 @@ class BeezUp_Block_Adminhtml_Sales_Order_Grid extends Mage_Adminhtml_Block_Widge
112
  'header' => Mage::helper('sales')->__('Ship to Name'),
113
  'index' => 'shipping_name',
114
  ));
115
-
116
- if ($this->getRequest()->getParam('prepared') === 'beezup') {
117
- $this->addColumn('beezup_marketplace', array(
118
  'header' =>Mage::helper('beezup')->__('Marketplace'),
119
  'index' => 'beezup_marketplace',
120
  ));
@@ -132,27 +92,24 @@ class BeezUp_Block_Adminhtml_Sales_Order_Grid extends Mage_Adminhtml_Block_Widge
132
  'index' => 'beezup_market_order_id',
133
  ));
134
 
135
- }
136
- $this->addColumn('base_grand_total', array(
137
- 'header' => Mage::helper('sales')->__('G.T. (Base)'),
138
- 'index' => 'base_grand_total',
139
- 'type' => 'currency',
140
- 'currency' => 'base_currency_code',
141
- ));
142
  $this->addColumn('grand_total', array(
143
- 'header' => Mage::helper('sales')->__('G.T. (Purchased)'),
144
- 'index' => 'grand_total',
145
- 'type' => 'currency',
146
- 'currency' => 'order_currency_code',
147
  ));
148
- $this->addColumn('status', array(
149
- 'header' => Mage::helper('sales')->__('Status'),
150
- 'index' => 'status',
151
- 'type' => 'options',
152
- 'width' => '100px',
 
153
  'options' => Mage::getSingleton('sales/order_config')->getStatuses(),
154
  ));
155
- if (Mage::getSingleton('admin/session')->isAllowed('sales/order/actions/view')) {
 
156
  $this->addColumn('action',
157
  array(
158
  'header' => Mage::helper('sales')->__('Action'),
@@ -172,60 +129,11 @@ class BeezUp_Block_Adminhtml_Sales_Order_Grid extends Mage_Adminhtml_Block_Widge
172
  'is_system' => true,
173
  ));
174
  }
175
- $this->addRssList('rss/order/new', Mage::helper('sales')->__('New Order RSS'));
176
- $this->addExportType('*/*/exportCsv', Mage::helper('sales')->__('CSV'));
177
- $this->addExportType('*/*/exportExcel', Mage::helper('sales')->__('Excel XML'));
178
- return parent::_prepareColumns();
179
- }
180
 
181
- protected function _prepareMassaction()
182
- {
183
- $this->setMassactionIdField('entity_id');
184
- $this->getMassactionBlock()->setFormFieldName('order_ids');
185
- $this->getMassactionBlock()->setUseSelectAll(false);
186
- if (Mage::getSingleton('admin/session')->isAllowed('sales/order/actions/cancel')) {
187
- $this->getMassactionBlock()->addItem('cancel_order', array(
188
- 'label'=> Mage::helper('sales')->__('Cancel'),
189
- 'url' => $this->getUrl('*/sales_order/massCancel'),
190
- ));
191
- }
192
- if (Mage::getSingleton('admin/session')->isAllowed('sales/order/actions/hold')) {
193
- $this->getMassactionBlock()->addItem('hold_order', array(
194
- 'label'=> Mage::helper('sales')->__('Hold'),
195
- 'url' => $this->getUrl('*/sales_order/massHold'),
196
- ));
197
- }
198
- if (Mage::getSingleton('admin/session')->isAllowed('sales/order/actions/unhold')) {
199
- $this->getMassactionBlock()->addItem('unhold_order', array(
200
- 'label'=> Mage::helper('sales')->__('Unhold'),
201
- 'url' => $this->getUrl('*/sales_order/massUnhold'),
202
- ));
203
- }
204
- $this->getMassactionBlock()->addItem('pdfinvoices_order', array(
205
- 'label'=> Mage::helper('sales')->__('Print Invoices'),
206
- 'url' => $this->getUrl('*/sales_order/pdfinvoices'),
207
- ));
208
- $this->getMassactionBlock()->addItem('pdfshipments_order', array(
209
- 'label'=> Mage::helper('sales')->__('Print Packingslips'),
210
- 'url' => $this->getUrl('*/sales_order/pdfshipments'),
211
- ));
212
- $this->getMassactionBlock()->addItem('pdfcreditmemos_order', array(
213
- 'label'=> Mage::helper('sales')->__('Print Credit Memos'),
214
- 'url' => $this->getUrl('*/sales_order/pdfcreditmemos'),
215
- ));
216
- $this->getMassactionBlock()->addItem('pdfdocs_order', array(
217
- 'label'=> Mage::helper('sales')->__('Print All'),
218
- 'url' => $this->getUrl('*/sales_order/pdfdocs'),
219
- ));
220
- return $this;
221
- }
222
 
223
- public function getRowUrl($row)
224
- {
225
- if (Mage::getSingleton('admin/session')->isAllowed('sales/order/actions/view')) {
226
- return $this->getUrl('*/sales_order/view', array('order_id' => $row->getId()));
227
- }
228
- return false;
229
  }
230
 
231
  public function getGridUrl()
1
+ <?php
2
 
3
+ class BeezUp_Block_Adminhtml_Sales_Order_Grid extends Mage_Adminhtml_Block_Widget_Grid
 
 
 
 
 
4
  {
5
+
6
  public function __construct()
7
  {
8
+ parent::__construct();
9
+ $this->setId('beezup_order_grid');
10
+ $this->setDefaultSort('increment_id');
 
 
 
 
11
  $this->setDefaultDir('DESC');
12
  $this->setSaveParametersInSession(true);
13
+ $this->setDefaultFilter( array(
 
 
14
  'beezup_order' => '1'
15
  ) );
16
+ $this->setUseAjax(true);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
17
  }
18
 
19
  protected function _prepareCollection()
20
  {
21
+ $collection = Mage::getResourceModel("sales/order_grid_collection");
22
  $this->setCollection($collection);
23
  return parent::_prepareCollection();
24
+
25
+ /*
26
+ $collection = Mage::getResourceModel('sales/order_collection')
27
+ ->join(array('a' => 'sales/order_address'), 'main_table.entity_id = a.parent_id AND a.address_type != \'billing\'', array(
28
+ 'city' => 'city',
29
+ 'country_id' => 'country_id'
30
+ ))
31
+ ->join(array('c' => 'customer/customer_group'), 'main_table.customer_group_id = c.customer_group_id', array(
32
+ 'customer_group_code' => 'customer_group_code'
33
+ ))
34
+ ->addExpressionFieldToSelect(
35
+ 'fullname',
36
+ 'CONCAT({{customer_firstname}}, \' \', {{customer_lastname}})',
37
+ array('customer_firstname' => 'main_table.customer_firstname', 'customer_lastname' => 'main_table.customer_lastname'))
38
+ ->addExpressionFieldToSelect(
39
+ 'products',
40
+ '(SELECT GROUP_CONCAT(\' \', x.name)
41
+ FROM sales_flat_order_item x
42
+ WHERE {{entity_id}} = x.order_id
43
+ AND x.product_type != \'configurable\')',
44
+ array('entity_id' => 'main_table.entity_id')
45
+ )
46
+ ;
47
+
48
+ $this->setCollection($collection);
49
+ parent::_prepareCollection();
50
+ return $this;*/
51
  }
52
 
53
  protected function _prepareColumns()
54
  {
55
+ $helper = Mage::helper('beezup');
56
+ $currency = (string) Mage::getStoreConfig(Mage_Directory_Model_Currency::XML_PATH_CURRENCY_BASE);
57
+
58
+ $this->addColumn('increment_id', array(
59
+ 'header' => $helper->__('Order #'),
60
+ 'index' => 'increment_id'
61
  ));
62
+
63
+ $this->addColumn('purchased_on', array(
64
+ 'header' => $helper->__('Purchased On'),
65
+ 'type' => 'datetime',
66
+ 'index' => 'created_at'
 
 
 
 
 
 
 
 
 
67
  ));
68
+
69
  $this->addColumn('billing_name', array(
70
  'header' => Mage::helper('sales')->__('Bill to Name'),
71
  'index' => 'billing_name',
74
  'header' => Mage::helper('sales')->__('Ship to Name'),
75
  'index' => 'shipping_name',
76
  ));
77
+ $this->addColumn('beezup_marketplace', array(
 
 
78
  'header' =>Mage::helper('beezup')->__('Marketplace'),
79
  'index' => 'beezup_marketplace',
80
  ));
92
  'index' => 'beezup_market_order_id',
93
  ));
94
 
95
+
96
+
 
 
 
 
 
97
  $this->addColumn('grand_total', array(
98
+ 'header' => $helper->__('Grand Total'),
99
+ 'index' => 'grand_total',
100
+ 'type' => 'currency',
101
+ 'currency_code' => $currency
102
  ));
103
+
104
+
105
+ $this->addColumn('order_status', array(
106
+ 'header' => $helper->__('Status'),
107
+ 'index' => 'status',
108
+ 'type' => 'options',
109
  'options' => Mage::getSingleton('sales/order_config')->getStatuses(),
110
  ));
111
+
112
+ if (Mage::getSingleton('admin/session')->isAllowed('sales/order/actions/view')) {
113
  $this->addColumn('action',
114
  array(
115
  'header' => Mage::helper('sales')->__('Action'),
129
  'is_system' => true,
130
  ));
131
  }
 
 
 
 
 
132
 
133
+ $this->addExportType('*/*/exportInchooCsv', $helper->__('CSV'));
134
+ $this->addExportType('*/*/exportInchooExcel', $helper->__('Excel XML'));
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
135
 
136
+ return parent::_prepareColumns();
 
 
 
 
 
137
  }
138
 
139
  public function getGridUrl()
app/code/community/BeezUp/Block/Adminhtml/Sales/Order/View/Tab/Custom.php CHANGED
@@ -1,6 +1,7 @@
1
  <?php
2
- ///app/design/adminhtml/default/default/layout/ beezup_salestab.xml
3
- //app\design\adminhtml\default\default\template/beezup/custom.phtml
 
4
  class BeezUp_Block_Adminhtml_Sales_Order_View_Tab_Custom
5
  extends Mage_Adminhtml_Block_Template
6
  implements Mage_Adminhtml_Block_Widget_Tab_Interface
@@ -33,4 +34,66 @@ class BeezUp_Block_Adminhtml_Sales_Order_View_Tab_Custom
33
  return Mage::registry('current_order');
34
  }
35
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
36
  }
1
  <?php
2
+
3
+ require_once dirname ( __FILE__ ) . "/../../../../../../lib/BeezupOMStatus.php";
4
+
5
  class BeezUp_Block_Adminhtml_Sales_Order_View_Tab_Custom
6
  extends Mage_Adminhtml_Block_Template
7
  implements Mage_Adminhtml_Block_Widget_Tab_Interface
34
  return Mage::registry('current_order');
35
  }
36
 
37
+ public function getBeezupInfo($id_order) {
38
+ $omStatus = new BeezupOmStatus();
39
+ $data = $omStatus->getInfo($id_order);
40
+
41
+ return $data;
42
+ }
43
+
44
+ public function generateInput($values) {
45
+ $retorno = "<table class='table' style='width:100%'>";
46
+ foreach($values as $data) {
47
+
48
+ $required = false;
49
+ $txtLabel = "";
50
+ $inputReq = "";
51
+ if($data->isMandatory==1) {
52
+ $required = true;
53
+ $txtLabel = " <span style='color:red;'>*</span>";
54
+ $inputReq = "required";
55
+ }
56
+ $action_name = $data->name;
57
+ $label = str_replace("Order_Shipping_", "", $data->name);
58
+ $label = preg_replace('/(?<!\ )[A-Z]/', ' $0', $label);
59
+ $label = str_replace("_", " ", $label);
60
+ // $label = implode(" ", $label);
61
+ $retorno .= "<tr><td style='text-align:right;'><label>".$label." ".$txtLabel."</label></td>";
62
+
63
+ if($data->islovRequired ==1) {
64
+ $retorno .= '<td><select '.$inputReq.' onclick="updateOrder(this.value)" name='.$data->name.' >';
65
+ foreach($data->$action_name->values as $value) {
66
+ $texto = $value->TranslationText;
67
+ if(empty($texto) || trim($texto) == "") {
68
+ $texto = ucfirst(str_replace("_", " ", $value->CodeIdentifier));
69
+ }
70
+ $retorno .= '<option value="'.$value->CodeIdentifier.'" >'.$texto.'</option>';
71
+ }
72
+ $retorno .= '</select></td></tr>';
73
+
74
+ } elseif($data->cSharpType == "System.DateTime") {
75
+ $retorno .= '<td><input type="text" style="width:169px;" id="'.$data->name."_".$action_name.'" name="'.$data->name.'" />
76
+ <script>// <![CDATA[
77
+ Calendar.setup({
78
+ inputField : \''.$data->name."_".$action_name.'\',
79
+ ifFormat : \'%m/%e/%y\',
80
+ button : \'date_from_trig\',
81
+ align : \'Bl\',
82
+ singleClick : true
83
+ });
84
+ // ]]
85
+ </script>
86
+ </td></tr>';
87
+ } else {
88
+ $retorno .= '<td><input type="text" name="'.$data->name.'" /></td></tr>';
89
+ }
90
+
91
+ }
92
+ $retorno .= "</table>";
93
+ return $retorno;
94
+
95
+ }
96
+
97
+
98
+
99
  }
app/code/community/BeezUp/Block/Omstatus.php ADDED
@@ -0,0 +1,700 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ require_once dirname ( __FILE__ ) . "/../lib/KLogger.php";
3
+ require_once dirname ( __FILE__ ) . "/../lib/bootstrap.php";
4
+ require_once dirname ( __FILE__ ) . "/../lib/BeezupRepository.php";
5
+ require_once dirname ( __FILE__ ) . "/../lib/BeezupMageOrders.php";
6
+
7
+ class Beezup_Block_Omstatus extends Mage_core_block_text {
8
+ protected $repository = null;
9
+ protected $oOrderService;
10
+ public $log = null;
11
+ public $log2 = null;
12
+ public $orderid = "";
13
+ public $debug = false;
14
+ private $account_id;
15
+ private $marketplace_code;
16
+ private $beezup_order_id;
17
+
18
+
19
+ public function getLoader() {
20
+ $dir = Mage::getModuleDir("etc", "BeezUp");
21
+ $dir = str_replace("etc", "img", $dir);
22
+ header('Content-Type: image/jpeg');
23
+ readfile($dir."/ajax-loader.gif");
24
+
25
+ }
26
+
27
+
28
+ public function getBeezupBuyerAddress($order) {
29
+ $add1=$order->getOrderBuyerAddressLine1();
30
+ $add2=$order->getOrderBuyerAddressLine2();
31
+ $add3=$order->getOrderBuyerAddressLine3();
32
+ $retorno = "";
33
+ if(!empty($add1)) {
34
+ $retorno = $order->getOrderBuyerAddressLine1();
35
+ }
36
+ if(!empty($add2)) {
37
+ if(empty($add1)) {
38
+ $retorno .= $order->getOrderBuyerAddressLine2();
39
+ } else {
40
+ $retorno .= " - ". $order->getOrderBuyerAddressLine2();
41
+ }
42
+ }
43
+ if(!empty($add3)){
44
+ if(empty($add1) && empty($add2)) {
45
+ $retorno .= $order->getOrderBuyerAddressLine3();
46
+ } else {
47
+ $retorno .= " - ". $order->getOrderBuyerAddressLine3();
48
+ }
49
+ }
50
+ return $retorno;
51
+ }
52
+
53
+
54
+ public function getBeezupShippingAddress($order) {
55
+ $add1 = $order->getOrderShippingAddressLine1();
56
+ $add2 = $order->getOrderShippingAddressLine2();
57
+ $add3=$order->getOrderBuyerAddressLine3();
58
+ $retorno = "";
59
+ if(!empty($add1 )) {
60
+ $retorno = $order->getOrderShippingAddressLine1();
61
+ }
62
+ if(!empty($add2)) {
63
+ if(empty($add1)) {
64
+ $retorno .= $order->getOrderShippingAddressLine2();
65
+ } else {
66
+ $retorno .= " - ". $order->getOrderShippingAddressLine2();
67
+ }
68
+ }
69
+ if(!empty($add3)){
70
+ if(empty($add1) && empty($add2)) {
71
+ $retorno .= $order->getOrderShippingAddressLine3();
72
+ } else {
73
+ $retorno .= " - ". $order->getOrderShippingAddressLine3();
74
+ }
75
+ }
76
+ return $retorno;
77
+ }
78
+
79
+
80
+ public function checkEtagExists($etag) {
81
+ $resource = Mage::getSingleton('core/resource');
82
+ $readConnection = $resource->getConnection('core_read');
83
+ $table = $resource->getTableName('sales/order_grid');
84
+ $query = 'SELECT increment_id FROM ' . $table . ' WHERE beezup_etag = \''
85
+ . $etag . '\' LIMIT 1';
86
+ $order = $readConnection->fetchOne($query);
87
+ if($order && !empty($order)) {
88
+ return true;
89
+ }
90
+ return false;
91
+
92
+ }
93
+
94
+ public function loadMageOrder() {
95
+ $Mageorder = Mage::getModel('sales/order')->load($this->orderid);
96
+ if ($Mageorder->getId()) {
97
+ return $Mageorder;
98
+ } else {
99
+ //we get order from marketplace orderid
100
+ $orderInc = $this->checkMarketOrderExists($this->orderid);
101
+ if($orderInc) {
102
+ // if exists
103
+ $Mageorder = Mage::getModel('sales/order')->loadByIncrementId($orderInc);
104
+ if ($Mageorder->getId()) {
105
+ return $Mageorder;
106
+ }
107
+ }
108
+ }
109
+
110
+
111
+ return false;
112
+ }
113
+
114
+
115
+ public function checkMarketOrderExists($orderid) {
116
+ $resource = Mage::getSingleton('core/resource');
117
+ $readConnection = $resource->getConnection('core_read');
118
+ $table = $resource->getTableName('sales/order_grid');
119
+ $query = 'SELECT increment_id FROM ' . $table . ' WHERE beezup_order = 1 and beezup_market_order_id = \''
120
+ . $orderid . '\' LIMIT 1';
121
+ $order = $readConnection->fetchOne($query);
122
+
123
+ if($order && !empty($order) && $this->orderId !== "") {
124
+ return $order;
125
+ }
126
+ return false;
127
+
128
+ }
129
+
130
+ public function resynOrder($orderId) {
131
+
132
+ $this->orderid = $orderId;
133
+ $oBeezupOrderResponse= $this->getBeezupOrderFromMage();
134
+
135
+ $etag = $oBeezupOrderResponse->getETag();
136
+
137
+ $final_order = $oBeezupOrderResponse->getResult();
138
+ $order_status = $final_order->getOrderStatusBeezUPOrderStatus();
139
+ $isPending = $final_order->getIsPendingSynchronization();
140
+ $order_address = $this->getBeezupBuyerAddress($final_order);
141
+ $order_city = $final_order->getOrderBuyerAddressCity();
142
+ $order_region = $final_order->getOrderBuyerStateOrRegion();
143
+ $order_postalCode = $final_order->getOrderBuyerAddressPostalCode();
144
+ $order_customer = $final_order->getOrderBuyerName();
145
+ $order_customer_email = $final_order->getOrderBuyerEmail();
146
+ $order_customer_phone = $final_order->getOrderBuyerPhone();
147
+ $order_customer_mobile = $final_order->getOrderBuyerMobilePhone();
148
+ $order_country = $final_order->getOrderBuyerAddressCountryName();
149
+ $order_country_iso = $final_order->getOrderBuyerAddressCountryIsoCodeAlpha2();
150
+
151
+ $shipping_city = $final_order->getOrderShippingAddressCity();
152
+ $shipping_country = $final_order->getOrderShippingAddressCountryName();
153
+ $shipping_name = $final_order->getOrderShippingAddressName();
154
+ $shipping_postalCode = $final_order->getOrderShippingAddressPostalCode();
155
+ $shipping_email = $final_order->getOrderShippingEmail();
156
+ $shipping_phone = $final_order->getOrderShippingPhone();
157
+ $shipping_mobile = $final_order->getOrderShippingMobilePhone();
158
+ $shipping_company = $final_order->getOrderShippingCompanyName();
159
+ $shipping_region = $final_order->getOrderShippingAddressStateOrRegion();
160
+ $order_currency_code = $final_order->getOrderCurrencyCode();
161
+ //order Info
162
+ $order_totalPrice = $final_order->getOrderTotalPrice();
163
+ $order_shippingPrice = $final_order->getOrderShippingPrice();
164
+ $shipping_address = $this->getBeezupShippingAddress($final_order);
165
+
166
+ $name_parts = explode(" ", $order_customer);
167
+ $order_first_name = array_shift( $name_parts);
168
+ $order_last_name = implode(" ", $name_parts);
169
+
170
+
171
+ $name_parts = explode(" ", $shipping_name);
172
+ $shipping_first_name = array_shift( $name_parts);
173
+ $shipping_last_name = implode(" ", $name_parts);
174
+
175
+ $etag_exists = $this->checkEtagExists($etag);
176
+
177
+ if(!$isPending && !$etag_exists ) {
178
+ $order_data = array(
179
+ "etag" => $etag,
180
+ "order_status" => $order_status,
181
+ "order_address" => $order_adress,
182
+ "order_country" => $order_country,
183
+ "order_country_iso" => $order_country_iso ,
184
+ "order_address" => $order_address ,
185
+ "order_postalCode" => $order_postalCode ,
186
+ "order_customer" => $order_first_name ,
187
+ "order_lastname" => $order_last_name ,
188
+ "order_customer_email" => $order_customer_email ,
189
+ "order_customer_phone" => $this->getPhone($order_customer_phone, $order_customer_mobile) ,
190
+ "shipping_city" => $shipping_city ,
191
+ "shipping_country" => $shipping_country ,
192
+ "shipping_country_iso" => $shipping_country_iso ,
193
+ "shipping_address" => $shipping_address ,
194
+ "shipping_name" => $shipping_first_name ,
195
+ "shipping_lastname" => $shipping_last_name ,
196
+ "shipping_postalCode" => $shipping_postalCode ,
197
+ "shipping_region" =>$shipping_region,
198
+ "shipping_email" => $shipping_email ,
199
+ "shipping_phone" => $this->getPhone($shipping_phone, $shipping_mobile) ,
200
+ "shipping_company" => $shipping_company ,
201
+ "order_totalPrice" => $order_totalPrice ,
202
+ "order_shippingPrice" => $order_shippingPrice ,
203
+ "order_city" => $order_city,
204
+ "order_region" => $order_region,
205
+ );
206
+
207
+
208
+ $Mageorder = $this->loadMageOrder();
209
+ if ($Mageorder) {
210
+ //if order exists
211
+ $this->updateEtag($etag);
212
+ $this->updateBilling($Mageorder, $order_data );
213
+ $this->updateBeezupInfoTab($Mageorder, $final_order, $order_data);
214
+ $status1 = $Mageorder->getStatusLabel();
215
+ $status = $this->getStatus($status1);
216
+ if($status !== $order_status) {
217
+ //if order exits and status has changed we update order status
218
+ $this->setStatus( $order_status, $Mageorder);
219
+ }
220
+
221
+ $id_order = $Mageorder->getId();
222
+ $BeezupMageOrder = new BeezupMageOrders($id_order);
223
+ $BeezupMageOrder->setData(array("shipping" =>(float) $order_data['order_shippingPrice']));
224
+ $BeezupMageOrder->updateShippingInfo();
225
+
226
+ echo 1;
227
+ } else {
228
+
229
+ echo 2;
230
+ }
231
+
232
+
233
+ }
234
+ else {
235
+ if($isPending) {
236
+ echo 3;
237
+ } else {
238
+ echo 2;
239
+
240
+ }
241
+ }
242
+
243
+ }
244
+
245
+
246
+
247
+ public function getStatus($status1) {
248
+ $helper = Mage::helper('beezup');
249
+ $retorno = "";
250
+ $status = strtolower($status1);
251
+
252
+ if($status == strtolower($helper->getConfig('beezup/marketplace/status_new') )) {
253
+ $retorno = "New";
254
+
255
+ } elseif($status == strtolower($helper->getConfig('beezup/marketplace/status_progress') ) ){
256
+ $retorno = "InProgress";
257
+
258
+
259
+ }
260
+ elseif($status == strtolower($helper->getConfig('beezup/marketplace/status_aborted') )) {
261
+
262
+ $retorno = "Aborted" ;
263
+ }
264
+ elseif($status == strtolower($helper->getConfig('beezup/marketplace/status_closed') )) {
265
+ $retorno = "Closed";
266
+
267
+ }
268
+ elseif($status == strtolower($helper->getConfig('beezup/marketplace/status_cancelled')) ) {
269
+
270
+ $retorno = "Canceled";
271
+ }
272
+ elseif($status == strtolower($helper->getConfig('beezup/marketplace/status_shipped') )) {
273
+
274
+ $retorno = "Shipped";
275
+ }
276
+
277
+
278
+ return $retorno;
279
+
280
+ }
281
+
282
+ public function setStatus($status, $order) {
283
+ $helper = Mage::helper('beezup');
284
+ $retorno = "";
285
+ $blnCancel = false;
286
+ $blnHold = false;
287
+ switch($status) {
288
+ case "New" :
289
+ $retorno = $helper->getConfig('beezup/marketplace/status_new');
290
+ break;
291
+ case "InProgress" :
292
+ $retorno = $helper->getConfig('beezup/marketplace/status_progress');
293
+ $this->payOrder($order);
294
+ break;
295
+ case "Aborted" :
296
+ $retorno = $helper->getConfig('beezup/marketplace/status_aborted');
297
+ $blnHold = true;
298
+
299
+
300
+ break;
301
+ case "Closed" :
302
+ $blnCancel =true;
303
+ $retorno = $helper->getConfig('beezup/marketplace/status_closed');
304
+ $this->payOrder($order);
305
+ break;
306
+ case "Canceled" :
307
+ $retorno = $helper->getConfig('beezup/marketplace/status_cancelled');
308
+
309
+ break;
310
+ case "Shipped" :
311
+ $retorno = $helper->getConfig('beezup/marketplace/status_shipped');
312
+ $this->payOrder($order);
313
+ break;
314
+
315
+ }
316
+ $order->setData('state',$retorno);
317
+ $order->setStatus($retorno);
318
+ $history = $order->addStatusHistoryComment('Order was set to '.$retorno.' by Beezup.', false);
319
+ $history->setIsCustomerNotified(false);
320
+ $order->save();
321
+ if($blnCancel) {
322
+ $order->cancel()->save();
323
+ }
324
+ if($blnHold) {
325
+ $order->hold()->save();
326
+ }
327
+
328
+ return $retorno;
329
+
330
+ }
331
+ public function getPhone($phone, $phone2) {
332
+ $retorno = "";
333
+ if(!empty($phone) && $phone !== "") {
334
+ $retorno .= $phone;
335
+ }
336
+ if(!empty($phone2) && $phone2 !=="") {
337
+ if(empty($phone) || $phone == "") {
338
+ $retorno = $phone2;
339
+
340
+ } else {
341
+ $retorno .= " - ".$phone2;
342
+ }
343
+ }
344
+ return $retorno;
345
+ }
346
+
347
+ public function payOrder($order) {
348
+ try {
349
+
350
+ if($order->canInvoice()) {
351
+ $invoice = $order->prepareInvoice()
352
+ ->setTransactionId($order->getId())
353
+ ->addComment("Invoice created from Beezup.")
354
+ ->register()
355
+ ->pay();
356
+ $transaction_save = Mage::getModel('core/resource_transaction')
357
+ ->addObject($invoice)
358
+ ->addObject($invoice->getOrder());
359
+ $transaction_save->save();
360
+
361
+ }
362
+ }
363
+ catch(Exception $e){
364
+
365
+ }
366
+ }
367
+
368
+
369
+ public function updateBeezupInfoTab($order, $oLink, $data) {
370
+ $beezup_last_modification_date = $oLink->getOrderLastModificationUtcDate();
371
+ $beezup_last_modification_date = $beezup_last_modification_date->date;
372
+ $beezup_marketplace_last_modification_date = $oLink->getOrderMarketPlaceLastModificationUtcDate();
373
+ $beezup_marketplace_last_modification_date = $beezup_marketplace_last_modification_date->date;
374
+ $beezup_comission = $oLink->getOrderTotalCommission()." ".$data['order_currency'];
375
+ $tot_comm = $oLink->getOrderTotalCommission();
376
+ if(empty($tot_comm ) || $tot_comm == 0) {
377
+ $beezup_comission = 0;
378
+ }
379
+ $updateData = array("beezup_status" => $data['order_status'],
380
+ "beezup_last_modification_date" => $beezup_last_modification_date,
381
+ "beezup_marketplace_last_modification_date" => $beezup_marketplace_last_modification_date ,
382
+ "beezup_total_paid" => $oLink->getOrderTotalPrice()." ".$data['order_currency'],
383
+ "beezup_comission" => $beezup_comission,
384
+ "beezup_marketplace_status" => $oLink->getOrderStatusMarketPlaceStatus());
385
+ $orderId = $order->getId();
386
+ $beezupMageOrder = new BeezupMageOrders($orderId);
387
+ $beezupMageOrder->setData($updateData);
388
+ $beezupMageOrder->updateBeezupInfo();
389
+
390
+
391
+ }
392
+
393
+
394
+
395
+ public function updateBilling($order, $data) {
396
+
397
+
398
+ $addressData = array(
399
+ 'billing_firstname' => ($data['order_customer']) ? $data['order_customer'] : "empty",
400
+ 'billing_lastname' => ($data['order_lastname']) ? $data['order_lastname'] : "empty",
401
+ 'billing_street' => ($data['order_address']) ? $data['order_address'] : "empty",
402
+ 'billing_city' => ($data['order_city']) ? $data['order_city'] : "empty",
403
+ 'billing_postcode' => ($data['order_postalCode']) ? $data['order_postalCode'] : "empty",
404
+ 'billing_telephone' => ($data['order_customer_phone']) ? $data['order_customer_phone'] : "empty",
405
+ 'billing_country_id' => ($data['order_country_iso']) ? $data['order_country_iso'] : "empty",
406
+ 'billing_region_id' => ($data['order_region ']) ? substr($data['order_region '], 0,2) : "EM",
407
+ 'shipping_firstname' => ($data['shipping_name']) ? $data['shipping_name'] : "empty",
408
+ 'shipping_lastname' => ($data['shipping_lastname']) ? $data['shipping_lastname'] : "empty",
409
+ 'shipping_street' => ($data['shipping_address']) ? $data['shipping_address'] : "empty",
410
+ 'shipping_city' => ($data['shipping_city']) ? $data['shipping_city'] : "empty",
411
+ 'shipping_postcode' => ($data['shipping_postalCode']) ? $data['shipping_postalCode'] : "empty",
412
+ 'shipping_telephone' => ($data['shipping_phone']) ? $data['shipping_phone'] : "empty",
413
+ 'shipping_country_id' => ($data['shipping_country_iso']) ? $data['shipping_country_iso'] : "empty",
414
+ 'shipping_region_id' => ($data['shipping_region']) ? substr($data['shipping_region'], 0, 2) : "EM" // id from directory_country_region table
415
+ );
416
+
417
+ $shippingData = array(
418
+
419
+ );
420
+ // Get the id of the orders shipping address
421
+ $orderId = $order->getId();
422
+ $beezupMageOrder = new BeezupMageOrders($orderId);
423
+ $beezupMageOrder->setData($addressData);
424
+ $beezupMageOrder->updateAdresses();
425
+ }
426
+
427
+
428
+
429
+
430
+ public function updateEtag($etag) {
431
+ $resource = Mage::getSingleton('core/resource');
432
+ $writeConnection = $resource->getConnection('core_write');
433
+ $table = $resource->getTableName('sales/order_grid');
434
+ $query = "UPDATE {$table} SET beezup_etag = '{$etag}' where entity_id = '{$this->orderid}' ";
435
+ $writeConnection->query($query);
436
+
437
+ }
438
+
439
+
440
+ public function changeOrder($aData) {
441
+
442
+ $errmsg = "";
443
+ $this->orderid = $aData['order_id'];
444
+ $aResult = array('errors' => array(), 'warnings' => array(), 'infos' => array(),'successes' => array());
445
+
446
+ if (!isset($aData['order_id']) || !is_numeric($aData['order_id'])){
447
+ $errmsg .= "ERROR: ".Mage::helper('beezup')->__('Invalid order id')."<br>";
448
+ echo $errmsg;
449
+ }
450
+
451
+ $oBeezupOrderResponse= $this->getBeezupOrderFromMage();
452
+ $oBeezupOrder = $oBeezupOrderResponse->getResult();
453
+
454
+ if (!$oBeezupOrder){
455
+ $errmsg .="ERROR: ". Mage::helper('beezup')->__('Unable load BeezUP order')."<br>";
456
+
457
+ echo $errmsg;
458
+ }
459
+
460
+ if (!isset($aData['action_id'])){
461
+ $errmsg .= "ERROR: ".Mage::helper('beezup')->__('No action id')."<br>";
462
+
463
+ echo $errmsg;
464
+ }
465
+
466
+ $oLink = $oBeezupOrder->getTransitionLinkByRel($aData['action_id']);
467
+
468
+ if (!$oLink){
469
+
470
+ $errmsg .= "ERROR: ".Mage::helper('beezup')->__('Invalid action')."<br>";
471
+ }
472
+ $aParams = array(
473
+ 'TestMode' => $this->isTestModeActivated() ? 1 : 0,
474
+ 'userName' => $aData['adminUser']
475
+ );
476
+
477
+ if ($oLink){
478
+
479
+
480
+ list($bResult, $oResult) = $this->getOrderService()->changeOrder($oLink, $aParams, $aData);
481
+
482
+ if ($bResult){
483
+ $errmsg .= "SUCCESS: ". Mage::helper('beezup')->__('Order update well executed and is currently resyncing')."<br>";
484
+ $aResult['aResult'] = true;
485
+ $oCachedOrder = $this->getBeezupOrderFromMage();
486
+
487
+ /**
488
+ * @var BeezupOMOrderResult
489
+ */
490
+ $oBeezupOrderResult = $oCachedOrder->getResult();
491
+
492
+ $oBeezupOrderResult->setIsPendingSynchronization(true);
493
+
494
+ } else {
495
+ // how to know what happened?
496
+
497
+
498
+ if ($oResult && $oResult->getInfo()){
499
+
500
+
501
+ foreach ($oResult->getInfo()->getErrors() as $oError){
502
+ // ie we have 404 because of bad query params, we don't need to display those 404
503
+ if ($oError->getMessage() === 'HTTP Error' && !empty($aResult['errors'])){
504
+ continue;
505
+ }
506
+ $errmsg .= "ERROR: ".$oError->getCode() .' : ' . $oError->getMessage()."<br>";
507
+ }
508
+ } else {
509
+ $errmsg .= "ERROR: ". Mage::helper('beezup')->__('Unable to update')."<br>";
510
+ }
511
+ }
512
+ }
513
+
514
+
515
+
516
+ echo $errmsg;
517
+
518
+
519
+ }
520
+
521
+ public function isTestModeActivated() {
522
+ return false;
523
+ }
524
+
525
+ //function to get beezup info list
526
+ public function getInfo($order_id) {
527
+ $this->orderid = $order_id;
528
+ try {
529
+ $order = $this->getBeezupOrderFromMage();
530
+ if ($order && $order->getResult()) {
531
+ $order_result = $order->getResult();
532
+ $beezup_infos = $order? $order->getInfo()->getInformations() : array();
533
+ $order_actions = $this->getOrderActions($order_result );
534
+ /*
535
+ echo "<pre>";
536
+ print_r($order_actions);
537
+
538
+ echo "</pre>";
539
+ */
540
+ echo "<label>Status</label><br>";
541
+ echo "<select id='status_value'>";
542
+ foreach($order_actions as $action) {
543
+
544
+ echo "<option value='".$action['id']."'>".$action['translated_name']."</option>";
545
+ echo "<input type='hidden' id='lovs_".$action['id']."' value='".$action['lovs']."' />";
546
+ }
547
+
548
+ echo "</select>";
549
+ echo "<button class='button' onclick='changeStatus();'>Change Status</button>";
550
+
551
+ echo ' <div id="closed"></div>
552
+
553
+ <div class="popup-wrapper" id="popup">
554
+ <div class="popup-container"><!-- Popup Contents, just modify with your own -->
555
+
556
+ <h2>Update Order Status</h2>
557
+ <hr>
558
+ <div class="input-group"><div id="contenido-form"></div>';
559
+
560
+
561
+ echo '<br><button class="button">Update</button>
562
+ </div>
563
+
564
+ <a class="popup-close" href="#closed">X</a>
565
+ </div>
566
+ </div>
567
+ ';
568
+
569
+
570
+ }
571
+ } catch (Exception $ex ) {
572
+ die($ex->getMessage());
573
+ }
574
+
575
+
576
+ }
577
+
578
+
579
+
580
+
581
+
582
+ public function updateOrder($order_id) {
583
+ $this->orderid = $order_id;
584
+
585
+ }
586
+
587
+
588
+ public function getBeezupOrderFromMage() {
589
+ $order = $this->getMageOrder();
590
+ if($order) {
591
+ $oOrderIdentifier = $this->getBeezupOrderId();
592
+ $oBeezupOMOrderResponse = $this->getOrderService()->getOrder($oOrderIdentifier);
593
+ if ($oBeezupOMOrderResponse && $oBeezupOMOrderResponse->getResult()){
594
+ return $oBeezupOMOrderResponse;
595
+ }
596
+
597
+ }
598
+ return false;
599
+ }
600
+
601
+
602
+ public function getMageOrder() {
603
+ $resource = Mage::getSingleton('core/resource');
604
+ $readConnection = $resource->getConnection('core_read');
605
+ $table = $resource->getTableName('sales/order_grid');
606
+ $query = 'SELECT * FROM ' . $table . ' WHERE entity_id = \''
607
+ . $this->orderid . '\' ';
608
+ $order = $readConnection->fetchAll($query);
609
+ if(!empty($order)) {
610
+ $order = $order[0];
611
+ $this->account_id= $order['beezup_name'];
612
+ $this->marketplace_code = $order['beezup_marketplace'];
613
+ $this->beezup_order_id = $order['beezup_order_id'];
614
+ return $order;
615
+ }
616
+ return false;
617
+ }
618
+
619
+
620
+ public function getBeezupOrderId(){
621
+ $oIdentifier = new BeezupOMOrderIdentifier();
622
+ $oIdentifier
623
+ ->setAccountId($this->account_id)
624
+ ->setMarketplaceTechnicalCode($this->marketplace_code)
625
+ ->setBeezupOrderUUID($this->beezup_order_id);
626
+ return $oIdentifier;
627
+ }
628
+
629
+
630
+ /**
631
+ * @return BeezupOMOrderService
632
+ */
633
+ public function getOrderService(){
634
+ if ($this->oOrderService === null){
635
+ $this->oOrderService = $this->createOrderService();
636
+ // enchufamos debug mode, esta activado? false true $this->oOrderService->setDebugMode(false);
637
+ }
638
+ return $this->oOrderService;
639
+ }
640
+
641
+ /**
642
+ * @return BeezupOMOrderService
643
+ */
644
+ protected function createOrderService(){
645
+
646
+ return new BeezupOMOrderService($this->createRepository() );
647
+ }
648
+
649
+ protected function createRepository() {
650
+ if ($this->repository == null) {
651
+ $this->repository = new BeezupRepository();
652
+ }
653
+ return $this->repository;
654
+
655
+ }
656
+
657
+
658
+ /**
659
+ * Returns disponible order actions
660
+ * @param unknown_type $oBeezupOrder
661
+ * @param unknown_type $oPsOrder
662
+ * @return multitype:|multitype:multitype:string NULL unknown
663
+ */
664
+ public function getOrderActions($oBeezupOrder = null, $oPsOrder = null){
665
+ $aResult = array();
666
+ if (!$oBeezupOrder || !($oBeezupOrder instanceof BeezupOMOrderResult)) {
667
+ return $aResult;
668
+ }
669
+
670
+ // $aLovValues = $this->getOrderService()->getLovValues('OrderChangeBusinessOperationType', Context::getContext()->language->iso_code);
671
+
672
+ foreach ($oBeezupOrder->getTransitionLinks() as $oLink){
673
+
674
+ $aResult[] = array(
675
+ 'link' => $oLink,
676
+ 'href' => $oLink->getHref(),
677
+ 'id' => $oLink->getRel(),
678
+ 'name' => $oLink->getRel(),
679
+ 'translated_name' => $oLink->getRel(),
680
+ 'fields' => json_encode($oLink->toArray()),
681
+ 'lovs' => json_encode($this->getOrderService()->getLOVValuesForParams($oLink))
682
+ /*,
683
+ 'values' => json_encode($this->getFieldsValues($oLink, $oPsOrder)),
684
+ 'info' => json_encode($this->getTransitionLinkInfo($oLink))*/
685
+ );
686
+ /*
687
+ echo "<pre>";
688
+ print_r(json_decode($aResult[0]['lovs']));
689
+ echo "</pre>";
690
+
691
+ echo "<pre>";
692
+ print_r(json_decode($aResult[0]['fields']));
693
+ echo "</pre>";
694
+ */
695
+ }
696
+
697
+ return $aResult;
698
+ }
699
+
700
+ }
app/code/community/BeezUp/Block/Xml.php CHANGED
@@ -1,175 +1,201 @@
1
  <?php
2
- ini_set('memory_limit','1024M');
3
- class BeezUp_Block_Xml extends Mage_Core_Block_Text
4
- {
5
- /**
6
- Xml permet de r�cup�rer tous les produits simples
7
- **/
8
- public function getXml()
9
- {
10
- $base_url = Mage::getBaseUrl();
11
- /* Load Model and Helper */
12
- $beezup = Mage::getModel('beezup/products');
13
- $helper = Mage::helper('beezup');
14
-
15
- /* Initially load the useful elements */
16
- $many_images = $helper->getConfig('beezup/flux/images');
17
- $_ht = $helper->getConfig('beezup/flux/ht');
18
- $_description = $helper->getConfig('beezup/flux/description');
19
- $_tablerates = $helper->getConfig('beezup/flux/tablerates_weight_destination') ? $beezup->getTablerates() : 0;
20
- $_categories = $beezup->getCategoriesAsArray(Mage::helper('catalog/category')->getStoreCategories());
21
- $_attributes = $helper->getConfig('beezup/flux/attributes') ? explode(',', $helper->getConfig('beezup/flux/attributes')) : array();
22
- $_vat = ($_ht && is_numeric($helper->getConfig('beezup/flux/vat'))) ? (preg_replace('(\,+)', '.', $helper->getConfig('beezup/flux/vat')) / 100) + 1 : 1;
23
- $_catalog_rules = $helper->getConfig('beezup/flux/catalog_rules');
 
 
 
 
 
 
24
 
25
- /* Build file */
26
- $xml = $helper->getConfig('beezup/flux/bom') ? "\xEF\xBB\xBF" : '';
27
- $xml .= '<?xml version="1.0" encoding="utf-8"?>' . PHP_EOL . '<catalog>' . PHP_EOL;
 
 
 
 
 
 
 
 
 
 
 
 
28
 
29
- $products = $beezup->getProducts();
30
- if($many_images == 1) {
31
- $backendModel = $products->getResource()->getAttribute('media_gallery')->getBackend();
32
- }
33
- foreach ($products as $p) {
34
- $categories = $beezup->getProductsCategories($p, $_categories);
35
 
36
- if (count($categories)) {
37
- $qty = $beezup->getQty($p->getId());
38
- $stock = $beezup->getIsInStock($qty);
39
- $shipping = $beezup->getDelivery($qty);
40
- $price = $p->getPrice();
41
- $final_price = $p->getFinalPrice();
42
- if (($image = $p->getImage()) == "no_selection" || ($image = $p->getImage()) == "") // Si on ne trouve pas d'image avec getImage on r�cup�re la smallImage
43
  $image = $p->getSmallImage();
44
-
45
-
46
-
47
-
48
- $xml .= '<product>';
49
- $xml .= $helper->tag($this->__('b_unique_id'), $p->getId());
50
- $xml .= $helper->tag($this->__('b_sku'), trim($p->getSku()), 1);
51
- $xml .= $helper->tag($this->__('b_title'), trim($p->getName()), 1);
52
- $xml .= $helper->tag($this->__('b_description'), preg_replace("/(\r\n|\n|\r)/", ' ', strip_tags($p->getData($_description))), 1);
53
- $xml .= $helper->tag($this->__('b_product_url'), $p->getProductUrl(), 1);
54
-
55
-
56
-
57
- $xml .= $helper->tag($this->__('url_image'), $helper->getImageDir() . $image, 1);
58
- if($many_images == 1) {
59
- $inc = 1;
60
- //we get product object from catalog/product reason(beezup/products gets products from catalog/product_collection, didn't find the way to get image collection from there *will check)
61
- //$product = Mage::getModel('catalog/product')->load( $p->getId());
62
- $backendModel->afterLoad($p); //adding media gallery to the product object
63
- $datos = $p->getData();
64
- foreach ($datos['media_gallery']['images'] as $img) {
65
-
66
- if($img['disabled']==0 && $image !== $img['file']) {
67
- $inc++;
68
- $xml .= $helper->tag($this->__('url_image')."_".$inc, $helper->getImageDir() .$img['file'], 1);
69
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
70
  }
 
 
71
  }
72
-
73
- }
 
 
 
 
 
 
74
 
75
- /*
76
- //we get all category id's from product
77
- $currentCatIds = $product->getCategoryIds();
78
- //we get a collection of the categories from the ids
79
- $categoryCollection = Mage::getResourceModel('catalog/category_collection')
80
- ->addAttributeToSelect('name')
81
- ->addAttributeToSelect('url')
82
- ->addAttributeToFilter('entity_id', $currentCatIds)
83
- ->addIsActiveFilter();
84
- $inc_cat = 0;
85
- //loop through category collection to add to xml categories
86
- foreach($categoryCollection as $cat){
87
- $inc_cat++;
88
- $xml .= $helper->tag($this->__('b_product_category_'.$inc_cat), $cat->getUrl(), 1);
89
- } */
 
 
 
 
 
 
 
 
 
 
90
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
91
 
92
- // $xml .= $helper->tag($this->__('b_product_image'), $helper->getImageDir() . $image, 1);
93
- $xml .= $helper->tag($this->__('b_availability'), $stock, 1);
94
- $xml .= $helper->tag($this->__('b_qty'), $qty);
95
- $xml .= $helper->tag($this->__('b_delivery'), $shipping, 1);
96
- $xml .= $helper->tag($this->__('b_shipping'), $helper->currency($beezup->getShippingAmount($p->getWeight(), $_tablerates)));
97
- $xml .= $helper->tag($this->__('b_weight'), $helper->currency($p->getWeight()));
98
- $xml .= $helper->tag($this->__('b_price'), $helper->currency($final_price*$_vat));
99
- if ($price != $final_price) $xml .= $helper->tag($this->__('b_regular_price'), $helper->currency($price*$_vat));
100
- $i = 1;
101
- foreach ($categories as $v) $xml .= $helper->tag($this->__('b_category_%s', $i++), $v, 1);
102
- foreach ($_attributes as $a) {
103
- $value = $p->getResource()->getAttribute($a)->getFrontend()->getValue($p);
104
- $xml .= $helper->tag($a, is_float($value) ? $helper->currency($value) : $value, is_float($value) ? 0 : 1);
105
- }
106
-
107
- $xml .= '</product>' . PHP_EOL;
108
- }
109
- }
110
- $xml .= $this->getAssociatedProducto(false);
111
-
112
-
113
- $xml .= '</catalog>';
114
-
115
- return $xml;
116
- }
117
-
118
- /**
119
- Configurable permet de r�cup�rer tous les produits (p�re, enfant et simple)
120
- **/
121
- public function getXmlConfigurable()
122
- {
123
- $base_url = Mage::getBaseUrl();
124
- /* Load Model and Helper */
125
- $beezup = Mage::getModel('beezup/products');
126
- $helper = Mage::helper('beezup');
127
-
128
- /* Initially load the useful elements */
129
- $many_images = $helper->getConfig('beezup/flux/images');
130
- $_ht = $helper->getConfig('beezup/flux/ht');
131
- $_description = $helper->getConfig('beezup/flux/description');
132
- $_tablerates = $helper->getConfig('beezup/flux/tablerates_weight_destination') ? $beezup->getTablerates() : 0;
133
- $_categories = $beezup->getCategoriesAsArray(Mage::helper('catalog/category')->getStoreCategories());
134
- $_attributes = $helper->getConfig('beezup/flux/attributes') ? explode(',', $helper->getConfig('beezup/flux/attributes')) : array();
135
- $_vat = ($_ht && is_numeric($helper->getConfig('beezup/flux/vat'))) ? (preg_replace('(\,+)', '.', $helper->getConfig('beezup/flux/vat')) / 100) + 1 : 1;
136
- $_catalog_rules = $helper->getConfig('beezup/flux/catalog_rules');
137
-
138
- /* Build file */
139
- $xml = $helper->getConfig('beezup/flux/bom') ? "\xEF\xBB\xBF" : '';
140
- $xml .= '<?xml version="1.0" encoding="utf-8"?>' . PHP_EOL . '<catalog>' . PHP_EOL;
141
-
142
- //r�cup�re tous les produits
143
- $products = $beezup->getProducts();
144
- $childs = $beezup->getConfigurableProducts(true);
145
- $backendModel = $products->getResource()->getAttribute('media_gallery')->getBackend();
146
- $products->addAttributeToFilter('type_id', Mage_Catalog_Model_Product_Type::TYPE_CONFIGURABLE);
147
- //parcours les produits
148
- foreach ($products as $p) {
149
- if($many_images == 1) {
150
- $backendModel->afterLoad($p); //adding media gallery to the product object
151
- $datos = $p->getData();
152
-
153
- }
154
-
155
- $categories = $beezup->getProductsCategories($p, $_categories);
156
- $varationTheme = $beezup->getOptions($p);
157
- //we get product object from catalog/product reason(beezup/products gets products from catalog/product_collection, didn't find the way to get image collection from there *will check)
158
 
159
- if (count($categories)) {
160
- //si l'�l�ment est un p�re, on va traiter ces enfants
161
- if(isset($childs[$p->getId()])) {
162
- $childrens = $childs[$p->getId()];
163
 
164
- foreach($childrens as $c) {
165
- $qty = $beezup->getQty($c->getId());
166
- $stock = $beezup->getIsInStock($qty);
167
- $shipping = $beezup->getDelivery($qty);
168
- $price = $c->getPrice();
169
- $final_price = $c->getFinalPrice();
170
- $image = $this->fillImageUrl($p, $c);
171
-
172
- //DBG
173
  if (0)
174
  {
175
  echo "----------------------------" ."<br/>";
@@ -178,111 +204,177 @@ $products->addAttributeToFilter('type_id', Mage_Catalog_Model_Product_Type::TYPE
178
  echo "Parent Id : " .$p->getId() ."<br/>";
179
  echo "Url : " .$p->getProductUrl() ."<br/>";
180
  echo "Image : " .$helper->getImageDir().$image ."<br/>";
181
-
182
-
183
- echo "SKU : " .$c->getSku() ."<br/>";
184
- echo "Quantity : " .$qty ."<br/>";
185
- echo "Stock : " .$stock ."<br/>";
186
  echo "Shipping : " .$shipping ."<br/>";
187
  echo "price : " .$price ."<br/>";
188
  echo "finalprice : ".$final_price ."<br/>";
189
  echo "specialprice : ".$c->getSpecialPrice() ."<br/>";
190
  }
191
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
192
 
 
 
 
 
 
 
 
 
 
 
193
  $xml .= '<product>';
194
- $xml .= $helper->tag($this->__('b_unique_id'), $c->getId());
195
- $xml .= $helper->tag($this->__('b_sku'), trim($c->getSku()), 1);
196
-
197
- $xml .= $helper->tag($this->__('parent_or_child'), 'child', 1);
198
- $xml .= $helper->tag($this->__('parent_id'), $p->getId());
199
  $xml .= $helper->tag($this->__('variation-theme'), $varationTheme, 1);
200
-
201
  $xml .= $helper->tag($this->__('b_title'), trim($p->getName()), 1);
202
  $xml .= $helper->tag($this->__('b_description'), preg_replace("/(\r\n|\n|\r)/", ' ', strip_tags($p->getData($_description))), 1);
203
  $xml .= $helper->tag($this->__('b_product_url'), $p->getProductUrl(), 1);
204
-
205
- $xml .= $helper->tag($this->__('url_image'), $helper->getImageDir() . $image, 1);
206
- if($many_images==1) {
207
-
208
- $product = Mage::getModel('catalog/product')->load( $c->getId());
209
- $inc = 1;
210
- foreach ($product->getMediaGalleryImages() as $img) {
211
- if( $helper->getImageDir() . $image !== $img->getUrl()) {
212
- $inc++;
213
- $xml .= $helper->tag($this->__('url_image')."_".$inc, $img->getUrl(), 1);
214
- }
215
-
216
- }
217
-
218
- if($inc==1 && ($c->getImage() == "no_selection" || $c->getImage()=="" || $c->getSmallImage() == "no_selection" || $c->getSmallImage() == "")) { //if there are no child pictures
219
 
220
- $product = Mage::getModel('catalog/product')->load( $p->getId());
221
- $inc = 1;
222
- foreach ($product->getMediaGalleryImages() as $img) {
223
- if( $helper->getImageDir() . $image !== $img->getUrl()) {
224
- $inc++;
225
- $xml .= $helper->tag($this->__('url_image')."_".$inc, $img->getUrl(), 1);
226
  }
227
- }
228
-
229
-
230
- }
231
- }
232
  $xml .= $helper->tag($this->__('b_availability'), $stock, 1);
233
  $xml .= $helper->tag($this->__('b_qty'), $qty);
234
  $xml .= $helper->tag($this->__('b_delivery'), $shipping, 1);
235
- $xml .= $helper->tag($this->__('b_shipping'), $helper->currency($beezup->getShippingAmount($c->getWeight(), $_tablerates)));
236
- $xml .= $helper->tag($this->__('b_weight'), $helper->currency($c->getWeight()));
237
  $xml .= $helper->tag($this->__('b_price'), $helper->currency($final_price*$_vat));
238
  if ($price != $final_price) $xml .= $helper->tag($this->__('b_regular_price'), $helper->currency($price*$_vat));
239
  $i = 1;
240
  foreach ($categories as $v) $xml .= $helper->tag($this->__('b_category_%s', $i++), $v, 1);
241
  foreach ($_attributes as $a) {
242
- $value = $c->getResource()->getAttribute($a)->getFrontend()->getValue($c);
243
  $xml .= $helper->tag($a, is_float($value) ? $helper->currency($value) : $value, is_float($value) ? 0 : 1);
244
  }
 
245
  $xml .= '</product>' . PHP_EOL;
246
  }
247
-
 
 
 
 
 
 
 
 
 
 
 
248
  $qty = $beezup->getQty($p->getId());
249
  $stock = $beezup->getIsInStock($qty);
250
  $shipping = $beezup->getDelivery($qty);
251
  $price = $p->getPrice();
252
  $final_price = $p->getFinalPrice();
253
  if (($image = $p->getImage()) == "no_selection" || ($image = $p->getImage()) == "") // Si on ne trouve pas d'image avec getImage on r�cup�re la smallImage
254
- $image = $p->getSmallImage();
255
 
256
 
257
- // si c'est un �l�ment parent
258
  $xml .= '<product>';
259
  $xml .= $helper->tag($this->__('b_unique_id'), $p->getId());
260
  $xml .= $helper->tag($this->__('b_sku'), trim($p->getSku()), 1);
261
-
262
- $xml .= $helper->tag($this->__('parent_or_child'), 'parent', 1);
263
  $xml .= $helper->tag($this->__('parent_id'), '');
264
- $xml .= $helper->tag($this->__('variation-theme'), $varationTheme, 1);
265
-
266
  $xml .= $helper->tag($this->__('b_title'), trim($p->getName()), 1);
267
  $xml .= $helper->tag($this->__('b_description'), preg_replace("/(\r\n|\n|\r)/", ' ', strip_tags($p->getData($_description))), 1);
268
  $xml .= $helper->tag($this->__('b_product_url'), $p->getProductUrl(), 1);
269
- $xml .= $helper->tag($this->__('url_image'), $helper->getImageDir() . $image, 1);
270
- if($many_images == 1) {
271
- $inc = 1;
272
- //we get product object from catalog/product reason(beezup/products gets products from catalog/product_collection, didn't find the way to get image collection from there *will check)
273
- //$product = Mage::getModel('catalog/product')->load( $p->getId());
274
-
275
- foreach ($datos['media_gallery']['images'] as $img) {
276
-
277
- if($img['disabled']==0 && $image !== $img['file']) {
278
- $inc++;
279
- $xml .= $helper->tag($this->__('url_image')."_".$inc, $helper->getImageDir() .$img['file'], 1);
280
-
281
- }
282
- }
283
-
284
- }
285
-
 
286
  $xml .= $helper->tag($this->__('b_availability'), $stock, 1);
287
  $xml .= $helper->tag($this->__('b_qty'), $qty);
288
  $xml .= $helper->tag($this->__('b_delivery'), $shipping, 1);
@@ -296,432 +388,389 @@ $products->addAttributeToFilter('type_id', Mage_Catalog_Model_Product_Type::TYPE
296
  $value = $p->getResource()->getAttribute($a)->getFrontend()->getValue($p);
297
  $xml .= $helper->tag($a, is_float($value) ? $helper->currency($value) : $value, is_float($value) ? 0 : 1);
298
  }
299
-
300
  $xml .= '</product>' . PHP_EOL;
301
  }
302
- }
303
- }
 
 
 
 
 
 
304
 
305
- $product_simple = $beezup->getProductsSimple();
306
- $backendModelSimple = $product_simple->getResource()->getAttribute('media_gallery')->getBackend();
307
- foreach ($product_simple as $p) {
308
-
309
- $prodAttributeSet = Mage::getModel('eav/entity_attribute_set')->load($p->getAttributeSetId())->getAttributeSetName();
310
-
311
- $categories = $beezup->getProductsCategories($p, $_categories);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
312
 
313
- if (count($categories)) {
314
- $qty = $beezup->getQty($p->getId());
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
315
  $stock = $beezup->getIsInStock($qty);
316
  $shipping = $beezup->getDelivery($qty);
317
- $price = $p->getPrice();
318
- $final_price = $p->getFinalPrice();
319
- if (($image = $p->getImage()) == "no_selection" || ($image = $p->getImage()) == "") // Si on ne trouve pas d'image avec getImage on r�cup�re la smallImage
320
- $image = $p->getSmallImage();
321
 
322
-
323
  $xml .= '<product>';
324
- $xml .= $helper->tag($this->__('b_unique_id'), $p->getId());
325
- $xml .= $helper->tag($this->__('b_sku'), trim($p->getSku()), 1);
326
-
327
- $xml .= $helper->tag($this->__('parent_or_child'), 'simple', 1);
328
- $xml .= $helper->tag($this->__('parent_id'), '');
329
- $xml .= $helper->tag($this->__('variation-theme'), '', 1);
330
-
331
- $xml .= $helper->tag($this->__('b_title'), trim($p->getName()), 1);
332
- $xml .= $helper->tag($this->__('b_description'), preg_replace("/(\r\n|\n|\r)/", ' ', strip_tags($p->getData($_description))), 1);
333
- $xml .= $helper->tag($this->__('b_product_url'), $p->getProductUrl(), 1);
334
- $xml .= $helper->tag($this->__('url_image'), $helper->getImageDir() . $image, 1);
335
- if($many_images == 1) {
336
- $inc = 1;
337
- //we get product object from catalog/product reason(beezup/products gets products from catalog/product_collection, didn't find the way to get image collection from there *will check)
338
- //$product = Mage::getModel('catalog/product')->load( $p->getId());
339
- $backendModelSimple->afterLoad($p); //adding media gallery to the product object
340
- $datos = $p->getData();
341
- foreach ($datos['media_gallery']['images'] as $img) {
342
-
343
- if($img['disabled']==0 && $image !== $img['file']) {
344
- $inc++;
345
- $xml .= $helper->tag($this->__('url_image')."_".$inc, $helper->getImageDir() .$img['file'], 1);
346
-
347
- }
348
- }
349
-
350
- }
351
-
 
 
 
 
 
 
 
 
 
352
  $xml .= $helper->tag($this->__('b_availability'), $stock, 1);
353
  $xml .= $helper->tag($this->__('b_qty'), $qty);
354
  $xml .= $helper->tag($this->__('b_delivery'), $shipping, 1);
355
- $xml .= $helper->tag($this->__('b_shipping'), $helper->currency($beezup->getShippingAmount($p->getWeight(), $_tablerates)));
356
- $xml .= $helper->tag($this->__('b_weight'), $helper->currency($p->getWeight()));
357
  $xml .= $helper->tag($this->__('b_price'), $helper->currency($final_price*$_vat));
358
  if ($price != $final_price) $xml .= $helper->tag($this->__('b_regular_price'), $helper->currency($price*$_vat));
359
  $i = 1;
360
  foreach ($categories as $v) $xml .= $helper->tag($this->__('b_category_%s', $i++), $v, 1);
361
  foreach ($_attributes as $a) {
362
- $value = $p->getResource()->getAttribute($a)->getFrontend()->getValue($p);
363
  $xml .= $helper->tag($a, is_float($value) ? $helper->currency($value) : $value, is_float($value) ? 0 : 1);
364
  }
365
-
366
  $xml .= '</product>' . PHP_EOL;
367
  }
368
- //}
369
- }
370
- $xml .= $this->getAssociatedProducto(true);
371
- $xml .= '</catalog>';
372
-
373
- return $xml;
374
- }
375
-
376
-
377
- /**
378
- Children permet de r�cup�rer tous les produits enfants
379
- **/
380
- public function getXmlChild()
381
- {
382
- /* Load Model and Helper */
383
- $beezup = Mage::getModel('beezup/products');
384
- $helper = Mage::helper('beezup');
385
-
386
- /* Initially load the useful elements */
387
- $many_images = $helper->getConfig('beezup/flux/images');
388
- $_ht = $helper->getConfig('beezup/flux/ht');
389
- $_description = $helper->getConfig('beezup/flux/description');
390
- $_tablerates = $helper->getConfig('beezup/flux/tablerates_weight_destination') ? $beezup->getTablerates() : 0;
391
- $_categories = $beezup->getCategoriesAsArray(Mage::helper('catalog/category')->getStoreCategories());
392
- $_attributes = $helper->getConfig('beezup/flux/attributes') ? explode(',', $helper->getConfig('beezup/flux/attributes')) : array();
393
- $_vat = ($_ht && is_numeric($helper->getConfig('beezup/flux/vat'))) ? (preg_replace('(\,+)', '.', $helper->getConfig('beezup/flux/vat')) / 100) + 1 : 1;
394
- $_catalog_rules = $helper->getConfig('beezup/flux/catalog_rules');
395
-
396
- /* Build file */
397
- $xml = $helper->getConfig('beezup/flux/bom') ? "\xEF\xBB\xBF" : '';
398
- $xml .= '<?xml version="1.0" encoding="utf-8"?>' . PHP_EOL . '<catalog>' . PHP_EOL;
399
-
400
- $childs = $beezup->getConfigurableProducts(false);
401
-
402
- foreach ($childs as $c) {
403
-
404
- //r�cup�rer l'image sur le p�re
405
- $productParentIds=Mage::getResourceSingleton('catalog/product_type_configurable')->getParentIdsByChild($c->getId());
406
- foreach($productParentIds as $productParentId){
407
- $productParent = Mage::getModel('catalog/product')->load($productParentId);
408
- $image=$productParent->getImage();
409
- $categories = $beezup->getProductsCategories($productParent, $_categories);
410
- $url = $productParent->getProductUrl();
411
- $name = $productParent->getName();
412
- $description = $productParent->getData($_description);
413
  }
414
 
415
- if(count($categories)){
416
- $qty = $beezup->getQty($c->getId());
417
- $stock = $beezup->getIsInStock($qty);
418
- $shipping = $beezup->getDelivery($qty);
419
- $price = $c->getPrice();
420
- $final_price = $c->getFinalPrice();
421
- $image = $this->fillImageUrl($productParent, $c);
422
-
423
- $xml .= '<product>';
424
- $xml .= $helper->tag($this->__('b_unique_id'), $c->getId());
425
- $xml .= $helper->tag($this->__('b_sku'), trim($c->getSku()), 1);
426
-
427
- $xml .= $helper->tag($this->__('parent_or_child'), 'child', 1);
428
- $xml .= $helper->tag($this->__('parent_id'), $c->getParentId());
429
-
430
- $xml .= $helper->tag($this->__('b_title'), trim($name), 1);
431
- $xml .= $helper->tag($this->__('b_description'), preg_replace("/(\r\n|\n|\r)/", ' ', strip_tags($description)), 1);
432
- $xml .= $helper->tag($this->__('b_product_url'), $url, 1);
433
-
434
- /*$inc = 0;
435
- $product = Mage::getModel('catalog/product')->load( $c->getId());
436
 
437
- foreach ($product->getMediaGalleryImages() as $image) {
438
- $inc++;
439
- if($inc==1) {
440
- $xml .= $helper->tag($this->__('url_image'), $image->getUrl(), 1);
441
- } else {
442
- $xml .= $helper->tag($this->__('url_image')."_".$inc, $image->getUrl(), 1);
443
- }
444
- }*/
445
- $xml .= $helper->tag($this->__('url_image'), $helper->getImageDir() . $image, 1); //r�cup�re l'image sur le p�re
446
-
447
- if($many_images == 1) {
448
- $product = Mage::getModel('catalog/product')->load( $c->getId());
449
- $inc = 1;
450
- foreach ($product->getMediaGalleryImages() as $img) {
451
- if($helper->getImageDir() . $image!== $img->getUrl()) {
452
- $inc++;
453
- $xml .= $helper->tag($this->__('url_image')."_".$inc, $img->getUrl(), 1);
454
- }
455
- }
456
-
457
-
458
-
459
- }
460
-
461
- $xml .= $helper->tag($this->__('b_availability'), $stock, 1);
462
- $xml .= $helper->tag($this->__('b_qty'), $qty);
463
- $xml .= $helper->tag($this->__('b_delivery'), $shipping, 1);
464
- $xml .= $helper->tag($this->__('b_shipping'), $helper->currency($beezup->getShippingAmount($c->getWeight(), $_tablerates)));
465
- $xml .= $helper->tag($this->__('b_weight'), $helper->currency($c->getWeight()));
466
- $xml .= $helper->tag($this->__('b_price'), $helper->currency($final_price*$_vat));
467
- if ($price != $final_price) $xml .= $helper->tag($this->__('b_regular_price'), $helper->currency($price*$_vat));
468
- $i = 1;
469
- foreach ($categories as $v) $xml .= $helper->tag($this->__('b_category_%s', $i++), $v, 1);
470
- foreach ($_attributes as $a) {
471
- $value = $c->getResource()->getAttribute($a)->getFrontend()->getValue($c);
472
- $xml .= $helper->tag($a, is_float($value) ? $helper->currency($value) : $value, is_float($value) ? 0 : 1);
473
- }
474
-
475
- $xml .= '</product>' . PHP_EOL;
476
- }
477
- }
478
-
479
- $xml .= '</catalog>';
480
-
481
- return $xml;
482
- }
483
-
484
- /**
485
- Produit groupes
486
- **/
487
-
488
- public function getAssociatedProducto($configurable)
489
- {
490
 
491
- /* Load Model and Helper */
492
- $beezup = Mage::getModel('beezup/products');
493
- $helper = Mage::helper('beezup');
494
-
495
- /* Initially load the useful elements */
496
- $many_images = $helper->getConfig('beezup/flux/images');
497
- $_ht = $helper->getConfig('beezup/flux/ht');
498
- $_description = $helper->getConfig('beezup/flux/description');
499
- $_tablerates = $helper->getConfig('beezup/flux/tablerates_weight_destination') ? $beezup->getTablerates() : 0;
500
- $_categories = $beezup->getCategoriesAsArray(Mage::helper('catalog/category')->getStoreCategories());
501
- $_vat = ($_ht && is_numeric($helper->getConfig('beezup/flux/vat'))) ? (preg_replace('(\,+)', '.', $helper->getConfig('beezup/flux/vat')) / 100) + 1 : 1;
502
- $_attributes = $helper->getConfig('beezup/flux/attributes') ? explode(',', $helper->getConfig('beezup/flux/attributes')) : array();
503
- $_catalog_rules = $helper->getConfig('beezup/flux/catalog_rules');
504
-
505
- $products = $beezup->getGroupedProduct();
506
-
507
- $buf = $helper->getConfig('beezup/flux/bom') ? "\xEF\xBB\xBF" : '';
508
- foreach ($products as $product) {
509
- $associatedProducts = $product->getTypeInstance(true)->getAssociatedProducts($product);
510
-
511
- $parentCategories = $beezup->getProductsCategories($product, $_categories);
512
- $parentDesc = $product->getData($_description);
513
- $parentId = $product->getId();
514
- $parentImage = $product->getImage();
515
- $parentUrl = $product->getProductUrl();
516
-
517
- foreach ($associatedProducts as $g) {
518
- $qty = $beezup->getQty($g->getId());
519
- $stock = $beezup->getIsInStock($qty);
520
- $shipping = $beezup->getDelivery($qty);
521
- $price = $g->getPrice();
522
- $final_price = $g->getFinalPrice();
523
-
524
- $image = $this->fillImageUrl($product, $g);
525
-
526
 
527
- //if (($image = $g->getImage()) == "no_selection" || ($image = $g->getImage()) == "") // Si on ne trouve pas d'image avec getImage on r�cup�re la smallImage
528
- // $image = $g->getSmallImage();
 
 
 
529
 
530
-
531
- //DBG
 
 
 
 
 
 
 
 
 
 
 
 
 
532
  if (0)
533
  {
534
- echo "----------------------------" ."<br/>";
535
- echo "Name : " .$g->getName() ."<br/>";
536
- echo "Description : ".$parentDesc ."<br/>";
537
- echo "Id : " .$g->getId() ."<br/>";
538
- echo "Parent Id : " .$parentId ."<br/>";
539
- echo "Url : " .$parentUrl ."<br/>";
540
- echo "Image : " .$helper->getImageDir().$image ."<br/>";
541
-
542
-
543
- echo "SKU : " .$g->getSku() ."<br/>";
544
- echo "Quantity : " .$qty ."<br/>";
545
- echo "Stock : " .$stock ."<br/>";
546
  echo "Shipping : " .$shipping ."<br/>";
547
  echo "price : " .$price ."<br/>";
548
  echo "finalprice : ".$final_price ."<br/>";
549
  echo "weight : " .$g->getWeight() ."<br/>";
550
-
551
  $i = 1;
552
  foreach ($parentCategories as $v)
553
- echo "Cat�gorie ".$i." : ".$v."<br/>";
554
  }
555
-
556
-
557
- $buf .= "<product>";
558
- $buf .= $helper->tag($this->__('b_unique_id'), $g->getId());
559
- $buf .= $helper->tag($this->__('b_sku'), trim($g->getSku()), 1);
560
- if ($configurable){
561
- $buf .= $helper->tag($this->__('parent_or_child'), 'grouped_child', 1);
562
- $buf .= $helper->tag($this->__('parent_id'), $parentId);
563
- }
564
- $buf .= $helper->tag($this->__('b_title'), $g->getName()/*trim($name)*/, 1);
565
- $buf .= $helper->tag($this->__('b_description'), preg_replace("/(\r\n|\n|\r)/", ' ', strip_tags($parentDesc)), 1);
566
- $buf .= $helper->tag($this->__('b_product_url'), $parentUrl, 1);
567
-
568
- /*
569
- if($many_images==1) {
570
-
571
- $gprod = Mage::getModel('catalog/product')->load( $g->getId());
572
  $inc = 0;
573
- foreach ($gprod->getMediaGalleryImages() as $image) {
574
- $inc++;
575
- if($inc==1) {
576
- $buf .= $helper->tag($this->__('url_image'), $image->getUrl(), 1);
577
- } else {
578
- $buf .= $helper->tag($this->__('url_image')."_".$inc, $image->getUrl(), 1);
579
- }
580
- }
581
- } else {
582
 
583
  $buf .= $helper->tag($this->__('url_image'), $helper->getImageDir() . $image, 1);
584
- }*/
585
-
586
- $buf .= $helper->tag($this->__('b_product_image'), $helper->getImageDir() . $image, 1); //r�cup�re l'image sur le p�re
587
- $buf .= $helper->tag($this->__('b_availability'), $stock, 1);
588
- $buf .= $helper->tag($this->__('b_qty'), $qty);
589
- $buf .= $helper->tag($this->__('b_delivery'), $shipping, 1);
590
- $buf .= $helper->tag($this->__('b_shipping'), $helper->currency($beezup->getShippingAmount($g->getWeight(), $_tablerates)));
591
- $buf .= $helper->tag($this->__('b_weight'), $helper->currency($g->getWeight()));
592
- $buf .= $helper->tag($this->__('b_price'), $helper->currency($final_price * $_vat));
593
- if ($price != $final_price) $buf .= $helper->tag($this->__('b_regular_price'), $helper->currency($price*$_vat));
594
- $i = 1;
595
- foreach ($parentCategories as $v) $buf .= $helper->tag($this->__('b_category_%s', $i++), $v, 1);
596
- foreach ($_attributes as $a) {
597
- $value = $g->getResource()->getAttribute($a)->getFrontend()->getValue($g);
598
- $buf .= $helper->tag($a, is_float($value) ? $helper->currency($value) : $value, is_float($value) ? 0 : 1);
 
 
599
  }
600
- $buf .= "</product>".PHP_EOL;
601
- }
602
- }
603
- return $buf;
604
- }
605
-
606
-
607
- protected function fillImageUrl($p, $c)
608
- {
609
- $image = $c->getImage();
610
- if ($image == "no_selection" || $image == "") // Si on ne trouve pas d'image avec getImage on r�cup�re la smallImage
611
  {
612
- $image = $c->getSmallImage();
613
- if ($image == "no_selection" || $image == "")
 
 
 
614
  {
615
  $image = $p->getImage();
616
  if ($image == "no_selection" || $image == "")
617
- $image = $p->getSmallImage();
618
  }
 
 
619
  }
620
- return ($image);
621
- }
622
-
623
- protected function createFile($type, $xmlData)
624
- {
625
- $fp = fopen('beezup/tmp/'.$type, 'w');
626
- if ($fp == false)
627
  {
628
- echo 'Fail to create file';
629
- }
 
 
 
630
  fwrite($fp, $xmlData);
631
- fclose($fp);
632
- }
633
-
634
- protected function deleteFeed($type)
635
- {
636
- unlink('beezup/tmp/'.$type);
637
- }
638
-
639
- protected function needRefreshing($type)
640
- {
641
- $helper = Mage::helper('beezup');
642
 
643
- $delay = $helper->getConfig('beezup/flux/cachedelay') * 60;
644
- $nowtime = time();
645
- $fileTime = filemtime('beezup/tmp/'.$type);
646
- if (($nowtime - $fileTime) >= $delay)
 
 
 
 
647
  return (true);
648
- else
649
  return (false);
650
- }
651
-
652
- protected function createFolder()
653
- {
654
- $helper = Mage::helper('beezup');
655
- if (!$helper->getConfig('beezup/flux/cachedelay')) // Si option cache desactiv�e, pas besoin du dossier
656
  return (true);
657
- if (file_exists('beezup/tmp')) // Si le dossier existe deja, pas besoin de le recr�er
 
 
 
 
 
 
 
 
 
 
658
  return (true);
659
- if (!mkdir('beezup/tmp', 0777, true))
660
- {
661
- echo "[ERROR] : Seems we can't create 'beezup' directory inside your root directory."."<br/>"
662
- ."You can try one of these solutions :"."<br/>"
663
- ."1 - Create by yourself the beezup/tmp inside your root directory with 777 permissions"."<br/>"
664
- ."2 - Change the permissions on your root directory (777)"."<br/>"
665
- ."3 - Change the 'cache delay' option to 'None' inside beezup plugin settings"."<br/>";
666
- return (false);
667
  }
668
- return (true);
669
- }
670
-
671
-
672
-
673
- /**
674
- C'est ici que tout commence ...
675
- **/
676
-
677
- protected function _toHtml()
678
- {
679
- set_time_limit(0);
680
- $helper = Mage::helper('beezup');
681
- $this->setCacheLifetime(null);
682
  //dbg
683
  /*
684
- $this->getAssociatedProducto(true);
685
- return;*/
686
-
687
  if (!$this->createFolder()) // Si on rencontre des probl�mes de cr�ation de dossier on retourne rien
688
- return;
689
  if ($this->getConfigurable()){ // Appel de l'url http://site.com/beezup/catalog/configurable
690
- if ($this->needRefreshing('configurable')){
691
- if (file_exists('beezup/tmp/configurable'))
692
- $this->deleteFeed('configurable');
693
- $xmlData = $this->getXmlConfigurable();
694
- $this->addText($xmlData);
695
- if ($helper->getConfig('beezup/flux/cachedelay') != 0)
696
- $this->createFile('configurable', $xmlData);
697
- }
698
- else
699
- echo file_get_contents('beezup/tmp/configurable');
700
  }
701
  else if ($this->getChildXML()){ // Appel de l'url http://site.com/beezup/catalog/child
702
- if ($this->needRefreshing('child')){
703
- if (file_exists('beezup/tmp/child'))
704
- $this->deleteFeed('child');
705
- $xmlData = $this->getXmlChild();
706
- $this->addText($xmlData);
707
- if ($helper->getConfig('beezup/flux/cachedelay') != 0)
708
- $this->createFile('child', $xmlData);
709
- }
710
- else
711
- echo file_get_contents('beezup/tmp/child');
712
  }
713
  else { // Appel de l'url http://site.com/beezup/catalog/xml
714
- if ($this->needRefreshing('xml')){
715
- if (file_exists('beezup/tmp/xml'))
716
- $this->deleteFeed('xml');
717
- $xmlData = $this->getXml();
718
- $this->addText($xmlData);
719
- if ($helper->getConfig('beezup/flux/cachedelay') != 0)
720
- $this->createFile('xml', $xmlData);
721
- }
722
- else
723
- echo file_get_contents('beezup/tmp/xml');
724
  }
725
  return parent::_toHtml();
726
- }
727
- }
 
1
  <?php
2
+ ini_set('memory_limit','1024M');
3
+ class BeezUp_Block_Xml extends Mage_Core_Block_Text
4
+ {
5
+ /**
6
+ Xml permet de r�cup�rer tous les produits simples
7
+ **/
8
+ public function getXml()
9
+ {
10
+ $base_url = Mage::getBaseUrl();
11
+ /* Load Model and Helper */
12
+ $beezup = Mage::getModel('beezup/products');
13
+ $helper = Mage::helper('beezup');
14
+ $category_logic = $helper->getConfig('beezup/flux/category_logic');
15
+ /* Initially load the useful elements */
16
+ $many_images = $helper->getConfig('beezup/flux/images');
17
+ $_ht = $helper->getConfig('beezup/flux/ht');
18
+ $_description = $helper->getConfig('beezup/flux/description');
19
+ $_tablerates = $helper->getConfig('beezup/flux/tablerates_weight_destination') ? $beezup->getTablerates() : 0;
20
+ $cat_logic = false;
21
+ if($category_logic == 1) {
22
+ $_categories = $beezup->getCategoriesAsArray(Mage::helper('catalog/category')->getStoreCategories());
23
+ } else {
24
+ $cat_logic = true;
25
+ $categories = Mage::getModel('catalog/category')->getCollection()
26
+ ->addAttributeToSelect('*')//or you can just add some attributes
27
+ ->addAttributeToFilter('level', 2)
28
+ ->addAttributeToFilter('is_active', 1);
29
+ $_categories = $beezup->getCategoriesAsArray( $categories, true);
30
 
31
+
32
+ }
33
+
34
+ $_attributes = $helper->getConfig('beezup/flux/attributes') ? explode(',', $helper->getConfig('beezup/flux/attributes')) : array();
35
+ $_vat = ($_ht && is_numeric($helper->getConfig('beezup/flux/vat'))) ? (preg_replace('(\,+)', '.', $helper->getConfig('beezup/flux/vat')) / 100) + 1 : 1;
36
+ $_catalog_rules = $helper->getConfig('beezup/flux/catalog_rules');
37
+
38
+ /* Build file */
39
+ $xml = $helper->getConfig('beezup/flux/bom') ? "\xEF\xBB\xBF" : '';
40
+ $xml .= '<?xml version="1.0" encoding="utf-8"?>' . PHP_EOL . '<catalog>' . PHP_EOL;
41
+
42
+ $products = $beezup->getProducts();
43
+ if($many_images == 1) {
44
+ $backendModel = $products->getResource()->getAttribute('media_gallery')->getBackend();
45
+ }
46
 
47
+
48
+ foreach ($products as $p) {
49
+ $categories = $beezup->getProductsCategories($p, $_categories, $cat_logic);
 
 
 
50
 
51
+ if (count($categories)) {
52
+ $qty = $beezup->getQty($p->getId());
53
+ $stock = $beezup->getIsInStock($qty);
54
+ $shipping = $beezup->getDelivery($qty);
55
+ $price = $p->getPrice();
56
+ $final_price = $p->getFinalPrice();
57
+ if (($image = $p->getImage()) == "no_selection" || ($image = $p->getImage()) == "") // Si on ne trouve pas d'image avec getImage on r�cup�re la smallImage
58
  $image = $p->getSmallImage();
59
+
60
+
61
+
62
+
63
+ $xml .= '<product>';
64
+ $xml .= $helper->tag($this->__('b_unique_id'), $p->getId());
65
+ $xml .= $helper->tag($this->__('b_sku'), trim($p->getSku()), 1);
66
+ $xml .= $helper->tag($this->__('b_title'), trim($p->getName()), 1);
67
+ $xml .= $helper->tag($this->__('b_description'), preg_replace("/(\r\n|\n|\r)/", ' ', strip_tags($p->getData($_description))), 1);
68
+ $xml .= $helper->tag($this->__('b_product_url'), $p->getProductUrl(), 1);
69
+
70
+
71
+
72
+ $xml .= $helper->tag($this->__('url_image'), $helper->getImageDir() . $image, 1);
73
+ if($many_images == 1) {
74
+ $inc = 1;
75
+ //we get product object from catalog/product reason(beezup/products gets products from catalog/product_collection, didn't find the way to get image collection from there *will check)
76
+ //$product = Mage::getModel('catalog/product')->load( $p->getId());
77
+ $backendModel->afterLoad($p); //adding media gallery to the product object
78
+ $datos = $p->getData();
79
+ foreach ($datos['media_gallery']['images'] as $img) {
80
+
81
+ if($img['disabled']==0 && $image !== $img['file']) {
82
+ $inc++;
83
+ $xml .= $helper->tag($this->__('url_image')."_".$inc, $helper->getImageDir() .$img['file'], 1);
84
+
85
+ }
86
+ }
87
+
88
+ }
89
+
90
+ /*
91
+ //we get all category id's from product
92
+ $currentCatIds = $product->getCategoryIds();
93
+ //we get a collection of the categories from the ids
94
+ $categoryCollection = Mage::getResourceModel('catalog/category_collection')
95
+ ->addAttributeToSelect('name')
96
+ ->addAttributeToSelect('url')
97
+ ->addAttributeToFilter('entity_id', $currentCatIds)
98
+ ->addIsActiveFilter();
99
+ $inc_cat = 0;
100
+ //loop through category collection to add to xml categories
101
+ foreach($categoryCollection as $cat){
102
+ $inc_cat++;
103
+ $xml .= $helper->tag($this->__('b_product_category_'.$inc_cat), $cat->getUrl(), 1);
104
+ } */
105
+
106
+
107
+ // $xml .= $helper->tag($this->__('b_product_image'), $helper->getImageDir() . $image, 1);
108
+ $xml .= $helper->tag($this->__('b_availability'), $stock, 1);
109
+ $xml .= $helper->tag($this->__('b_qty'), $qty);
110
+ $xml .= $helper->tag($this->__('b_delivery'), $shipping, 1);
111
+ $xml .= $helper->tag($this->__('b_shipping'), $helper->currency($beezup->getShippingAmount($p->getWeight(), $_tablerates)));
112
+ $xml .= $helper->tag($this->__('b_weight'), $helper->currency($p->getWeight()));
113
+ $xml .= $helper->tag($this->__('b_price'), $helper->currency($final_price*$_vat));
114
+ if ($price != $final_price) $xml .= $helper->tag($this->__('b_regular_price'), $helper->currency($price*$_vat));
115
+ $i = 1;
116
+ foreach ($categories as $v) $xml .= $helper->tag($this->__('b_category_%s', $i++), $v, 1);
117
+ foreach ($_attributes as $a) {
118
+ $value = $p->getResource()->getAttribute($a)->getFrontend()->getValue($p);
119
+ $xml .= $helper->tag($a, is_float($value) ? $helper->currency($value) : $value, is_float($value) ? 0 : 1);
120
  }
121
+
122
+ $xml .= '</product>' . PHP_EOL;
123
  }
124
+ }
125
+ $xml .= $this->getAssociatedProducto(false);
126
+
127
+
128
+ $xml .= '</catalog>';
129
+
130
+ return $xml;
131
+ }
132
 
133
+ /**
134
+ Configurable permet de r�cup�rer tous les produits (p�re, enfant et simple)
135
+ **/
136
+ public function getXmlConfigurable()
137
+ {
138
+ $base_url = Mage::getBaseUrl();
139
+ /* Load Model and Helper */
140
+ $beezup = Mage::getModel('beezup/products');
141
+ $helper = Mage::helper('beezup');
142
+ $category_logic = $helper->getConfig('beezup/flux/category_logic');
143
+ /* Initially load the useful elements */
144
+ $many_images = $helper->getConfig('beezup/flux/images');
145
+ $_ht = $helper->getConfig('beezup/flux/ht');
146
+ $_description = $helper->getConfig('beezup/flux/description');
147
+ $_tablerates = $helper->getConfig('beezup/flux/tablerates_weight_destination') ? $beezup->getTablerates() : 0;
148
+ $cat_logic = false;
149
+ if($category_logic == 1) {
150
+ $_categories = $beezup->getCategoriesAsArray(Mage::helper('catalog/category')->getStoreCategories());
151
+ } else {
152
+ $cat_logic = true;
153
+ $categories = Mage::getModel('catalog/category')->getCollection()
154
+ ->addAttributeToSelect('*')//or you can just add some attributes
155
+ ->addAttributeToFilter('level', 2)
156
+ ->addAttributeToFilter('is_active', 1);
157
+ $_categories = $beezup->getCategoriesAsArray( $categories, true);
158
 
159
+ }
160
+ $_attributes = $helper->getConfig('beezup/flux/attributes') ? explode(',', $helper->getConfig('beezup/flux/attributes')) : array();
161
+ $_vat = ($_ht && is_numeric($helper->getConfig('beezup/flux/vat'))) ? (preg_replace('(\,+)', '.', $helper->getConfig('beezup/flux/vat')) / 100) + 1 : 1;
162
+ $_catalog_rules = $helper->getConfig('beezup/flux/catalog_rules');
163
+
164
+ /* Build file */
165
+ $xml = $helper->getConfig('beezup/flux/bom') ? "\xEF\xBB\xBF" : '';
166
+ $xml .= '<?xml version="1.0" encoding="utf-8"?>' . PHP_EOL . '<catalog>' . PHP_EOL;
167
+
168
+ //r�cup�re tous les produits
169
+ $products = $beezup->getProducts();
170
+ $childs = $beezup->getConfigurableProducts(true);
171
+ $backendModel = $products->getResource()->getAttribute('media_gallery')->getBackend();
172
+ $products->addAttributeToFilter('type_id', Mage_Catalog_Model_Product_Type::TYPE_CONFIGURABLE);
173
+ //parcours les produits
174
+ foreach ($products as $p) {
175
+ if($many_images == 1) {
176
+ $backendModel->afterLoad($p); //adding media gallery to the product object
177
+ $datos = $p->getData();
178
+
179
+ }
180
 
181
+ $categories = $beezup->getProductsCategories($p, $_categories, $cat_logic);
182
+ $varationTheme = $beezup->getOptions($p);
183
+ //we get product object from catalog/product reason(beezup/products gets products from catalog/product_collection, didn't find the way to get image collection from there *will check)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
184
 
185
+ if (count($categories)) {
186
+ //si l'�l�ment est un p�re, on va traiter ces enfants
187
+ if(isset($childs[$p->getId()])) {
188
+ $childrens = $childs[$p->getId()];
189
 
190
+ foreach($childrens as $c) {
191
+ $qty = $beezup->getQty($c->getId());
192
+ $stock = $beezup->getIsInStock($qty);
193
+ $shipping = $beezup->getDelivery($qty);
194
+ $price = $c->getPrice();
195
+ $final_price = $c->getFinalPrice();
196
+ $image = $this->fillImageUrl($p, $c);
197
+
198
+ //DBG
199
  if (0)
200
  {
201
  echo "----------------------------" ."<br/>";
204
  echo "Parent Id : " .$p->getId() ."<br/>";
205
  echo "Url : " .$p->getProductUrl() ."<br/>";
206
  echo "Image : " .$helper->getImageDir().$image ."<br/>";
207
+
208
+
209
+ echo "SKU : " .$c->getSku() ."<br/>";
210
+ echo "Quantity : " .$qty ."<br/>";
211
+ echo "Stock : " .$stock ."<br/>";
212
  echo "Shipping : " .$shipping ."<br/>";
213
  echo "price : " .$price ."<br/>";
214
  echo "finalprice : ".$final_price ."<br/>";
215
  echo "specialprice : ".$c->getSpecialPrice() ."<br/>";
216
  }
217
+
218
+
219
+ $xml .= '<product>';
220
+ $xml .= $helper->tag($this->__('b_unique_id'), $c->getId());
221
+ $xml .= $helper->tag($this->__('b_sku'), trim($c->getSku()), 1);
222
+
223
+ $xml .= $helper->tag($this->__('parent_or_child'), 'child', 1);
224
+ $xml .= $helper->tag($this->__('parent_id'), $p->getId());
225
+ $xml .= $helper->tag($this->__('variation-theme'), $varationTheme, 1);
226
+
227
+ $xml .= $helper->tag($this->__('b_title'), trim($p->getName()), 1);
228
+ $xml .= $helper->tag($this->__('b_description'), preg_replace("/(\r\n|\n|\r)/", ' ', strip_tags($p->getData($_description))), 1);
229
+ $xml .= $helper->tag($this->__('b_product_url'), $p->getProductUrl(), 1);
230
+
231
+ $xml .= $helper->tag($this->__('url_image'), $helper->getImageDir() . $image, 1);
232
+ if($many_images==1) {
233
+
234
+ $product = Mage::getModel('catalog/product')->load( $c->getId());
235
+ $inc = 1;
236
+ foreach ($product->getMediaGalleryImages() as $img) {
237
+ if( $helper->getImageDir() . $image !== $img->getUrl()) {
238
+ $inc++;
239
+ $xml .= $helper->tag($this->__('url_image')."_".$inc, $img->getUrl(), 1);
240
+ }
241
+
242
+ }
243
+
244
+ if($inc==1 && ($c->getImage() == "no_selection" || $c->getImage()=="" || $c->getSmallImage() == "no_selection" || $c->getSmallImage() == "")) { //if there are no child pictures
245
+
246
+ $product = Mage::getModel('catalog/product')->load( $p->getId());
247
+ $inc = 1;
248
+ foreach ($product->getMediaGalleryImages() as $img) {
249
+ if( $helper->getImageDir() . $image !== $img->getUrl()) {
250
+ $inc++;
251
+ $xml .= $helper->tag($this->__('url_image')."_".$inc, $img->getUrl(), 1);
252
+ }
253
+ }
254
+
255
+
256
+ }
257
+ }
258
+ $xml .= $helper->tag($this->__('b_availability'), $stock, 1);
259
+ $xml .= $helper->tag($this->__('b_qty'), $qty);
260
+ $xml .= $helper->tag($this->__('b_delivery'), $shipping, 1);
261
+ $xml .= $helper->tag($this->__('b_shipping'), $helper->currency($beezup->getShippingAmount($c->getWeight(), $_tablerates)));
262
+ $xml .= $helper->tag($this->__('b_weight'), $helper->currency($c->getWeight()));
263
+ $xml .= $helper->tag($this->__('b_price'), $helper->currency($final_price*$_vat));
264
+ if ($price != $final_price) $xml .= $helper->tag($this->__('b_regular_price'), $helper->currency($price*$_vat));
265
+ $i = 1;
266
+ foreach ($categories as $v) $xml .= $helper->tag($this->__('b_category_%s', $i++), $v, 1);
267
+ foreach ($_attributes as $a) {
268
+ $value = $c->getResource()->getAttribute($a)->getFrontend()->getValue($c);
269
+ $xml .= $helper->tag($a, is_float($value) ? $helper->currency($value) : $value, is_float($value) ? 0 : 1);
270
+ }
271
+ $xml .= '</product>' . PHP_EOL;
272
+ }
273
 
274
+ $qty = $beezup->getQty($p->getId());
275
+ $stock = $beezup->getIsInStock($qty);
276
+ $shipping = $beezup->getDelivery($qty);
277
+ $price = $p->getPrice();
278
+ $final_price = $p->getFinalPrice();
279
+ if (($image = $p->getImage()) == "no_selection" || ($image = $p->getImage()) == "") // Si on ne trouve pas d'image avec getImage on r�cup�re la smallImage
280
+ $image = $p->getSmallImage();
281
+
282
+
283
+ // si c'est un �l�ment parent
284
  $xml .= '<product>';
285
+ $xml .= $helper->tag($this->__('b_unique_id'), $p->getId());
286
+ $xml .= $helper->tag($this->__('b_sku'), trim($p->getSku()), 1);
287
+
288
+ $xml .= $helper->tag($this->__('parent_or_child'), 'parent', 1);
289
+ $xml .= $helper->tag($this->__('parent_id'), '');
290
  $xml .= $helper->tag($this->__('variation-theme'), $varationTheme, 1);
291
+
292
  $xml .= $helper->tag($this->__('b_title'), trim($p->getName()), 1);
293
  $xml .= $helper->tag($this->__('b_description'), preg_replace("/(\r\n|\n|\r)/", ' ', strip_tags($p->getData($_description))), 1);
294
  $xml .= $helper->tag($this->__('b_product_url'), $p->getProductUrl(), 1);
295
+ $xml .= $helper->tag($this->__('url_image'), $helper->getImageDir() . $image, 1);
296
+ if($many_images == 1) {
297
+ $inc = 1;
298
+ //we get product object from catalog/product reason(beezup/products gets products from catalog/product_collection, didn't find the way to get image collection from there *will check)
299
+ //$product = Mage::getModel('catalog/product')->load( $p->getId());
300
+
301
+ foreach ($datos['media_gallery']['images'] as $img) {
302
+
303
+ if($img['disabled']==0 && $image !== $img['file']) {
304
+ $inc++;
305
+ $xml .= $helper->tag($this->__('url_image')."_".$inc, $helper->getImageDir() .$img['file'], 1);
 
 
 
 
306
 
307
+ }
 
 
 
 
 
308
  }
309
+
310
+ }
311
+
 
 
312
  $xml .= $helper->tag($this->__('b_availability'), $stock, 1);
313
  $xml .= $helper->tag($this->__('b_qty'), $qty);
314
  $xml .= $helper->tag($this->__('b_delivery'), $shipping, 1);
315
+ $xml .= $helper->tag($this->__('b_shipping'), $helper->currency($beezup->getShippingAmount($p->getWeight(), $_tablerates)));
316
+ $xml .= $helper->tag($this->__('b_weight'), $helper->currency($p->getWeight()));
317
  $xml .= $helper->tag($this->__('b_price'), $helper->currency($final_price*$_vat));
318
  if ($price != $final_price) $xml .= $helper->tag($this->__('b_regular_price'), $helper->currency($price*$_vat));
319
  $i = 1;
320
  foreach ($categories as $v) $xml .= $helper->tag($this->__('b_category_%s', $i++), $v, 1);
321
  foreach ($_attributes as $a) {
322
+ $value = $p->getResource()->getAttribute($a)->getFrontend()->getValue($p);
323
  $xml .= $helper->tag($a, is_float($value) ? $helper->currency($value) : $value, is_float($value) ? 0 : 1);
324
  }
325
+
326
  $xml .= '</product>' . PHP_EOL;
327
  }
328
+ }
329
+ }
330
+
331
+ $product_simple = $beezup->getProductsSimple();
332
+ $backendModelSimple = $product_simple->getResource()->getAttribute('media_gallery')->getBackend();
333
+ foreach ($product_simple as $p) {
334
+
335
+ $prodAttributeSet = Mage::getModel('eav/entity_attribute_set')->load($p->getAttributeSetId())->getAttributeSetName();
336
+
337
+ $categories = $beezup->getProductsCategories($p, $_categories, $cat_logic);
338
+
339
+ if (count($categories)) {
340
  $qty = $beezup->getQty($p->getId());
341
  $stock = $beezup->getIsInStock($qty);
342
  $shipping = $beezup->getDelivery($qty);
343
  $price = $p->getPrice();
344
  $final_price = $p->getFinalPrice();
345
  if (($image = $p->getImage()) == "no_selection" || ($image = $p->getImage()) == "") // Si on ne trouve pas d'image avec getImage on r�cup�re la smallImage
346
+ $image = $p->getSmallImage();
347
 
348
 
 
349
  $xml .= '<product>';
350
  $xml .= $helper->tag($this->__('b_unique_id'), $p->getId());
351
  $xml .= $helper->tag($this->__('b_sku'), trim($p->getSku()), 1);
352
+
353
+ $xml .= $helper->tag($this->__('parent_or_child'), 'simple', 1);
354
  $xml .= $helper->tag($this->__('parent_id'), '');
355
+ $xml .= $helper->tag($this->__('variation-theme'), '', 1);
356
+
357
  $xml .= $helper->tag($this->__('b_title'), trim($p->getName()), 1);
358
  $xml .= $helper->tag($this->__('b_description'), preg_replace("/(\r\n|\n|\r)/", ' ', strip_tags($p->getData($_description))), 1);
359
  $xml .= $helper->tag($this->__('b_product_url'), $p->getProductUrl(), 1);
360
+ $xml .= $helper->tag($this->__('url_image'), $helper->getImageDir() . $image, 1);
361
+ if($many_images == 1) {
362
+ $inc = 1;
363
+ //we get product object from catalog/product reason(beezup/products gets products from catalog/product_collection, didn't find the way to get image collection from there *will check)
364
+ //$product = Mage::getModel('catalog/product')->load( $p->getId());
365
+ $backendModelSimple->afterLoad($p); //adding media gallery to the product object
366
+ $datos = $p->getData();
367
+ foreach ($datos['media_gallery']['images'] as $img) {
368
+
369
+ if($img['disabled']==0 && $image !== $img['file']) {
370
+ $inc++;
371
+ $xml .= $helper->tag($this->__('url_image')."_".$inc, $helper->getImageDir() .$img['file'], 1);
372
+
373
+ }
374
+ }
375
+
376
+ }
377
+
378
  $xml .= $helper->tag($this->__('b_availability'), $stock, 1);
379
  $xml .= $helper->tag($this->__('b_qty'), $qty);
380
  $xml .= $helper->tag($this->__('b_delivery'), $shipping, 1);
388
  $value = $p->getResource()->getAttribute($a)->getFrontend()->getValue($p);
389
  $xml .= $helper->tag($a, is_float($value) ? $helper->currency($value) : $value, is_float($value) ? 0 : 1);
390
  }
391
+
392
  $xml .= '</product>' . PHP_EOL;
393
  }
394
+ //}
395
+ }
396
+ $xml .= $this->getAssociatedProducto(true);
397
+ $xml .= '</catalog>';
398
+
399
+ return $xml;
400
+ }
401
+
402
 
403
+ /**
404
+ Children permet de r�cup�rer tous les produits enfants
405
+ **/
406
+ public function getXmlChild()
407
+ {
408
+ /* Load Model and Helper */
409
+ $beezup = Mage::getModel('beezup/products');
410
+ $helper = Mage::helper('beezup');
411
+ $category_logic = $helper->getConfig('beezup/flux/category_logic');
412
+ /* Initially load the useful elements */
413
+ $many_images = $helper->getConfig('beezup/flux/images');
414
+ $_ht = $helper->getConfig('beezup/flux/ht');
415
+ $_description = $helper->getConfig('beezup/flux/description');
416
+ $_tablerates = $helper->getConfig('beezup/flux/tablerates_weight_destination') ? $beezup->getTablerates() : 0;
417
+ $cat_logic = false;
418
+ if($category_logic == 1) {
419
+ $_categories = $beezup->getCategoriesAsArray(Mage::helper('catalog/category')->getStoreCategories());
420
+ } else {
421
+ $cat_logic = true;
422
+ $categories = Mage::getModel('catalog/category')->getCollection()
423
+ ->addAttributeToSelect('*')//or you can just add some attributes
424
+ ->addAttributeToFilter('level', 2)
425
+ ->addAttributeToFilter('is_active', 1);
426
+ $_categories = $beezup->getCategoriesAsArray( $categories, true);
427
 
428
+ }
429
+ $_attributes = $helper->getConfig('beezup/flux/attributes') ? explode(',', $helper->getConfig('beezup/flux/attributes')) : array();
430
+ $_vat = ($_ht && is_numeric($helper->getConfig('beezup/flux/vat'))) ? (preg_replace('(\,+)', '.', $helper->getConfig('beezup/flux/vat')) / 100) + 1 : 1;
431
+ $_catalog_rules = $helper->getConfig('beezup/flux/catalog_rules');
432
+
433
+ /* Build file */
434
+ $xml = $helper->getConfig('beezup/flux/bom') ? "\xEF\xBB\xBF" : '';
435
+ $xml .= '<?xml version="1.0" encoding="utf-8"?>' . PHP_EOL . '<catalog>' . PHP_EOL;
436
+
437
+ $childs = $beezup->getConfigurableProducts(false);
438
+
439
+ foreach ($childs as $c) {
440
+
441
+ //r�cup�rer l'image sur le p�re
442
+ $productParentIds=Mage::getResourceSingleton('catalog/product_type_configurable')->getParentIdsByChild($c->getId());
443
+ foreach($productParentIds as $productParentId){
444
+ $productParent = Mage::getModel('catalog/product')->load($productParentId);
445
+ $image=$productParent->getImage();
446
+ $categories = $beezup->getProductsCategories($productParent, $_categories, $cat_logic );
447
+ $url = $productParent->getProductUrl();
448
+ $name = $productParent->getName();
449
+ $description = $productParent->getData($_description);
450
+ }
451
+
452
+ if(count($categories)){
453
+ $qty = $beezup->getQty($c->getId());
454
  $stock = $beezup->getIsInStock($qty);
455
  $shipping = $beezup->getDelivery($qty);
456
+ $price = $c->getPrice();
457
+ $final_price = $c->getFinalPrice();
458
+ $image = $this->fillImageUrl($productParent, $c);
 
459
 
 
460
  $xml .= '<product>';
461
+ $xml .= $helper->tag($this->__('b_unique_id'), $c->getId());
462
+ $xml .= $helper->tag($this->__('b_sku'), trim($c->getSku()), 1);
463
+
464
+ $xml .= $helper->tag($this->__('parent_or_child'), 'child', 1);
465
+ $xml .= $helper->tag($this->__('parent_id'), $c->getParentId());
466
+
467
+ $xml .= $helper->tag($this->__('b_title'), trim($name), 1);
468
+ $xml .= $helper->tag($this->__('b_description'), preg_replace("/(\r\n|\n|\r)/", ' ', strip_tags($description)), 1);
469
+ $xml .= $helper->tag($this->__('b_product_url'), $url, 1);
470
+
471
+ /*$inc = 0;
472
+ $product = Mage::getModel('catalog/product')->load( $c->getId());
473
+
474
+ foreach ($product->getMediaGalleryImages() as $image) {
475
+ $inc++;
476
+ if($inc==1) {
477
+ $xml .= $helper->tag($this->__('url_image'), $image->getUrl(), 1);
478
+ } else {
479
+ $xml .= $helper->tag($this->__('url_image')."_".$inc, $image->getUrl(), 1);
480
+ }
481
+ }*/
482
+ $xml .= $helper->tag($this->__('url_image'), $helper->getImageDir() . $image, 1); //r�cup�re l'image sur le p�re
483
+
484
+ if($many_images == 1) {
485
+ $product = Mage::getModel('catalog/product')->load( $c->getId());
486
+ $inc = 1;
487
+ foreach ($product->getMediaGalleryImages() as $img) {
488
+ if($helper->getImageDir() . $image!== $img->getUrl()) {
489
+ $inc++;
490
+ $xml .= $helper->tag($this->__('url_image')."_".$inc, $img->getUrl(), 1);
491
+ }
492
+ }
493
+
494
+
495
+
496
+ }
497
+
498
  $xml .= $helper->tag($this->__('b_availability'), $stock, 1);
499
  $xml .= $helper->tag($this->__('b_qty'), $qty);
500
  $xml .= $helper->tag($this->__('b_delivery'), $shipping, 1);
501
+ $xml .= $helper->tag($this->__('b_shipping'), $helper->currency($beezup->getShippingAmount($c->getWeight(), $_tablerates)));
502
+ $xml .= $helper->tag($this->__('b_weight'), $helper->currency($c->getWeight()));
503
  $xml .= $helper->tag($this->__('b_price'), $helper->currency($final_price*$_vat));
504
  if ($price != $final_price) $xml .= $helper->tag($this->__('b_regular_price'), $helper->currency($price*$_vat));
505
  $i = 1;
506
  foreach ($categories as $v) $xml .= $helper->tag($this->__('b_category_%s', $i++), $v, 1);
507
  foreach ($_attributes as $a) {
508
+ $value = $c->getResource()->getAttribute($a)->getFrontend()->getValue($c);
509
  $xml .= $helper->tag($a, is_float($value) ? $helper->currency($value) : $value, is_float($value) ? 0 : 1);
510
  }
511
+
512
  $xml .= '</product>' . PHP_EOL;
513
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
514
  }
515
 
516
+ $xml .= '</catalog>';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
517
 
518
+ return $xml;
519
+ }
520
+
521
+ /**
522
+ Produit groupes
523
+ **/
524
+
525
+ public function getAssociatedProducto($configurable)
526
+ {
527
+
528
+ /* Load Model and Helper */
529
+ $beezup = Mage::getModel('beezup/products');
530
+ $helper = Mage::helper('beezup');
531
+ $category_logic = $helper->getConfig('beezup/flux/category_logic');
532
+ /* Initially load the useful elements */
533
+ $many_images = $helper->getConfig('beezup/flux/images');
534
+ $_ht = $helper->getConfig('beezup/flux/ht');
535
+ $_description = $helper->getConfig('beezup/flux/description');
536
+ $_tablerates = $helper->getConfig('beezup/flux/tablerates_weight_destination') ? $beezup->getTablerates() : 0;
537
+ $cat_logic = false;
538
+ if($category_logic == 1) {
539
+ $_categories = $beezup->getCategoriesAsArray(Mage::helper('catalog/category')->getStoreCategories());
540
+ } else {
541
+ $cat_logic = true;
542
+ $categories = Mage::getModel('catalog/category')->getCollection()
543
+ ->addAttributeToSelect('*')//or you can just add some attributes
544
+ ->addAttributeToFilter('level', 2)
545
+ ->addAttributeToFilter('is_active', 1);
546
+ $_categories = $beezup->getCategoriesAsArray( $categories, true);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
547
 
548
+ }
549
+ $_vat = ($_ht && is_numeric($helper->getConfig('beezup/flux/vat'))) ? (preg_replace('(\,+)', '.', $helper->getConfig('beezup/flux/vat')) / 100) + 1 : 1;
550
+ $_attributes = $helper->getConfig('beezup/flux/attributes') ? explode(',', $helper->getConfig('beezup/flux/attributes')) : array();
551
+ $_catalog_rules = $helper->getConfig('beezup/flux/catalog_rules');
552
+
553
+ $products = $beezup->getGroupedProduct();
554
+
555
+ $buf = $helper->getConfig('beezup/flux/bom') ? "\xEF\xBB\xBF" : '';
556
+ foreach ($products as $product) {
557
+ $associatedProducts = $product->getTypeInstance(true)->getAssociatedProducts($product);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
558
 
559
+ $parentCategories = $beezup->getProductsCategories($product, $_categories, $cat_logic);
560
+ $parentDesc = $product->getData($_description);
561
+ $parentId = $product->getId();
562
+ $parentImage = $product->getImage();
563
+ $parentUrl = $product->getProductUrl();
564
 
565
+ foreach ($associatedProducts as $g) {
566
+ $qty = $beezup->getQty($g->getId());
567
+ $stock = $beezup->getIsInStock($qty);
568
+ $shipping = $beezup->getDelivery($qty);
569
+ $price = $g->getPrice();
570
+ $final_price = $g->getFinalPrice();
571
+
572
+ $image = $this->fillImageUrl($product, $g);
573
+
574
+
575
+ //if (($image = $g->getImage()) == "no_selection" || ($image = $g->getImage()) == "") // Si on ne trouve pas d'image avec getImage on r�cup�re la smallImage
576
+ // $image = $g->getSmallImage();
577
+
578
+
579
+ //DBG
580
  if (0)
581
  {
582
+ echo "----------------------------" ."<br/>";
583
+ echo "Name : " .$g->getName() ."<br/>";
584
+ echo "Description : ".$parentDesc ."<br/>";
585
+ echo "Id : " .$g->getId() ."<br/>";
586
+ echo "Parent Id : " .$parentId ."<br/>";
587
+ echo "Url : " .$parentUrl ."<br/>";
588
+ echo "Image : " .$helper->getImageDir().$image ."<br/>";
589
+
590
+
591
+ echo "SKU : " .$g->getSku() ."<br/>";
592
+ echo "Quantity : " .$qty ."<br/>";
593
+ echo "Stock : " .$stock ."<br/>";
594
  echo "Shipping : " .$shipping ."<br/>";
595
  echo "price : " .$price ."<br/>";
596
  echo "finalprice : ".$final_price ."<br/>";
597
  echo "weight : " .$g->getWeight() ."<br/>";
598
+
599
  $i = 1;
600
  foreach ($parentCategories as $v)
601
+ echo "Cat�gorie ".$i." : ".$v."<br/>";
602
  }
603
+
604
+
605
+ $buf .= "<product>";
606
+ $buf .= $helper->tag($this->__('b_unique_id'), $g->getId());
607
+ $buf .= $helper->tag($this->__('b_sku'), trim($g->getSku()), 1);
608
+ if ($configurable){
609
+ $buf .= $helper->tag($this->__('parent_or_child'), 'grouped_child', 1);
610
+ $buf .= $helper->tag($this->__('parent_id'), $parentId);
611
+ }
612
+ $buf .= $helper->tag($this->__('b_title'), $g->getName()/*trim($name)*/, 1);
613
+ $buf .= $helper->tag($this->__('b_description'), preg_replace("/(\r\n|\n|\r)/", ' ', strip_tags($parentDesc)), 1);
614
+ $buf .= $helper->tag($this->__('b_product_url'), $parentUrl, 1);
615
+
616
+ /*
617
+ if($many_images==1) {
618
+
619
+ $gprod = Mage::getModel('catalog/product')->load( $g->getId());
620
  $inc = 0;
621
+ foreach ($gprod->getMediaGalleryImages() as $image) {
622
+ $inc++;
623
+ if($inc==1) {
624
+ $buf .= $helper->tag($this->__('url_image'), $image->getUrl(), 1);
625
+ } else {
626
+ $buf .= $helper->tag($this->__('url_image')."_".$inc, $image->getUrl(), 1);
627
+ }
628
+ }
629
+ } else {
630
 
631
  $buf .= $helper->tag($this->__('url_image'), $helper->getImageDir() . $image, 1);
632
+ }*/
633
+
634
+ $buf .= $helper->tag($this->__('b_product_image'), $helper->getImageDir() . $image, 1); //r�cup�re l'image sur le p�re
635
+ $buf .= $helper->tag($this->__('b_availability'), $stock, 1);
636
+ $buf .= $helper->tag($this->__('b_qty'), $qty);
637
+ $buf .= $helper->tag($this->__('b_delivery'), $shipping, 1);
638
+ $buf .= $helper->tag($this->__('b_shipping'), $helper->currency($beezup->getShippingAmount($g->getWeight(), $_tablerates)));
639
+ $buf .= $helper->tag($this->__('b_weight'), $helper->currency($g->getWeight()));
640
+ $buf .= $helper->tag($this->__('b_price'), $helper->currency($final_price * $_vat));
641
+ if ($price != $final_price) $buf .= $helper->tag($this->__('b_regular_price'), $helper->currency($price*$_vat));
642
+ $i = 1;
643
+ foreach ($parentCategories as $v) $buf .= $helper->tag($this->__('b_category_%s', $i++), $v, 1);
644
+ foreach ($_attributes as $a) {
645
+ $value = $g->getResource()->getAttribute($a)->getFrontend()->getValue($g);
646
+ $buf .= $helper->tag($a, is_float($value) ? $helper->currency($value) : $value, is_float($value) ? 0 : 1);
647
+ }
648
+ $buf .= "</product>".PHP_EOL;
649
  }
650
+ }
651
+ return $buf;
652
+ }
653
+
654
+
655
+ protected function fillImageUrl($p, $c)
 
 
 
 
 
656
  {
657
+ $image = $c->getImage();
658
+ if ($image == "no_selection" || $image == "") // Si on ne trouve pas d'image avec getImage on r�cup�re la smallImage
659
+ {
660
+ $image = $c->getSmallImage();
661
+ if ($image == "no_selection" || $image == "")
662
  {
663
  $image = $p->getImage();
664
  if ($image == "no_selection" || $image == "")
665
+ $image = $p->getSmallImage();
666
  }
667
+ }
668
+ return ($image);
669
  }
670
+
671
+ protected function createFile($type, $xmlData)
 
 
 
 
 
672
  {
673
+ $fp = fopen('beezup/tmp/'.$type, 'w');
674
+ if ($fp == false)
675
+ {
676
+ echo 'Fail to create file';
677
+ }
678
  fwrite($fp, $xmlData);
679
+ fclose($fp);
680
+ }
681
+
682
+ protected function deleteFeed($type)
683
+ {
684
+ unlink('beezup/tmp/'.$type);
685
+ }
 
 
 
 
686
 
687
+ protected function needRefreshing($type)
688
+ {
689
+ $helper = Mage::helper('beezup');
690
+
691
+ $delay = $helper->getConfig('beezup/flux/cachedelay') * 60;
692
+ $nowtime = time();
693
+ $fileTime = filemtime('beezup/tmp/'.$type);
694
+ if (($nowtime - $fileTime) >= $delay)
695
  return (true);
696
+ else
697
  return (false);
698
+ }
699
+
700
+ protected function createFolder()
701
+ {
702
+ $helper = Mage::helper('beezup');
703
+ if (!$helper->getConfig('beezup/flux/cachedelay')) // Si option cache desactiv�e, pas besoin du dossier
704
  return (true);
705
+ if (file_exists('beezup/tmp')) // Si le dossier existe deja, pas besoin de le recr�er
706
+ return (true);
707
+ if (!mkdir('beezup/tmp', 0777, true))
708
+ {
709
+ echo "[ERROR] : Seems we can't create 'beezup' directory inside your root directory."."<br/>"
710
+ ."You can try one of these solutions :"."<br/>"
711
+ ."1 - Create by yourself the beezup/tmp inside your root directory with 777 permissions"."<br/>"
712
+ ."2 - Change the permissions on your root directory (777)"."<br/>"
713
+ ."3 - Change the 'cache delay' option to 'None' inside beezup plugin settings"."<br/>";
714
+ return (false);
715
+ }
716
  return (true);
 
 
 
 
 
 
 
 
717
  }
718
+
719
+
720
+
721
+ /**
722
+ C'est ici que tout commence ...
723
+ **/
724
+
725
+ protected function _toHtml()
726
+ {
727
+ set_time_limit(0);
728
+ $helper = Mage::helper('beezup');
729
+ $this->setCacheLifetime(null);
 
 
730
  //dbg
731
  /*
732
+ $this->getAssociatedProducto(true);
733
+ return;*/
734
+
735
  if (!$this->createFolder()) // Si on rencontre des probl�mes de cr�ation de dossier on retourne rien
736
+ return;
737
  if ($this->getConfigurable()){ // Appel de l'url http://site.com/beezup/catalog/configurable
738
+ if ($this->needRefreshing('configurable')){
739
+ if (file_exists('beezup/tmp/configurable'))
740
+ $this->deleteFeed('configurable');
741
+ $xmlData = $this->getXmlConfigurable();
742
+ $this->addText($xmlData);
743
+ if ($helper->getConfig('beezup/flux/cachedelay') != 0)
744
+ $this->createFile('configurable', $xmlData);
745
+ }
746
+ else
747
+ echo file_get_contents('beezup/tmp/configurable');
748
  }
749
  else if ($this->getChildXML()){ // Appel de l'url http://site.com/beezup/catalog/child
750
+ if ($this->needRefreshing('child')){
751
+ if (file_exists('beezup/tmp/child'))
752
+ $this->deleteFeed('child');
753
+ $xmlData = $this->getXmlChild();
754
+ $this->addText($xmlData);
755
+ if ($helper->getConfig('beezup/flux/cachedelay') != 0)
756
+ $this->createFile('child', $xmlData);
757
+ }
758
+ else
759
+ echo file_get_contents('beezup/tmp/child');
760
  }
761
  else { // Appel de l'url http://site.com/beezup/catalog/xml
762
+ if ($this->needRefreshing('xml')){
763
+ if (file_exists('beezup/tmp/xml'))
764
+ $this->deleteFeed('xml');
765
+ $xmlData = $this->getXml();
766
+ $this->addText($xmlData);
767
+ if ($helper->getConfig('beezup/flux/cachedelay') != 0)
768
+ $this->createFile('xml', $xmlData);
769
+ }
770
+ else
771
+ echo file_get_contents('beezup/tmp/xml');
772
  }
773
  return parent::_toHtml();
774
+ }
775
+ }
776
+
app/code/community/BeezUp/Model/Products.php CHANGED
@@ -1,17 +1,17 @@
1
  <?php
2
-
3
- class BeezUp_Model_Products extends Mage_Core_Model_Abstract
4
- {
5
-
6
- /*
7
- * Retrieve products collection
8
- *
9
- * @param bool $configurable
10
- * @return Mage_Catalog_Model_Resource_Product_Collection?
11
- */
12
- public function getProducts($configurable = false)
13
- {
14
- $products = Mage::getResourceModel('catalog/product_collection')
15
  ->addAttributeToFilter('status', 1)
16
  ->addAttributeToFilter('visibility', array('in' => array(Mage_Catalog_Model_Product_Visibility::VISIBILITY_IN_CATALOG, Mage_Catalog_Model_Product_Visibility::VISIBILITY_BOTH)))
17
  ->addAttributeToFilter('price', array('neq' => 0))
@@ -25,39 +25,39 @@ class BeezUp_Model_Products extends Mage_Core_Model_Abstract
25
  ->addAttributeToSelect('image')
26
  ->addAttributeToSelect(Mage::getStoreConfig('beezup/flux/description'))
27
  ->addStoreFilter();
28
- /* $products = Mage::getModel('catalog/product')
29
  ->getCollection();
 
 
 
30
 
31
- */
32
- if($configurable) $products->addAttributeToFilter('type_id', Mage_Catalog_Model_Product_Type::TYPE_CONFIGURABLE);
33
-
34
- if(Mage::getStoreConfig('beezup/flux/stock')){
35
- $products= $products->joinField('inventory_in_stock', 'cataloginventory_stock_item', 'is_in_stock', 'product_id=entity_id','is_in_stock>=0', 'left')
36
- ->addAttributeToFilter('inventory_in_stock', array('neq' => 0));
 
 
 
 
 
37
  }
38
 
39
- $attributes = explode(',', Mage::getStoreConfig('beezup/flux/attributes'));
40
- foreach ($attributes as $a) $products->addAttributeToSelect($a);
41
-
42
- if (Mage::getStoreConfig('beezup/flux/debug_flux')) $products->setPageSize(10);
43
-
44
- return $products;
45
- }
46
-
47
- public function getGroupedProduct()
48
- {
49
- $products = Mage::getModel('catalog/product')
50
  ->getCollection()
51
  ->addAttributeToSelect(Mage::getStoreConfig('beezup/flux/description'))
52
  ->addAttributeToFilter('type_id', array('eq' => 'grouped'));
53
-
54
-
55
- return $products;
56
- }
57
-
58
- public function getProductsSimple()
59
- {
60
- $products = Mage::getResourceModel('catalog/product_collection')
61
  ->addAttributeToFilter('status', 1)
62
  ->addAttributeToFilter('visibility', array('in' => array(Mage_Catalog_Model_Product_Visibility::VISIBILITY_IN_CATALOG, Mage_Catalog_Model_Product_Visibility::VISIBILITY_BOTH)))
63
  ->addAttributeToFilter('price', array('neq' => 0))
@@ -72,28 +72,28 @@ class BeezUp_Model_Products extends Mage_Core_Model_Abstract
72
  ->addAttributeToSelect(Mage::getStoreConfig('beezup/flux/description'))
73
  ->addStoreFilter();
74
 
75
- $products->addAttributeToFilter('type_id', Mage_Catalog_Model_Product_Type::TYPE_SIMPLE);
76
-
77
- if(Mage::getStoreConfig('beezup/flux/stock')){
78
- $products= $products->joinField('inventory_in_stock', 'cataloginventory_stock_item', 'is_in_stock', 'product_id=entity_id','is_in_stock>=0', 'left')
79
- ->addAttributeToFilter('inventory_in_stock', array('neq' => 0));
 
 
 
 
 
 
 
 
80
  }
81
-
82
- $attributes = explode(',', Mage::getStoreConfig('beezup/flux/attributes'));
83
- foreach ($attributes as $a) $products->addAttributeToSelect($a);
84
-
85
- if (Mage::getStoreConfig('beezup/flux/debug_flux')) $products->setPageSize(10);
86
-
87
- return $products;
88
- }
89
-
90
- /*
91
- * Retrieve configurable products collection
92
- *
93
- * @return Mage_Catalog_Model_Resource_Product_Collection?
94
- */
95
- public function getConfigurableProducts($config = true) {
96
- $products = Mage::getResourceModel('catalog/product_type_configurable_product_collection')
97
  ->addAttributeToFilter('status', 1)
98
  ->addAttributeToFilter('price', array('neq' => 0))
99
  ->addAttributeToSelect('name')
@@ -107,186 +107,256 @@ class BeezUp_Model_Products extends Mage_Core_Model_Abstract
107
  ->addAttributeToSelect(Mage::getStoreConfig('beezup/flux/description'))
108
  ->addStoreFilter();
109
 
110
- if(Mage::getStoreConfig('beezup/flux/stock')){
111
- $products= $products->joinField('inventory_in_stock', 'cataloginventory_stock_item', 'is_in_stock', 'product_id=entity_id','is_in_stock>=0', 'left')
112
- ->addAttributeToFilter('inventory_in_stock', array('neq' => 0));
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
113
  }
114
-
115
- $attributes = explode(',', Mage::getStoreConfig('beezup/flux/attributes'));
116
- foreach ($attributes as $a) $products->addAttributeToSelect($a);
117
-
118
- $productsArray = $products;
119
 
120
- //si on est dans le cas o� on veut les p�res et les fils
121
- if($config){
122
- $productsArray = array();
123
-
124
- foreach($products as $p) {
125
- $productsArray[$p->getParentId()][] = $p;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
126
  }
127
  }
128
-
129
- return $productsArray;
130
- }
131
-
132
- /*
133
- * Collect options applicable to the configurable product for Varation Theme
134
- *
135
- * @param Mage_Catalog_Model_Product $product
136
- * @return String
137
- */
138
-
139
- public function getOptions($product) {
140
- $childs = $this->getConfigurableProducts();
141
-
142
- //si c'est un parent
143
- if(isset($childs[$product->getId()])) {
144
- $productAttributeOptions = $product->getTypeInstance(true)->getConfigurableAttributesAsArray($product);
145
-
146
- $attributeOptions = array();
147
-
148
- foreach ($productAttributeOptions as $productAttribute) {
149
- $attributeOptions[] = ucfirst($productAttribute['attribute_code']);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
150
  }
151
-
152
- return implode('',$attributeOptions);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
153
  }
154
- }
155
-
156
- /*
157
- * Retrieve products stock
158
- *
159
- * @param int $id
160
- * @param int $qty
161
- * @return int
162
- */
163
- public function getQty($productId, $qty = 0)
164
- {
165
- $stockItem = Mage::getModel('cataloginventory/stock_item')->loadByProduct($productId);
166
- if ($stockItem->getManageStock()) {
167
- if ($stockItem->getIsInStock()) {
168
- $qty = intval($stockItem->getQty());
169
- $qty = ($qty <= 0) ? 0 : $qty;
170
- }
171
- } else {
172
- $qty = 100;
173
- }
174
- return $qty;
175
- }
176
-
177
- /*
178
- * Retrieve product shipping amount
179
- *
180
- * @param float $weight
181
- * @param Mage_Shipping_Model_Mysql4_Carrier_Tablerate_Collection $tablerates
182
- * @return float
183
- */
184
- public function getShippingAmount($weight, $tablerates)
185
- {
186
- $shipping_amount = 0;
187
-
188
- if ($tablerates && $tablerates instanceof Mage_Shipping_Model_Mysql4_Carrier_Tablerate_Collection) {
189
- foreach ($tablerates as $t) {
190
- if ($weight <= $t->getConditionValue()) $shipping_amount = $t->getPrice();
191
- }
192
- } else {
193
- $shipping_amount = preg_replace('(\,+)', '.', trim(Mage::getStoreConfig('beezup/flux/ship')));
194
- if (!is_numeric($shipping_amount)) $shipping_amount = 0;
195
- }
196
- return $shipping_amount;
197
- }
198
-
199
- /*
200
- * Retrieve Tablerates
201
- *
202
- * @return Mage_Shipping_Model_Mysql4_Carrier_Tablerate_Collection
203
- */
204
- public function getTablerates()
205
- {
206
- return Mage::getResourceModel('shipping/carrier_tablerate_collection')->setOrder('condition_value', 'desc');
207
- }
208
-
209
- /*
210
- * Retrieve product is in stock
211
- *
212
- * @param float $qty
213
- * @return string
214
- */
215
- public function getIsInStock($qty)
216
- {
217
- return ($qty > 0) ? Mage::helper('beezup')->__('In Stock') : Mage::helper('beezup')->__('Out of Stock');
218
- }
219
-
220
- /*
221
- * Retrieve product delivery
222
- *
223
- * @param float $qty
224
- * @return string
225
- */
226
- public function getDelivery($qty)
227
- {
228
- return ($qty > 0) ? Mage::getStoreConfig('beezup/flux/days_in') : Mage::getStoreConfig('beezup/flux/days_out');
229
- }
230
-
231
- /*
232
- * Retrieve store categories as array (recursive)
233
- *
234
- * @param Varien_Data_Tree_Node_Collection $categories
235
- * @param string $parent
236
- * @param array $cats
237
- * @return string
238
- */
239
- public function getCategoriesAsArray($categories, $parent = '', &$cats = array())
240
- {
241
- foreach ($categories as $c) {
242
- $cats[$c['entity_id']] = $parent . $c['name'];
243
-
244
- if (!Mage::helper('catalog/category_flat')->isEnabled()) {
245
- if ($childs = $c->getChildren()) {
246
- $this->getCategoriesAsArray($childs, $parent . $c['name'] . '||', $cats);
247
- }
248
- } else {
249
- if (isset($c['children_nodes'])) {
250
- $this->getCategoriesAsArray($c['children_nodes'], $parent . $c['name'] . '||', $cats);
251
- }
252
- }
253
- }
254
- return $cats;
255
- }
256
-
257
- /*
258
- * Retrieve product categories
259
- *
260
- * @param Mage_Catalog_Model_Product $product
261
- * @param array $categories
262
- * @return array
263
- */
264
- public function getProductsCategories($product,$categories)
265
- {
266
- $_categories = $product->getCategoryIds();
267
 
268
- sort($_categories);
269
- $result = array();
270
- if(count($_categories)) {
271
- $_count = 0;
272
- foreach($_categories as $c) {
273
- if(isset($categories[$c])) {
274
- if(count(explode('||',$categories[$c])) > $_count) $result = explode('||',$categories[$c]);
275
- $_count = count($result);
276
- }
277
- }
278
- }
279
- return $result;
280
- }
281
-
282
- /*
283
- * Retrieve current store
284
- *
285
- * @return Mage_Core_Model_Store
286
- */
287
- public function getStore()
288
- {
289
- return Mage::app()->getStore();
290
- }
291
-
292
- }
1
  <?php
2
+
3
+ class BeezUp_Model_Products extends Mage_Core_Model_Abstract
4
+ {
5
+
6
+ /*
7
+ * Retrieve products collection
8
+ *
9
+ * @param bool $configurable
10
+ * @return Mage_Catalog_Model_Resource_Product_Collection?
11
+ */
12
+ public function getProducts($configurable = false)
13
+ {
14
+ $products = Mage::getResourceModel('catalog/product_collection')
15
  ->addAttributeToFilter('status', 1)
16
  ->addAttributeToFilter('visibility', array('in' => array(Mage_Catalog_Model_Product_Visibility::VISIBILITY_IN_CATALOG, Mage_Catalog_Model_Product_Visibility::VISIBILITY_BOTH)))
17
  ->addAttributeToFilter('price', array('neq' => 0))
25
  ->addAttributeToSelect('image')
26
  ->addAttributeToSelect(Mage::getStoreConfig('beezup/flux/description'))
27
  ->addStoreFilter();
28
+ /* $products = Mage::getModel('catalog/product')
29
  ->getCollection();
30
+
31
+ */
32
+ if($configurable) $products->addAttributeToFilter('type_id', Mage_Catalog_Model_Product_Type::TYPE_CONFIGURABLE);
33
 
34
+ if(Mage::getStoreConfig('beezup/flux/stock')){
35
+ $products= $products->joinField('inventory_in_stock', 'cataloginventory_stock_item', 'is_in_stock', 'product_id=entity_id','is_in_stock>=0', 'left')
36
+ ->addAttributeToFilter('inventory_in_stock', array('neq' => 0));
37
+ }
38
+
39
+ $attributes = explode(',', Mage::getStoreConfig('beezup/flux/attributes'));
40
+ foreach ($attributes as $a) $products->addAttributeToSelect($a);
41
+
42
+ if (Mage::getStoreConfig('beezup/flux/debug_flux')) $products->setPageSize(10);
43
+
44
+ return $products;
45
  }
46
 
47
+ public function getGroupedProduct()
48
+ {
49
+ $products = Mage::getModel('catalog/product')
 
 
 
 
 
 
 
 
50
  ->getCollection()
51
  ->addAttributeToSelect(Mage::getStoreConfig('beezup/flux/description'))
52
  ->addAttributeToFilter('type_id', array('eq' => 'grouped'));
53
+
54
+
55
+ return $products;
56
+ }
57
+
58
+ public function getProductsSimple()
59
+ {
60
+ $products = Mage::getResourceModel('catalog/product_collection')
61
  ->addAttributeToFilter('status', 1)
62
  ->addAttributeToFilter('visibility', array('in' => array(Mage_Catalog_Model_Product_Visibility::VISIBILITY_IN_CATALOG, Mage_Catalog_Model_Product_Visibility::VISIBILITY_BOTH)))
63
  ->addAttributeToFilter('price', array('neq' => 0))
72
  ->addAttributeToSelect(Mage::getStoreConfig('beezup/flux/description'))
73
  ->addStoreFilter();
74
 
75
+ $products->addAttributeToFilter('type_id', Mage_Catalog_Model_Product_Type::TYPE_SIMPLE);
76
+
77
+ if(Mage::getStoreConfig('beezup/flux/stock')){
78
+ $products= $products->joinField('inventory_in_stock', 'cataloginventory_stock_item', 'is_in_stock', 'product_id=entity_id','is_in_stock>=0', 'left')
79
+ ->addAttributeToFilter('inventory_in_stock', array('neq' => 0));
80
+ }
81
+
82
+ $attributes = explode(',', Mage::getStoreConfig('beezup/flux/attributes'));
83
+ foreach ($attributes as $a) $products->addAttributeToSelect($a);
84
+
85
+ if (Mage::getStoreConfig('beezup/flux/debug_flux')) $products->setPageSize(10);
86
+
87
+ return $products;
88
  }
89
+
90
+ /*
91
+ * Retrieve configurable products collection
92
+ *
93
+ * @return Mage_Catalog_Model_Resource_Product_Collection?
94
+ */
95
+ public function getConfigurableProducts($config = true) {
96
+ $products = Mage::getResourceModel('catalog/product_type_configurable_product_collection')
 
 
 
 
 
 
 
 
97
  ->addAttributeToFilter('status', 1)
98
  ->addAttributeToFilter('price', array('neq' => 0))
99
  ->addAttributeToSelect('name')
107
  ->addAttributeToSelect(Mage::getStoreConfig('beezup/flux/description'))
108
  ->addStoreFilter();
109
 
110
+ if(Mage::getStoreConfig('beezup/flux/stock')){
111
+ $products= $products->joinField('inventory_in_stock', 'cataloginventory_stock_item', 'is_in_stock', 'product_id=entity_id','is_in_stock>=0', 'left')
112
+ ->addAttributeToFilter('inventory_in_stock', array('neq' => 0));
113
+ }
114
+
115
+ $attributes = explode(',', Mage::getStoreConfig('beezup/flux/attributes'));
116
+ foreach ($attributes as $a) $products->addAttributeToSelect($a);
117
+
118
+ $productsArray = $products;
119
+
120
+ //si on est dans le cas o� on veut les p�res et les fils
121
+ if($config){
122
+ $productsArray = array();
123
+
124
+ foreach($products as $p) {
125
+ $productsArray[$p->getParentId()][] = $p;
126
+ }
127
+ }
128
+
129
+ return $productsArray;
130
  }
 
 
 
 
 
131
 
132
+ /*
133
+ * Collect options applicable to the configurable product for Varation Theme
134
+ *
135
+ * @param Mage_Catalog_Model_Product $product
136
+ * @return String
137
+ */
138
+
139
+ public function getOptions($product) {
140
+ $childs = $this->getConfigurableProducts();
141
+
142
+ //si c'est un parent
143
+ if(isset($childs[$product->getId()])) {
144
+ $productAttributeOptions = $product->getTypeInstance(true)->getConfigurableAttributesAsArray($product);
145
+
146
+ $attributeOptions = array();
147
+
148
+ foreach ($productAttributeOptions as $productAttribute) {
149
+ $attributeOptions[] = ucfirst($productAttribute['attribute_code']);
150
+ }
151
+
152
+ return implode('',$attributeOptions);
153
  }
154
  }
155
+
156
+ /*
157
+ * Retrieve products stock
158
+ *
159
+ * @param int $id
160
+ * @param int $qty
161
+ * @return int
162
+ */
163
+ public function getQty($productId, $qty = 0)
164
+ {
165
+ $stockItem = Mage::getModel('cataloginventory/stock_item')->loadByProduct($productId);
166
+ if ($stockItem->getManageStock()) {
167
+ if ($stockItem->getIsInStock()) {
168
+ $qty = intval($stockItem->getQty());
169
+ $qty = ($qty <= 0) ? 0 : $qty;
170
+ }
171
+ } else {
172
+ $qty = 100;
173
+ }
174
+ return $qty;
175
+ }
176
+
177
+ /*
178
+ * Retrieve product shipping amount
179
+ *
180
+ * @param float $weight
181
+ * @param Mage_Shipping_Model_Mysql4_Carrier_Tablerate_Collection $tablerates
182
+ * @return float
183
+ */
184
+ public function getShippingAmount($weight, $tablerates)
185
+ {
186
+ $shipping_amount = 0;
187
+
188
+ if ($tablerates && $tablerates instanceof Mage_Shipping_Model_Mysql4_Carrier_Tablerate_Collection) {
189
+ foreach ($tablerates as $t) {
190
+ if ($weight <= $t->getConditionValue()) $shipping_amount = $t->getPrice();
191
+ }
192
+ } else {
193
+ $shipping_amount = preg_replace('(\,+)', '.', trim(Mage::getStoreConfig('beezup/flux/ship')));
194
+ if (!is_numeric($shipping_amount)) $shipping_amount = 0;
195
+ }
196
+ return $shipping_amount;
197
+ }
198
+
199
+ /*
200
+ * Retrieve Tablerates
201
+ *
202
+ * @return Mage_Shipping_Model_Mysql4_Carrier_Tablerate_Collection
203
+ */
204
+ public function getTablerates()
205
+ {
206
+ return Mage::getResourceModel('shipping/carrier_tablerate_collection')->setOrder('condition_value', 'desc');
207
+ }
208
+
209
+ /*
210
+ * Retrieve product is in stock
211
+ *
212
+ * @param float $qty
213
+ * @return string
214
+ */
215
+ public function getIsInStock($qty)
216
+ {
217
+ return ($qty > 0) ? Mage::helper('beezup')->__('In Stock') : Mage::helper('beezup')->__('Out of Stock');
218
+ }
219
+
220
+ /*
221
+ * Retrieve product delivery
222
+ *
223
+ * @param float $qty
224
+ * @return string
225
+ */
226
+ public function getDelivery($qty)
227
+ {
228
+ return ($qty > 0) ? Mage::getStoreConfig('beezup/flux/days_in') : Mage::getStoreConfig('beezup/flux/days_out');
229
+ }
230
+
231
+ /*
232
+ * Retrieve store categories as array (recursive)
233
+ *
234
+ * @param Varien_Data_Tree_Node_Collection $categories
235
+ * @param string $parent
236
+ * @param array $cats
237
+ * @return string
238
+ */
239
+ public function getCategoriesAsArray($categories, $logic = false, $parent = '', &$cats = array())
240
+ {
241
+ if($logic) {
242
+ $parent = 0;
243
+ $i = 0;
244
+ $tl_name = '';
245
+ $_categories = $categories;
246
+ foreach($_categories as $_category){
247
+
248
+ if($i==0 ) {
249
+ $par_cat = Mage::getModel('catalog/category')->load($_category->getId())->getParentCategory();
250
+
251
+ $cats[$par_cat->getId()] = array("name" => $tl_name.$par_cat->getName(), "id" => $par_cat->getId(), "parent" => $par_cat->getParentId());
252
+ }
253
+
254
+
255
+ //$_category = Mage::getModel('catalog/category')->load($_category->getId());
256
+ $cats[$_category->getId()] = array("name" => $tl_name.$_category->getName(), "id" => $_category->getId(), "parent" => $_category->getParentId() ); //Toplevel auslesen
257
+ $i++;
258
+ $_category = Mage::getModel('catalog/category')->load($_category->getId());
259
+ $subcats = $this->getChildCategories($_category);
260
+
261
+ foreach($subcats as $c) {
262
+
263
+ $cats[$c['id']] = array("name" => $tl_name.$c['name'], "id" => $c['id'] , "parent" => $c['parent']);
264
+ }
265
+ }
266
+ return $cats;
267
+
268
+ } else {
269
+ foreach ($categories as $c) {
270
+ $cats[$c['entity_id']] = $parent . $c['name'];
271
+
272
+ if (!Mage::helper('catalog/category_flat')->isEnabled()) {
273
+ if ($childs = $c->getChildren()) {
274
+ $this->getCategoriesAsArray($childs, $logic, $parent . $c['name'] . '||', $cats);
275
+ }
276
+ } else {
277
+ if (isset($c['children_nodes'])) {
278
+ $this->getCategoriesAsArray($c['children_nodes'], $logic, $parent . $c['name'] . '||', $cats);
279
+ }
280
+ }
281
+ }
282
  }
283
+ return $cats;
284
+ }
285
+
286
+
287
+ public $_catIds = array();
288
+ public function getChildCategories($categoryObject){
289
+ $categories = $categoryObject->getChildrenCategories();
290
+ foreach ($categories as $catgory){
291
+ if($catgory->hasChildren()){
292
+ $this->getChildCategories($catgory);
293
+ }
294
+ $this->_catIds[] = array("id" => $catgory->getId(), "name" => $catgory->getName(), "parent" => $catgory->getParentId());
295
+ }
296
+ return $this->_catIds;
297
+ }
298
+
299
+ /*
300
+ * Retrieve product categories
301
+ *
302
+ * @param Mage_Catalog_Model_Product $product
303
+ * @param array $categories
304
+ * @return array
305
+ */
306
+ public function getProductsCategories($product,$categories, $logic = false)
307
+ {
308
+ if($logic) {
309
+ $result = array();
310
+ $_categories = $product->getCategoryIds();
311
+ $parent_id = 0;
312
+ $parent_id = 0;
313
+ $i = 0;
314
+ sort($_categories);
315
+
316
+ if(count($_categories)) {
317
+ $_count = 0;
318
+ foreach($_categories as $c) {
319
+ if(isset($categories[$c])) {
320
+ if( $parent_id == $categories[$c]['parent'] || $i <= 1) {
321
+ $result[] = $categories[$c]['name'];
322
+
323
+
324
+ $parent_id = $categories[$c]['id'];
325
+
326
+ }
327
+ $i++;
328
+ // if(count(explode('||',$categories[$c])) > $_count) $result = explode('||',$categories[$c]);
329
+ $_count = count($result);
330
+ }
331
+ }
332
+ }
333
+ return $result;
334
+ } else {
335
+ $_categories = $product->getCategoryIds();
336
+
337
+ sort($_categories);
338
+ $result = array();
339
+ if(count($_categories)) {
340
+ $_count = 0;
341
+ foreach($_categories as $c) {
342
+ if(isset($categories[$c])) {
343
+ if(count(explode('||',$categories[$c])) > $_count) $result = explode('||',$categories[$c]);
344
+ $_count = count($result);
345
+ }
346
+ }
347
+ }
348
+ }
349
+ return $result;
350
+ }
351
+
352
+ /*
353
+ * Retrieve current store
354
+ *
355
+ * @return Mage_Core_Model_Store
356
+ */
357
+ public function getStore()
358
+ {
359
+ return Mage::app()->getStore();
360
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
361
 
362
+ }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/code/community/BeezUp/Model/System/Config/Source/Categories.php ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class BeezUp_Model_System_Config_Source_Categories
4
+ {
5
+
6
+ public function toOptionArray()
7
+ {
8
+ return array(
9
+ array('value' => 1, 'label' => Mage::helper('beezup')->__('Logic 1')),
10
+ array('value' => 0, 'label' => Mage::helper('beezup')->__('Logic 2')),
11
+ );
12
+ }
13
+
14
+ }
app/code/community/BeezUp/controllers/OmstatusController.php ADDED
@@ -0,0 +1,67 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ require_once dirname ( __FILE__ ) . "/../lib/bootstrap.php";
3
+ require_once dirname ( __FILE__ ) . "/../lib/BeezupRepository.php";
4
+ class BeezUp_OmstatusController extends Mage_Core_Controller_Front_Action
5
+ {
6
+
7
+ public function preDispatch()
8
+ {
9
+
10
+ parent::preDispatch();
11
+
12
+ $repository = new BeezupRepository();
13
+ if(!$repository->isConnectionOk()) {
14
+ $this->norouteAction();
15
+ }
16
+
17
+ }
18
+
19
+ public function showPage() {
20
+ $helper = Mage::helper('beezup');
21
+ $userid = $helper->getConfig('beezup/marketplace/userid');
22
+ $usertoken = $helper->getConfig('beezup/marketplace/usertoken');
23
+ if(isset($_GET['uid']) && $_GET['uid'] == $userid && isset($_GET['token']) && $_GET['token'] == $usertoken) {
24
+ return true;
25
+ }
26
+ return false;
27
+
28
+ }
29
+
30
+
31
+ public function updateAction()
32
+ {
33
+ if($this->showPage()) {
34
+ if(isset($_GET['order_id']) && is_numeric($_GET['order_id'])) {
35
+ $order_id = (int)$_GET['order_id'];
36
+ $this->getResponse()->setBody($this->getLayout()->createBlock('beezup/omstatus')->changeOrder($_GET));
37
+
38
+ } else {
39
+ die("Error Order is not correct"); }
40
+ } else {
41
+ die();
42
+ }
43
+
44
+ }
45
+
46
+ public function resyncAction() {
47
+
48
+ if($this->showPage()) {
49
+ if(isset($_GET['order_id']) && is_numeric($_GET['order_id'])) {
50
+ $order_id = (int)$_GET['order_id'];
51
+ $this->getResponse()->setBody($this->getLayout()->createBlock('beezup/omstatus')->resynOrder($order_id));
52
+
53
+ } else {
54
+ die("Error Order is not correct"); }
55
+ } else {
56
+ die();
57
+ }
58
+
59
+ }
60
+
61
+
62
+
63
+ public function loaderAction() {
64
+ $this->getResponse()->setBody($this->getLayout()->createBlock('beezup/omstatus')->getLoader());
65
+ }
66
+
67
+ }
app/code/community/BeezUp/controllers/OrderController.php ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class BeezUp_OrderController extends Mage_Adminhtml_Controller_Action {
4
+
5
+ public function indexAction()
6
+ {
7
+
8
+ $this->_title($this->__('Sales'))->_title($this->__('BeezUP Orders'));
9
+ $this->loadLayout();
10
+ $this->_setActiveMenu('sales/sales');
11
+ $this->_addContent($this->getLayout()->createBlock('beezup/adminhtml_sales_order'));
12
+ $this->renderLayout();
13
+ }
14
+
15
+ public function gridAction()
16
+ {
17
+ $this->loadLayout();
18
+ $this->getResponse()->setBody(
19
+ $this->getLayout()->createBlock('beezup/adminhtml_sales_order_grid')->toHtml()
20
+ );
21
+ }
22
+
23
+ public function exportInchooCsvAction()
24
+ {
25
+ $fileName = 'beezupOrders.csv';
26
+ $grid = $this->getLayout()->createBlock('beezup/adminhtml_sales_order_grid');
27
+ $this->_prepareDownloadResponse($fileName, $grid->getCsvFile());
28
+ }
29
+
30
+ public function exportInchooExcelAction()
31
+ {
32
+ $fileName = 'beezupOrders.xml';
33
+ $grid = $this->getLayout()->createBlock('beezup/adminhtml_sales_order_grid');
34
+ $this->_prepareDownloadResponse($fileName, $grid->getExcelFile($fileName));
35
+ }
36
+
37
+
38
+
39
+ }
app/code/community/BeezUp/controllers/Sales/OrderController.php DELETED
@@ -1,68 +0,0 @@
1
- <?php
2
-
3
- $defController = Mage::getBaseDir()
4
- . DS . 'app' . DS . 'code' . DS . 'core'
5
- . DS . 'Mage' . DS . 'Adminhtml' . DS . 'controllers'
6
- . DS . 'Sales' . DS . 'OrderController.php';
7
-
8
-
9
-
10
- require_once $defController;
11
-
12
- /**
13
- * Adminhtml sales(123) orders controller
14
- *
15
- * @author Inchoo <ivan.galambos@inchoo.net>
16
- */
17
- class BeezUp_Sales_OrderController extends Mage_Adminhtml_Sales_OrderController
18
- {
19
-
20
-
21
- /**
22
- * Orders grid
23
- */
24
- public function indexAction()
25
- {
26
-
27
- if ($this->getRequest()->getParam('prepared') === 'beezup') {
28
-
29
- /* Mage::getSingleton('adminhtml/session')->addSuccess($this->__('You are viewing a) case of order grid.'));
30
-
31
- $this->_title($this->__('Sales'))->_title($this->__('Orders'));
32
-
33
- $from = date("Y-m-d", strtotime('-120 day'));
34
- $to = date("Y-m-d", strtotime('-1 day'));
35
- $locale = Mage::app()->getLocale()->getLocaleCode();
36
-
37
- Mage::register('preparedFilter', array(
38
- 'store_id' => '1',
39
- 'status' => 'processing',
40
- 'created_at' => array(
41
- 'from'=> new Zend_Date($from, null, $locale),
42
- 'to'=> new Zend_Date($to, null, $locale),
43
- 'locale' => $locale,
44
- 'orig_to' => Mage::helper('core')->formatDate($to),
45
- 'orig_from' => Mage::helper('core')->formatDate($from),
46
- 'datetime' => true
47
- )
48
- ));*/
49
-
50
-
51
-
52
- // Mage::getSingleton('adminhtml/session')->addSuccess($this->__('You are viewing Beezup sales order grid.'));
53
-
54
- $this->_title($this->__('Sales'))->_title($this->__('Beezup Orders'));
55
-
56
-
57
-
58
- }
59
- else {
60
-
61
- // Mage::getSingleton('adminhtml/session')->addSuccess($this->__('You are viewing default sales order grid.'));
62
-
63
- $this->_title($this->__('Sales'))->_title($this->__('Orders'));
64
-
65
- }
66
- $this->_initAction()->renderLayout();
67
- }
68
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/code/community/BeezUp/etc/adminhtml.xml CHANGED
@@ -1,60 +1,14 @@
1
  <?xml version="1.0" encoding="UTF-8"?>
2
  <config>
3
  <menu>
4
- <sales translate="title" module="beezup">
5
- <title>Sales</title>
6
- <sort_order>20</sort_order>
7
- <depends>
8
- <module>Mage_Sales</module>
9
- </depends>
10
- <children>
11
- <order translate="title" module="beezup">
12
- <title>Orders</title>
13
- <action>adminhtml/sales_order</action>
14
- <sort_order>10</sort_order>
15
- <children>
16
- <order_default>
17
- <title>Orders</title>
18
- <action>adminhtml/sales_order</action>
19
- <sort_order>10</sort_order>
20
- </order_default>
21
- <order_a>
22
- <title>BeezUP Orders</title>
23
- <action>adminhtml/sales_order/index/prepared/beezup</action>
24
- <sort_order>20</sort_order>
25
- </order_a>
26
-
27
- </children>
28
- </order>
29
- </children>
30
- </sales>
31
  </menu>
32
- <acl>
33
- <resources>
34
- <admin>
35
- <children>
36
- <sales translate="title" module="beezup">
37
- <title>Sales</title>
38
- <children>
39
- <order translate="title" module="beezup">
40
- <title>Orders</title>
41
- <sort_order>10</sort_order>
42
- <children>
43
- <order_default>
44
- <title>OOrders</title>
45
- <sort_order>10</sort_order>
46
- </order_default>
47
- <order_a>
48
- <title>Beezup Orders</title>
49
- <sort_order>20</sort_order>
50
- </order_a>
51
-
52
- </children>
53
- </order>
54
- </children>
55
- </sales>
56
- </children>
57
- </admin>
58
- </resources>
59
- </acl>
60
  </config>
1
  <?xml version="1.0" encoding="UTF-8"?>
2
  <config>
3
  <menu>
4
+ <sales>
5
+ <children>
6
+ <BeezUp translate="title" module="beezup">
7
+ <sort_order>10</sort_order>
8
+ <title>BeezUP Orders</title>
9
+ <action>adminhtml/order/</action>
10
+ </BeezUp>
11
+ </children>
12
+ </sales>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
  </menu>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  </config>
app/code/community/BeezUp/etc/config.xml CHANGED
@@ -2,7 +2,7 @@
2
  <config>
3
  <modules>
4
  <BeezUp>
5
- <version>4.1.0</version>
6
  </BeezUp>
7
  </modules>
8
  <global>
@@ -30,10 +30,10 @@
30
 
31
  <adminhtml>
32
  <rewrite>
33
- <sales_order_grid>BeezUp_Block_Adminhtml_Sales_Order_Grid</sales_order_grid>
34
  <sales_order_totals>BeezUp_Block_Adminhtml_Sales_Order_Totals</sales_order_totals>
35
  <sales_order_invoice_totals>BeezUp_Block_Adminhtml_Sales_Order_Invoice_Totals</sales_order_invoice_totals>
36
- <sales_order_creditmemo_totals>BeezUp_Block_Adminhtml_Sales_Order_Creditmemo_Totals</sales_order_creditmemo_totals>
37
 
38
 
39
  </rewrite>
@@ -176,6 +176,7 @@
176
  <key></key>
177
  <ip></ip>
178
  <images></images>
 
179
  </flux>
180
  </beezup>
181
  </default>
2
  <config>
3
  <modules>
4
  <BeezUp>
5
+ <version>4.2.0</version>
6
  </BeezUp>
7
  </modules>
8
  <global>
30
 
31
  <adminhtml>
32
  <rewrite>
33
+
34
  <sales_order_totals>BeezUp_Block_Adminhtml_Sales_Order_Totals</sales_order_totals>
35
  <sales_order_invoice_totals>BeezUp_Block_Adminhtml_Sales_Order_Invoice_Totals</sales_order_invoice_totals>
36
+
37
 
38
 
39
  </rewrite>
176
  <key></key>
177
  <ip></ip>
178
  <images></images>
179
+
180
  </flux>
181
  </beezup>
182
  </default>
app/code/community/BeezUp/etc/system.xml CHANGED
@@ -13,7 +13,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.1.0) - <a href="http://go.beezup.com" target="_blank">My BeezUP Account</a></div>]]></comment>
17
  <sort_order>1</sort_order>
18
  <show_in_default>1</show_in_default>
19
  <show_in_website>1</show_in_website>
@@ -77,7 +77,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.1.0) - <a href="http://go.beezup.com" target="_blank">My BeezUP Account</a></div>]]></comment>
81
  <sort_order>2</sort_order>
82
  <show_in_default>1</show_in_default>
83
  <show_in_website>1</show_in_website>
@@ -400,7 +400,7 @@
400
  <flux translate="label">
401
  <label>Catalog Flow</label>
402
  <frontend_type>text</frontend_type>
403
- <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.1.0) - <a href="http://go.beezup.com" target="_blank">My BeezUP Account</a></div>]]></comment>
404
  <sort_order>2</sort_order>
405
  <show_in_default>1</show_in_default>
406
  <show_in_website>1</show_in_website>
@@ -566,6 +566,19 @@
566
  <show_in_store>1</show_in_store>
567
  </images>
568
 
 
 
 
 
 
 
 
 
 
 
 
 
 
569
  </fields>
570
  </flux>
571
  </groups>
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.2.0) - <a href="http://go.beezup.com" target="_blank">My BeezUP Account</a></div>]]></comment>
17
  <sort_order>1</sort_order>
18
  <show_in_default>1</show_in_default>
19
  <show_in_website>1</show_in_website>
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.2.0) - <a href="http://go.beezup.com" target="_blank">My BeezUP Account</a></div>]]></comment>
81
  <sort_order>2</sort_order>
82
  <show_in_default>1</show_in_default>
83
  <show_in_website>1</show_in_website>
400
  <flux translate="label">
401
  <label>Catalog Flow</label>
402
  <frontend_type>text</frontend_type>
403
+ <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.2.0) - <a href="http://go.beezup.com" target="_blank">My BeezUP Account</a></div>]]></comment>
404
  <sort_order>2</sort_order>
405
  <show_in_default>1</show_in_default>
406
  <show_in_website>1</show_in_website>
566
  <show_in_store>1</show_in_store>
567
  </images>
568
 
569
+ <category_logic translate="label">
570
+ <label>Category Logic</label>
571
+ <frontend_type>select</frontend_type>
572
+ <source_model>beezup/system_config_source_categories</source_model>
573
+ <comment><![CDATA[Choose option 1 if don't know what this is]]></comment>
574
+ <sort_order>18</sort_order>
575
+ <show_in_default>1</show_in_default>
576
+ <show_in_website>1</show_in_website>
577
+ <show_in_store>1</show_in_store>
578
+ </category_logic>
579
+
580
+
581
+
582
  </fields>
583
  </flux>
584
  </groups>
app/code/community/BeezUp/img/ajax-loader.gif ADDED
Binary file
app/code/community/BeezUp/lib/BeezupOMOrderService.php CHANGED
@@ -441,13 +441,15 @@
441
  foreach ($oLink->getParameters() as $oParam){
442
  $sName = $oParam->getName();
443
  if ((!isset($aData[$sName]) || empty($aData[$sName]) && $oParam->isMandatory())){
444
- throw new Exception(sprintf('Param %s cannot be empty',$sName));
445
  }
446
  if (!$this->validateParam($oParam, $aData[$sName])){
447
- throw new Exception(sprintf('Param %s cannot be empty has invalid value %s', $sName, strval($aData[$sName])));
448
  }
449
  if ($oParam->getCSharpType() === 'System.DateTime'){
450
- $aResult[$sName] = substr($aData[$sName],0,10) . 'T' . gmdate('H:i:s', time()-300) . '.000Z';
 
 
451
  } else {
452
  $aResult[$sName] = $aData[$sName];
453
  }
441
  foreach ($oLink->getParameters() as $oParam){
442
  $sName = $oParam->getName();
443
  if ((!isset($aData[$sName]) || empty($aData[$sName]) && $oParam->isMandatory())){
444
+ die(sprintf('Param %s cannot be empty',$sName));
445
  }
446
  if (!$this->validateParam($oParam, $aData[$sName])){
447
+ die(sprintf('Param %s cannot be empty has invalid value %s', $sName, strval($aData[$sName])));
448
  }
449
  if ($oParam->getCSharpType() === 'System.DateTime'){
450
+ $formatDate = date("Y-m-d", strtotime($aData[$sName]));
451
+ $aResult[$sName] = substr($formatDate,0,10) . 'T' . gmdate('H:i:s', time()-300) . '.000Z';
452
+ // echo $aResult[$sName]."<br>";
453
  } else {
454
  $aResult[$sName] = $aData[$sName];
455
  }
app/code/community/BeezUp/lib/BeezupOMStatus.php ADDED
@@ -0,0 +1,216 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ require_once dirname ( __FILE__ ) . "/KLogger.php";
3
+ require_once dirname ( __FILE__ ) . "/bootstrap.php";
4
+ require_once dirname ( __FILE__ ) . "/BeezupRepository.php";
5
+ require_once dirname ( __FILE__ ) . "/BeezupMageOrders.php";
6
+
7
+ class BeezupOmStatus {
8
+ protected $repository = null;
9
+ protected $oOrderService;
10
+ public $log = null;
11
+ public $log2 = null;
12
+ public $orderid = "";
13
+ public $debug = false;
14
+ private $account_id;
15
+ private $marketplace_code;
16
+ private $beezup_order_id;
17
+
18
+
19
+ public function getLoader() {
20
+ $dir = Mage::getModuleDir("etc", "BeezUp");
21
+ $dir = str_replace("etc", "img", $dir);
22
+ header('Content-Type: image/jpeg');
23
+ readfile($dir."/ajax-loader.gif");
24
+
25
+ }
26
+
27
+
28
+
29
+ public function formatActions($order_actions) {
30
+ $return = array();
31
+
32
+ foreach($order_actions as $action) {
33
+ $fields = json_decode($action['fields']);
34
+ $lovs = json_decode($action['lovs']);
35
+
36
+ $retorno = array();
37
+ //$retorno['fields'][] = $fields;
38
+ //$retorno['lovs'][] = $lovs;
39
+ $action_name =$action['id'];
40
+ $data = array();
41
+ //echo $action_name;
42
+
43
+ foreach($fields->parameters as $field) {
44
+ $rel_status = $field->name;
45
+ $field->$rel_status = $lovs->$rel_status;
46
+ $field->action = $action_name;
47
+ $retorno[] =$field;
48
+ }
49
+ $return[] = array("action"=> $fields->rel, "parameters" => $retorno);
50
+
51
+ }
52
+
53
+ return $return;
54
+
55
+ }
56
+
57
+ //function to get beezup info list
58
+ public function getInfo($order_id) {
59
+ $this->orderid = $order_id;
60
+ try {
61
+ $order = $this->getBeezupOrderFromMage();
62
+
63
+ if ($order && $order->getResult()) {
64
+ $order_result = $order->getResult();
65
+ $beezup_infos = $order? $order->getInfo()->getInformations() : array();
66
+
67
+ $order_actions = $this->getOrderActions($order_result );
68
+ $order_actions = $this->formatActions($order_actions);
69
+ $order_actions['is_pending'] = $order_result->getIsPendingSynchronization();
70
+ return $order_actions;
71
+
72
+
73
+ }
74
+ } catch (Exception $ex ) {
75
+
76
+ return $ex->getMessage();
77
+ }
78
+
79
+
80
+ }
81
+
82
+ //function to change order status of marketplace
83
+ public function updateStatus($order_id) {
84
+ $this->orderid = $order_id;
85
+ try {
86
+ $order = $this->getBeezupOrderFromMage();
87
+
88
+ } catch (Exception $ex ) {
89
+ die($ex->getMessage());
90
+ }
91
+
92
+
93
+ }
94
+
95
+ public function updateOrder($order_id) {
96
+ $this->orderid = $order_id;
97
+
98
+ }
99
+
100
+
101
+ public function getBeezupOrderFromMage() {
102
+ $order = $this->getMageOrder();
103
+
104
+ if($order) {
105
+ $oOrderIdentifier = $this->getBeezupOrderId();
106
+ //$oOrderIdentifier = $order['beezup_order_id'];
107
+ $oBeezupOMOrderResponse = $this->getOrderService()->getOrder($oOrderIdentifier);
108
+
109
+ if ($oBeezupOMOrderResponse && $oBeezupOMOrderResponse->getResult()){
110
+ return $oBeezupOMOrderResponse;
111
+ }
112
+
113
+ }
114
+ return false;
115
+ }
116
+
117
+
118
+ public function getMageOrder() {
119
+ $resource = Mage::getSingleton('core/resource');
120
+ $readConnection = $resource->getConnection('core_read');
121
+ $table = $resource->getTableName('sales/order_grid');
122
+ $query = 'SELECT * FROM ' . $table . ' WHERE entity_id = \''
123
+ . $this->orderid . '\' ';
124
+ $order = $readConnection->fetchAll($query);
125
+ if(!empty($order)) {
126
+ $order = $order[0];
127
+ $this->account_id= $order['beezup_name'];
128
+ $this->marketplace_code = $order['beezup_marketplace'];
129
+ $this->beezup_order_id = $order['beezup_order_id'];
130
+ return $order;
131
+ }
132
+ return false;
133
+ }
134
+
135
+
136
+ public function getBeezupOrderId(){
137
+ $oIdentifier = new BeezupOMOrderIdentifier();
138
+ $oIdentifier
139
+ ->setAccountId($this->account_id)
140
+ ->setMarketplaceTechnicalCode($this->marketplace_code)
141
+ ->setBeezupOrderUUID($this->beezup_order_id);
142
+ return $oIdentifier;
143
+ }
144
+
145
+
146
+ /**
147
+ * @return BeezupOMOrderService
148
+ */
149
+ public function getOrderService(){
150
+ if ($this->oOrderService === null){
151
+ $this->oOrderService = $this->createOrderService();
152
+ // enchufamos debug mode, esta activado? false true $this->oOrderService->setDebugMode(false);
153
+ }
154
+ return $this->oOrderService;
155
+ }
156
+
157
+ /**
158
+ * @return BeezupOMOrderService
159
+ */
160
+ protected function createOrderService(){
161
+
162
+ return new BeezupOMOrderService($this->createRepository() );
163
+ }
164
+
165
+ protected function createRepository() {
166
+ if ($this->repository == null) {
167
+ $this->repository = new BeezupRepository();
168
+ }
169
+ return $this->repository;
170
+
171
+ }
172
+
173
+
174
+ /**
175
+ * Returns disponible order actions
176
+ * @param unknown_type $oBeezupOrder
177
+ * @param unknown_type $oPsOrder
178
+ * @return multitype:|multitype:multitype:string NULL unknown
179
+ */
180
+ public function getOrderActions($oBeezupOrder = null, $oPsOrder = null){
181
+ $aResult = array();
182
+ if (!$oBeezupOrder || !($oBeezupOrder instanceof BeezupOMOrderResult)) {
183
+ return $aResult;
184
+ }
185
+
186
+ // $aLovValues = $this->getOrderService()->getLovValues('OrderChangeBusinessOperationType', Context::getContext()->language->iso_code);
187
+
188
+ foreach ($oBeezupOrder->getTransitionLinks() as $oLink){
189
+
190
+ $aResult[] = array(
191
+ 'link' => $oLink,
192
+ 'href' => $oLink->getHref(),
193
+ 'id' => $oLink->getRel(),
194
+ 'name' => $oLink->getRel(),
195
+ 'translated_name' => $oLink->getRel(),
196
+ 'fields' => json_encode($oLink->toArray()),
197
+ 'lovs' => json_encode($this->getOrderService()->getLOVValuesForParams($oLink))
198
+ /*,
199
+ 'values' => json_encode($this->getFieldsValues($oLink, $oPsOrder)),
200
+ 'info' => json_encode($this->getTransitionLinkInfo($oLink))*/
201
+ );
202
+ /*
203
+ echo "<pre>";
204
+ print_r(json_decode($aResult[0]['lovs']));
205
+ echo "</pre>";
206
+
207
+ echo "<pre>";
208
+ print_r(json_decode($aResult[0]['fields']));
209
+ echo "</pre>";
210
+ */
211
+ }
212
+
213
+ return $aResult;
214
+ }
215
+
216
+ }
app/code/community/BeezUp/lib/BeezupRepository.php CHANGED
@@ -312,6 +312,16 @@ class BeezupRepository implements BeezupOMRepositoryInterface {
312
  }
313
 
314
 
315
-
 
 
 
 
 
 
 
 
 
 
316
 
317
  }
312
  }
313
 
314
 
315
+
316
+ public function getLOVValuesForParams(BeezupOMLink $oLink, $bRequired = true){
317
+ $aResult = array();
318
+ foreach ($oLink->getParameters() as $oParam){
319
+ if ($oParam->getLovLink() && (!$bRequired || $oParam->isLovRequired())) {
320
+ $oLovResult = $this->getLOVByLink($oParam->getLovLink());
321
+ $aResult[$oParam->getName()] = $oLovResult ? $oLovResult->toArray() : array();
322
+ } // if
323
+ } // foreach
324
+ return $aResult;
325
+ }
326
 
327
  }
app/code/community/BeezUp/log/log.txt ADDED
@@ -0,0 +1,530 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 2015-07-13 13:54:46 | INFO | Initializing OM Importation
2
+ 2015-07-13 13:54:51 | INFO | 302-5181594-9067530 | Initializing Order - Link: /orders/v1/733352e8-5a0b-496c-88a5-a3fadd15cdff/Amazon/1038/8D28B831A19AFE4427f74a56a244d37b4599395d469a597
3
+ 2015-07-13 13:54:51 | INFO | 302-5181594-9067530 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
4
+ 2015-07-13 13:54:51 | INFO | 302-5181594-9067530 | Product Matching succesful, Beezup Imported Id: 15570 , Magento Product Id: 903
5
+ 2015-07-13 13:54:51 | INFO | 302-5181594-9067530 | Generating Order
6
+ 2015-07-13 13:54:51 | INFO | 302-5181594-9067530 | Adding 1 product/s with id 903 to order, with Beezup Price: 18
7
+ 2015-07-13 13:54:51 | INFO | 302-5181594-9067530 | Product 903 Stock = 0, Updating to 1 to generate Order
8
+ 2015-07-13 13:54:52 | INFO | 302-5181594-9067530 | Adding Order Shipping Cost: 3
9
+ 2015-07-13 13:54:53 | INFO | 302-5181594-9067530 | Adding Beezup Marketplace Information to Order
10
+ 2015-07-13 13:54:53 | INFO | 302-5181594-9067530 | Sending Magento Order Id to Beezup, Magento Order Id: 192
11
+ 2015-07-13 13:54:55 | INFO | 302-5181594-9067530 | Setting Order Status to Shipped
12
+ 2015-07-13 13:54:55 | INFO | 302-5181594-9067530 | Generating Order Payment Invoice
13
+ 2015-07-13 13:54:55 | INFO | 302-5181594-9067530 | Order Payment Invoice Generated Succesfully
14
+ 2015-07-13 13:54:56 | INFO | 302-5181594-9067530 | Order imported succesfully, Magento Order Id: 192
15
+ 2015-07-13 13:54:57 | INFO | 304-2376665-8448359 | Initializing Order - Link: /orders/v1/733352e8-5a0b-496c-88a5-a3fadd15cdff/Amazon/1038/8D28B7AC3AD72939e443da293f54257b7b273492fc505bf
16
+ 2015-07-13 13:54:57 | INFO | 304-2376665-8448359 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
17
+ 2015-07-13 13:54:57 | INFO | 304-2376665-8448359 | Product Matching succesful, Beezup Imported Id: 15759 , Magento Product Id: 962
18
+ 2015-07-13 13:54:57 | INFO | 304-2376665-8448359 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
19
+ 2015-07-13 13:54:57 | ERROR | 304-2376665-8448359| No Product Matching, Product 15758 could not be found
20
+ 2015-07-13 13:54:58 | INFO | 304-2376665-8448359 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
21
+ 2015-07-13 13:54:58 | INFO | 304-2376665-8448359 | Product Matching succesful, Beezup Imported Id: 15756 , Magento Product Id: 919
22
+ 2015-07-13 13:54:58 | INFO | 304-2376665-8448359 | Generating Order
23
+ 2015-07-13 13:54:58 | INFO | 304-2376665-8448359 | Adding 1 product/s with id 962 to order, with Beezup Price: 23
24
+ 2015-07-13 13:54:58 | INFO | 304-2376665-8448359 | Product 962 Stock = 0, Updating to 1 to generate Order
25
+ 2015-07-13 13:54:59 | INFO | 304-2376665-8448359 | Adding 1 product/s with id 969 to order, with Beezup Price: 23
26
+ 2015-07-13 13:54:59 | INFO | 304-2376665-8448359 | Adding 1 product/s with id 919 to order, with Beezup Price: 23
27
+ 2015-07-13 13:54:59 | INFO | 304-2376665-8448359 | Product 919 Stock = 0, Updating to 1 to generate Order
28
+ 2015-07-13 13:54:59 | INFO | 304-2376665-8448359 | Adding Order Shipping Cost: 0
29
+ 2015-07-13 13:55:00 | INFO | 304-2376665-8448359 | Adding Beezup Marketplace Information to Order
30
+ 2015-07-13 13:55:00 | INFO | 304-2376665-8448359 | Sending Magento Order Id to Beezup, Magento Order Id: 193
31
+ 2015-07-13 13:55:03 | INFO | 304-2376665-8448359 | Setting Order Status to Shipped
32
+ 2015-07-13 13:55:03 | INFO | 304-2376665-8448359 | Generating Order Payment Invoice
33
+ 2015-07-13 13:55:03 | INFO | 304-2376665-8448359 | Order Payment Invoice Generated Succesfully
34
+ 2015-07-13 13:55:03 | INFO | 304-2376665-8448359 | Order imported succesfully, Magento Order Id: 193
35
+ 2015-07-13 13:55:05 | INFO | 304-5814114-8544311 | Initializing Order - Link: /orders/v1/733352e8-5a0b-496c-88a5-a3fadd15cdff/Amazon/1038/8D28B7AC196264749802967119742ff868d287e5f6ccc05
36
+ 2015-07-13 13:55:05 | INFO | 304-5814114-8544311 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
37
+ 2015-07-13 13:55:05 | ERROR | 304-5814114-8544311| No Product Matching, Product 14887 could not be found
38
+ 2015-07-13 13:55:06 | INFO | 304-5814114-8544311 | Generating Order
39
+ 2015-07-13 13:55:06 | INFO | 304-5814114-8544311 | Adding 1 product/s with id 970 to order, with Beezup Price: 14
40
+ 2015-07-13 13:55:06 | INFO | 304-5814114-8544311 | Adding Order Shipping Cost: 3
41
+ 2015-07-13 13:55:07 | INFO | 304-5814114-8544311 | Adding Beezup Marketplace Information to Order
42
+ 2015-07-13 13:55:07 | INFO | 304-5814114-8544311 | Sending Magento Order Id to Beezup, Magento Order Id: 194
43
+ 2015-07-13 13:55:08 | INFO | 304-5814114-8544311 | Setting Order Status to InProgress
44
+ 2015-07-13 13:55:08 | INFO | 304-5814114-8544311 | Generating Order Payment Invoice
45
+ 2015-07-13 13:55:09 | INFO | 304-5814114-8544311 | Order Payment Invoice Generated Succesfully
46
+ 2015-07-13 13:55:09 | INFO | 304-5814114-8544311 | Order imported succesfully, Magento Order Id: 194
47
+ 2015-07-13 13:55:10 | INFO | 302-5145095-3261943 | Initializing Order - Link: /orders/v1/733352e8-5a0b-496c-88a5-a3fadd15cdff/Amazon/1038/8D28B7AC12DD365b5f418049f99412b8248561f3e78314e
48
+ 2015-07-13 13:55:10 | INFO | 302-5145095-3261943 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
49
+ 2015-07-13 13:55:10 | INFO | 302-5145095-3261943 | Product Matching succesful, Beezup Imported Id: 12826 , Magento Product Id: 887
50
+ 2015-07-13 13:55:10 | INFO | 302-5145095-3261943 | Generating Order
51
+ 2015-07-13 13:55:10 | INFO | 302-5145095-3261943 | Adding 1 product/s with id 887 to order, with Beezup Price: 21
52
+ 2015-07-13 13:55:10 | INFO | 302-5145095-3261943 | Product 887 Stock = 0, Updating to 1 to generate Order
53
+ 2015-07-13 13:55:11 | INFO | 302-5145095-3261943 | Adding Order Shipping Cost: 0
54
+ 2015-07-13 13:55:12 | INFO | 302-5145095-3261943 | Adding Beezup Marketplace Information to Order
55
+ 2015-07-13 13:55:12 | INFO | 302-5145095-3261943 | Sending Magento Order Id to Beezup, Magento Order Id: 195
56
+ 2015-07-13 13:55:13 | INFO | 302-5145095-3261943 | Setting Order Status to Shipped
57
+ 2015-07-13 13:55:13 | INFO | 302-5145095-3261943 | Generating Order Payment Invoice
58
+ 2015-07-13 13:55:14 | INFO | 302-5145095-3261943 | Order Payment Invoice Generated Succesfully
59
+ 2015-07-13 13:55:14 | INFO | 302-5145095-3261943 | Order imported succesfully, Magento Order Id: 195
60
+ 2015-07-13 13:55:16 | INFO | 302-9646905-9362734 | Initializing Order - Link: /orders/v1/733352e8-5a0b-496c-88a5-a3fadd15cdff/Amazon/1038/8D28B7AC03F1155c391ad3362ca463fbe5c9a7a63c6076d
61
+ 2015-07-13 13:55:16 | INFO | 302-9646905-9362734 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
62
+ 2015-07-13 13:55:16 | INFO | 302-9646905-9362734 | Product Matching succesful, Beezup Imported Id: 12500 , Magento Product Id: 921
63
+ 2015-07-13 13:55:16 | INFO | 302-9646905-9362734 | Generating Order
64
+ 2015-07-13 13:55:16 | INFO | 302-9646905-9362734 | Adding 1 product/s with id 921 to order, with Beezup Price: 22
65
+ 2015-07-13 13:55:16 | INFO | 302-9646905-9362734 | Product 921 Stock = 0, Updating to 1 to generate Order
66
+ 2015-07-13 13:55:16 | INFO | 302-9646905-9362734 | Adding Order Shipping Cost: 0
67
+ 2015-07-13 13:55:17 | INFO | 302-9646905-9362734 | Adding Beezup Marketplace Information to Order
68
+ 2015-07-13 13:55:17 | INFO | 302-9646905-9362734 | Sending Magento Order Id to Beezup, Magento Order Id: 196
69
+ 2015-07-13 13:55:19 | INFO | 302-9646905-9362734 | Setting Order Status to Shipped
70
+ 2015-07-13 13:55:19 | INFO | 302-9646905-9362734 | Generating Order Payment Invoice
71
+ 2015-07-13 13:55:19 | INFO | 302-9646905-9362734 | Order Payment Invoice Generated Succesfully
72
+ 2015-07-13 13:55:19 | INFO | 302-9646905-9362734 | Order imported succesfully, Magento Order Id: 196
73
+ 2015-07-13 13:55:22 | INFO | 303-6744558-1030729 | Initializing Order - Link: /orders/v1/733352e8-5a0b-496c-88a5-a3fadd15cdff/Amazon/1038/8D28B7ABFE53A6499ac2ea6abeb409bbc951ba8cd40c176
74
+ 2015-07-13 13:55:22 | INFO | 303-6744558-1030729 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
75
+ 2015-07-13 13:55:22 | ERROR | 303-6744558-1030729| No Product Matching, Product 12795 could not be found
76
+ 2015-07-13 13:55:23 | INFO | 303-6744558-1030729 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
77
+ 2015-07-13 13:55:23 | INFO | 303-6744558-1030729 | Product Matching succesful, Beezup Imported Id: 14938 , Magento Product Id: 729
78
+ 2015-07-13 13:55:23 | INFO | 303-6744558-1030729 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
79
+ 2015-07-13 13:55:23 | ERROR | 303-6744558-1030729| No Product Matching, Product 12469 could not be found
80
+ 2015-07-13 13:55:23 | INFO | 303-6744558-1030729 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
81
+ 2015-07-13 13:55:24 | INFO | 303-6744558-1030729 | Product Matching succesful, Beezup Imported Id: 13943 , Magento Product Id: 886
82
+ 2015-07-13 13:55:24 | INFO | 303-6744558-1030729 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
83
+ 2015-07-13 13:55:24 | ERROR | 303-6744558-1030729| No Product Matching, Product 13016 could not be found
84
+ 2015-07-13 13:55:24 | INFO | 303-6744558-1030729 | Generating Order
85
+ 2015-07-13 13:55:24 | INFO | 303-6744558-1030729 | Adding 1 product/s with id 971 to order, with Beezup Price: 21
86
+ 2015-07-13 13:55:24 | INFO | 303-6744558-1030729 | Adding 1 product/s with id 729 to order, with Beezup Price: 25
87
+ 2015-07-13 13:55:24 | INFO | 303-6744558-1030729 | Product 729 Stock = 0, Updating to 1 to generate Order
88
+ 2015-07-13 13:55:26 | INFO | 303-6744558-1030729 | Adding 1 product/s with id 972 to order, with Beezup Price: 20
89
+ 2015-07-13 13:55:27 | INFO | 303-6744558-1030729 | Adding 1 product/s with id 886 to order, with Beezup Price: 21
90
+ 2015-07-13 13:55:27 | INFO | 303-6744558-1030729 | Product 886 Stock = 0, Updating to 1 to generate Order
91
+ 2015-07-13 13:55:27 | INFO | 303-6744558-1030729 | Adding 1 product/s with id 973 to order, with Beezup Price: 22
92
+ 2015-07-13 13:55:27 | INFO | 303-6744558-1030729 | Adding Order Shipping Cost: 0
93
+ 2015-07-13 13:55:29 | INFO | 303-6744558-1030729 | Adding Beezup Marketplace Information to Order
94
+ 2015-07-13 13:55:29 | INFO | 303-6744558-1030729 | Sending Magento Order Id to Beezup, Magento Order Id: 197
95
+ 2015-07-13 13:55:30 | INFO | 303-6744558-1030729 | Setting Order Status to Shipped
96
+ 2015-07-13 13:55:30 | INFO | 303-6744558-1030729 | Generating Order Payment Invoice
97
+ 2015-07-13 13:55:31 | INFO | 303-6744558-1030729 | Order Payment Invoice Generated Succesfully
98
+ 2015-07-13 13:55:31 | INFO | 303-6744558-1030729 | Order imported succesfully, Magento Order Id: 197
99
+ 2015-07-13 13:55:32 | INFO | 305-6063282-1160342 | Initializing Order - Link: /orders/v1/733352e8-5a0b-496c-88a5-a3fadd15cdff/Amazon/1038/8D28B7ABF07C38Cce5bf3d52ab94abeb6e92c3dfbbf253b
100
+ 2015-07-13 13:55:32 | INFO | 305-6063282-1160342 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
101
+ 2015-07-13 13:55:32 | ERROR | 305-6063282-1160342| No Product Matching, Product 13360 could not be found
102
+ 2015-07-13 13:55:33 | INFO | 305-6063282-1160342 | Generating Order
103
+ 2015-07-13 13:55:33 | INFO | 305-6063282-1160342 | Adding 1 product/s with id 974 to order, with Beezup Price: 41
104
+ 2015-07-13 13:55:33 | INFO | 305-6063282-1160342 | Adding Order Shipping Cost: 0
105
+ 2015-07-13 13:55:34 | INFO | 305-6063282-1160342 | Adding Beezup Marketplace Information to Order
106
+ 2015-07-13 13:55:34 | INFO | 305-6063282-1160342 | Sending Magento Order Id to Beezup, Magento Order Id: 198
107
+ 2015-07-13 13:55:35 | INFO | 305-6063282-1160342 | Setting Order Status to Shipped
108
+ 2015-07-13 13:55:35 | INFO | 305-6063282-1160342 | Generating Order Payment Invoice
109
+ 2015-07-13 13:55:35 | INFO | 305-6063282-1160342 | Order Payment Invoice Generated Succesfully
110
+ 2015-07-13 13:55:36 | INFO | 305-6063282-1160342 | Order imported succesfully, Magento Order Id: 198
111
+ 2015-07-13 13:55:37 | INFO | 028-1886784-6472353 | Initializing Order - Link: /orders/v1/733352e8-5a0b-496c-88a5-a3fadd15cdff/Amazon/1038/8D28B7ABE00521335155e2c349f4210b0fa7a1d6ab7007e
112
+ 2015-07-13 13:55:37 | INFO | 028-1886784-6472353 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
113
+ 2015-07-13 13:55:37 | ERROR | 028-1886784-6472353| No Product Matching, Product 12379 could not be found
114
+ 2015-07-13 13:55:38 | INFO | 028-1886784-6472353 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
115
+ 2015-07-13 13:55:38 | ERROR | 028-1886784-6472353| No Product Matching, Product 13639 could not be found
116
+ 2015-07-13 13:55:38 | INFO | 028-1886784-6472353 | Generating Order
117
+ 2015-07-13 13:55:39 | INFO | 028-1886784-6472353 | Adding 1 product/s with id 975 to order, with Beezup Price: 25
118
+ 2015-07-13 13:55:39 | INFO | 028-1886784-6472353 | Adding 1 product/s with id 976 to order, with Beezup Price: 33
119
+ 2015-07-13 13:55:39 | INFO | 028-1886784-6472353 | Adding Order Shipping Cost: 0
120
+ 2015-07-13 13:55:40 | INFO | 028-1886784-6472353 | Adding Beezup Marketplace Information to Order
121
+ 2015-07-13 13:55:40 | INFO | 028-1886784-6472353 | Sending Magento Order Id to Beezup, Magento Order Id: 199
122
+ 2015-07-13 13:55:41 | INFO | 028-1886784-6472353 | Setting Order Status to Shipped
123
+ 2015-07-13 13:55:41 | INFO | 028-1886784-6472353 | Generating Order Payment Invoice
124
+ 2015-07-13 13:55:42 | INFO | 028-1886784-6472353 | Order Payment Invoice Generated Succesfully
125
+ 2015-07-13 13:55:42 | INFO | 028-1886784-6472353 | Order imported succesfully, Magento Order Id: 199
126
+ 2015-07-13 13:55:44 | INFO | 028-7013115-2564300 | Initializing Order - Link: /orders/v1/733352e8-5a0b-496c-88a5-a3fadd15cdff/Amazon/1038/8D28B7ABDAEAF6C126ab95d15124ce8939380ce73845bba
127
+ 2015-07-13 13:55:44 | INFO | 028-7013115-2564300 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
128
+ 2015-07-13 13:55:44 | INFO | 028-7013115-2564300 | Product Matching succesful, Beezup Imported Id: 15570 , Magento Product Id: 903
129
+ 2015-07-13 13:55:44 | INFO | 028-7013115-2564300 | Generating Order
130
+ 2015-07-13 13:55:44 | INFO | 028-7013115-2564300 | Adding 1 product/s with id 903 to order, with Beezup Price: 18
131
+ 2015-07-13 13:55:44 | INFO | 028-7013115-2564300 | Product 903 Stock = 0, Updating to 1 to generate Order
132
+ 2015-07-13 13:55:45 | INFO | 028-7013115-2564300 | Adding Order Shipping Cost: 0
133
+ 2015-07-13 13:55:45 | INFO | 028-7013115-2564300 | Adding Beezup Marketplace Information to Order
134
+ 2015-07-13 13:55:45 | INFO | 028-7013115-2564300 | Sending Magento Order Id to Beezup, Magento Order Id: 200
135
+ 2015-07-13 13:55:47 | INFO | 028-7013115-2564300 | Setting Order Status to Shipped
136
+ 2015-07-13 13:55:47 | INFO | 028-7013115-2564300 | Generating Order Payment Invoice
137
+ 2015-07-13 13:55:47 | INFO | 028-7013115-2564300 | Order Payment Invoice Generated Succesfully
138
+ 2015-07-13 13:55:47 | INFO | 028-7013115-2564300 | Order imported succesfully, Magento Order Id: 200
139
+ 2015-07-13 13:55:49 | INFO | 302-4228901-0641101 | Initializing Order - Link: /orders/v1/733352e8-5a0b-496c-88a5-a3fadd15cdff/Amazon/1038/8D28B7ABCD8619B5649e0495c7d47c1b707d8268f93b158
140
+ 2015-07-13 13:55:49 | INFO | 302-4228901-0641101 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
141
+ 2015-07-13 13:55:49 | INFO | 302-4228901-0641101 | Product Matching succesful, Beezup Imported Id: 15326 , Magento Product Id: 885
142
+ 2015-07-13 13:55:49 | INFO | 302-4228901-0641101 | Generating Order
143
+ 2015-07-13 13:55:49 | INFO | 302-4228901-0641101 | Adding 1 product/s with id 885 to order, with Beezup Price: 21
144
+ 2015-07-13 13:55:49 | INFO | 302-4228901-0641101 | Product 885 Stock = 0, Updating to 1 to generate Order
145
+ 2015-07-13 13:55:49 | INFO | 302-4228901-0641101 | Adding Order Shipping Cost: 0
146
+ 2015-07-13 13:55:50 | INFO | 302-4228901-0641101 | Adding Beezup Marketplace Information to Order
147
+ 2015-07-13 13:55:50 | INFO | 302-4228901-0641101 | Sending Magento Order Id to Beezup, Magento Order Id: 201
148
+ 2015-07-13 13:55:52 | INFO | 302-4228901-0641101 | Setting Order Status to Shipped
149
+ 2015-07-13 13:55:52 | INFO | 302-4228901-0641101 | Generating Order Payment Invoice
150
+ 2015-07-13 13:55:52 | INFO | 302-4228901-0641101 | Order Payment Invoice Generated Succesfully
151
+ 2015-07-13 13:55:52 | INFO | 302-4228901-0641101 | Order imported succesfully, Magento Order Id: 201
152
+ 2015-07-13 13:55:54 | INFO | 028-2380641-8001166 | Initializing Order - Link: /orders/v1/733352e8-5a0b-496c-88a5-a3fadd15cdff/Amazon/1038/8D2896B5B088775251c3077de284b1fa1773338c213058d
153
+ 2015-07-13 13:55:54 | INFO | 028-2380641-8001166 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
154
+ 2015-07-13 13:55:54 | ERROR | 028-2380641-8001166| No Product Matching, Product 15932 could not be found
155
+ 2015-07-13 13:55:55 | INFO | 028-2380641-8001166 | Generating Order
156
+ 2015-07-13 13:55:55 | INFO | 028-2380641-8001166 | Adding 1 product/s with id 977 to order, with Beezup Price: 14
157
+ 2015-07-13 13:55:55 | INFO | 028-2380641-8001166 | Adding Order Shipping Cost: 3
158
+ 2015-07-13 13:55:55 | INFO | 028-2380641-8001166 | Adding Beezup Marketplace Information to Order
159
+ 2015-07-13 13:55:55 | INFO | 028-2380641-8001166 | Sending Magento Order Id to Beezup, Magento Order Id: 202
160
+ 2015-07-13 13:55:56 | INFO | 028-2380641-8001166 | Setting Order Status to Shipped
161
+ 2015-07-13 13:55:56 | INFO | 028-2380641-8001166 | Generating Order Payment Invoice
162
+ 2015-07-13 13:55:57 | INFO | 028-2380641-8001166 | Order Payment Invoice Generated Succesfully
163
+ 2015-07-13 13:55:57 | INFO | 028-2380641-8001166 | Order imported succesfully, Magento Order Id: 202
164
+ 2015-07-13 13:55:58 | INFO | 304-0835852-3391515 | Initializing Order - Link: /orders/v1/733352e8-5a0b-496c-88a5-a3fadd15cdff/Amazon/1038/8D285F235C84190b9e4bbef71ae410c81305e47b9283c6f
165
+ 2015-07-13 13:55:58 | INFO | 304-0835852-3391515 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
166
+ 2015-07-13 13:55:58 | ERROR | 304-0835852-3391515| No Product Matching, Product 15633 could not be found
167
+ 2015-07-13 13:55:59 | INFO | 304-0835852-3391515 | Generating Order
168
+ 2015-07-13 13:55:59 | INFO | 304-0835852-3391515 | Adding 2 product/s with id 978 to order, with Beezup Price: 13
169
+ 2015-07-13 13:55:59 | INFO | 304-0835852-3391515 | Product 978 Stock = 0, Updating to 2 to generate Order
170
+ 2015-07-13 13:55:59 | INFO | 304-0835852-3391515 | Adding Order Shipping Cost: 3
171
+ 2015-07-13 13:56:00 | INFO | 304-0835852-3391515 | Adding Beezup Marketplace Information to Order
172
+ 2015-07-13 13:56:00 | INFO | 304-0835852-3391515 | Sending Magento Order Id to Beezup, Magento Order Id: 203
173
+ 2015-07-13 13:56:02 | INFO | 304-0835852-3391515 | Setting Order Status to Shipped
174
+ 2015-07-13 13:56:02 | INFO | 304-0835852-3391515 | Generating Order Payment Invoice
175
+ 2015-07-13 13:56:02 | INFO | 304-0835852-3391515 | Order Payment Invoice Generated Succesfully
176
+ 2015-07-13 13:56:02 | INFO | 304-0835852-3391515 | Order imported succesfully, Magento Order Id: 203
177
+ 2015-07-13 13:56:04 | INFO | 028-7350366-9657957 | Initializing Order - Link: /orders/v1/733352e8-5a0b-496c-88a5-a3fadd15cdff/Amazon/1038/8D28B7261F65E9704c47bc2d7a34f8f8131aa176714aa8f
178
+ 2015-07-13 13:56:04 | INFO | 028-7350366-9657957 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
179
+ 2015-07-13 13:56:04 | INFO | 028-7350366-9657957 | Product Matching succesful, Beezup Imported Id: 12311 , Magento Product Id: 898
180
+ 2015-07-13 13:56:04 | INFO | 028-7350366-9657957 | Generating Order
181
+ 2015-07-13 13:56:04 | INFO | 028-7350366-9657957 | Adding 1 product/s with id 898 to order, with Beezup Price: 14
182
+ 2015-07-13 13:56:04 | INFO | 028-7350366-9657957 | Product 898 Stock = 0, Updating to 1 to generate Order
183
+ 2015-07-13 13:56:05 | INFO | 028-7350366-9657957 | Adding Order Shipping Cost: 0
184
+ 2015-07-13 13:56:05 | INFO | 028-7350366-9657957 | Adding Beezup Marketplace Information to Order
185
+ 2015-07-13 13:56:05 | INFO | 028-7350366-9657957 | Sending Magento Order Id to Beezup, Magento Order Id: 204
186
+ 2015-07-13 13:56:07 | INFO | 028-7350366-9657957 | Setting Order Status to Shipped
187
+ 2015-07-13 13:56:07 | INFO | 028-7350366-9657957 | Generating Order Payment Invoice
188
+ 2015-07-13 13:56:07 | INFO | 028-7350366-9657957 | Order Payment Invoice Generated Succesfully
189
+ 2015-07-13 13:56:07 | INFO | 028-7350366-9657957 | Order imported succesfully, Magento Order Id: 204
190
+ 2015-07-13 13:56:09 | INFO | 302-9775030-9253910 | Initializing Order - Link: /orders/v1/733352e8-5a0b-496c-88a5-a3fadd15cdff/Amazon/1038/8D28940B7768CFCb9cc44790c814403ab582fa315d42916
191
+ 2015-07-13 13:56:09 | INFO | 302-9775030-9253910 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
192
+ 2015-07-13 13:56:09 | ERROR | 302-9775030-9253910| No Product Matching, Product 16032 could not be found
193
+ 2015-07-13 13:56:09 | INFO | 302-9775030-9253910 | Generating Order
194
+ 2015-07-13 13:56:09 | INFO | 302-9775030-9253910 | Adding 1 product/s with id 979 to order, with Beezup Price: 75
195
+ 2015-07-13 13:56:09 | INFO | 302-9775030-9253910 | Adding Order Shipping Cost: 0
196
+ 2015-07-13 13:56:10 | INFO | 302-9775030-9253910 | Adding Beezup Marketplace Information to Order
197
+ 2015-07-13 13:56:10 | INFO | 302-9775030-9253910 | Sending Magento Order Id to Beezup, Magento Order Id: 205
198
+ 2015-07-13 13:56:11 | INFO | 302-9775030-9253910 | Setting Order Status to Shipped
199
+ 2015-07-13 13:56:11 | INFO | 302-9775030-9253910 | Generating Order Payment Invoice
200
+ 2015-07-13 13:56:11 | INFO | 302-9775030-9253910 | Order Payment Invoice Generated Succesfully
201
+ 2015-07-13 13:56:12 | INFO | 302-9775030-9253910 | Order imported succesfully, Magento Order Id: 205
202
+ 2015-07-13 13:56:14 | INFO | 304-0818285-4061961 | Initializing Order - Link: /orders/v1/733352e8-5a0b-496c-88a5-a3fadd15cdff/Amazon/1038/8D289F0E02F6FD87678cd4aa32a41a49bca3d5ac6e18e06
203
+ 2015-07-13 13:56:14 | INFO | 304-0818285-4061961 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
204
+ 2015-07-13 13:56:14 | ERROR | 304-0818285-4061961| No Product Matching, Product 16414 could not be found
205
+ 2015-07-13 13:56:14 | INFO | 304-0818285-4061961 | Generating Order
206
+ 2015-07-13 13:56:14 | INFO | 304-0818285-4061961 | Adding 1 product/s with id 980 to order, with Beezup Price: 12
207
+ 2015-07-13 13:56:14 | INFO | 304-0818285-4061961 | Adding Order Shipping Cost: 3
208
+ 2015-07-13 13:56:15 | INFO | 304-0818285-4061961 | Adding Beezup Marketplace Information to Order
209
+ 2015-07-13 13:56:15 | INFO | 304-0818285-4061961 | Sending Magento Order Id to Beezup, Magento Order Id: 206
210
+ 2015-07-13 13:56:16 | INFO | 304-0818285-4061961 | Setting Order Status to Shipped
211
+ 2015-07-13 13:56:16 | INFO | 304-0818285-4061961 | Generating Order Payment Invoice
212
+ 2015-07-13 13:56:17 | INFO | 304-0818285-4061961 | Order Payment Invoice Generated Succesfully
213
+ 2015-07-13 13:56:17 | INFO | 304-0818285-4061961 | Order imported succesfully, Magento Order Id: 206
214
+ 2015-07-13 13:56:18 | INFO | 305-8998703-1694714 | Initializing Order - Link: /orders/v1/733352e8-5a0b-496c-88a5-a3fadd15cdff/Amazon/1038/8D28AFD57118B927b64d6dbcaf245f0a488608cc06ad2fe
215
+ 2015-07-13 13:56:18 | INFO | 305-8998703-1694714 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
216
+ 2015-07-13 13:56:18 | ERROR | 305-8998703-1694714| No Product Matching, Product 13938 could not be found
217
+ 2015-07-13 13:56:19 | INFO | 305-8998703-1694714 | Generating Order
218
+ 2015-07-13 13:56:19 | INFO | 305-8998703-1694714 | Adding 1 product/s with id 981 to order, with Beezup Price: 19
219
+ 2015-07-13 13:56:19 | INFO | 305-8998703-1694714 | Adding Order Shipping Cost: 3
220
+ 2015-07-13 13:56:20 | INFO | 305-8998703-1694714 | Adding Beezup Marketplace Information to Order
221
+ 2015-07-13 13:56:20 | INFO | 305-8998703-1694714 | Sending Magento Order Id to Beezup, Magento Order Id: 207
222
+ 2015-07-13 13:56:22 | INFO | 305-8998703-1694714 | Setting Order Status to Shipped
223
+ 2015-07-13 13:56:22 | INFO | 305-8998703-1694714 | Generating Order Payment Invoice
224
+ 2015-07-13 13:56:22 | INFO | 305-8998703-1694714 | Order Payment Invoice Generated Succesfully
225
+ 2015-07-13 13:56:22 | INFO | 305-8998703-1694714 | Order imported succesfully, Magento Order Id: 207
226
+ 2015-07-13 13:56:24 | INFO | 304-2671239-1348360 | Initializing Order - Link: /orders/v1/733352e8-5a0b-496c-88a5-a3fadd15cdff/Amazon/1038/8D28AB9E5990C29b31ca8730bcb41c48256072d1a38b815
227
+ 2015-07-13 13:56:24 | INFO | 304-2671239-1348360 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
228
+ 2015-07-13 13:56:24 | ERROR | 304-2671239-1348360| No Product Matching, Product 14788 could not be found
229
+ 2015-07-13 13:56:24 | INFO | 304-2671239-1348360 | Generating Order
230
+ 2015-07-13 13:56:24 | INFO | 304-2671239-1348360 | Adding 1 product/s with id 982 to order, with Beezup Price: 12
231
+ 2015-07-13 13:56:24 | INFO | 304-2671239-1348360 | Adding Order Shipping Cost: 3
232
+ 2015-07-13 13:56:25 | INFO | 304-2671239-1348360 | Adding Beezup Marketplace Information to Order
233
+ 2015-07-13 13:56:25 | INFO | 304-2671239-1348360 | Sending Magento Order Id to Beezup, Magento Order Id: 208
234
+ 2015-07-13 13:56:26 | INFO | 304-2671239-1348360 | Setting Order Status to Shipped
235
+ 2015-07-13 13:56:26 | INFO | 304-2671239-1348360 | Generating Order Payment Invoice
236
+ 2015-07-13 13:56:27 | INFO | 304-2671239-1348360 | Order Payment Invoice Generated Succesfully
237
+ 2015-07-13 13:56:27 | INFO | 304-2671239-1348360 | Order imported succesfully, Magento Order Id: 208
238
+ 2015-07-13 13:56:28 | INFO | 028-9312952-5877127 | Initializing Order - Link: /orders/v1/733352e8-5a0b-496c-88a5-a3fadd15cdff/Amazon/1038/8D28B69F2E3AE0E24ed0de3fac644d99fccd082f689c468
239
+ 2015-07-13 13:56:28 | INFO | 028-9312952-5877127 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
240
+ 2015-07-13 13:56:28 | ERROR | 028-9312952-5877127| No Product Matching, Product 12145 could not be found
241
+ 2015-07-13 13:56:29 | INFO | 028-9312952-5877127 | Generating Order
242
+ 2015-07-13 13:56:29 | INFO | 028-9312952-5877127 | Adding 1 product/s with id 983 to order, with Beezup Price: 12
243
+ 2015-07-13 13:56:29 | INFO | 028-9312952-5877127 | Adding Order Shipping Cost: 3
244
+ 2015-07-13 13:56:30 | INFO | 028-9312952-5877127 | Adding Beezup Marketplace Information to Order
245
+ 2015-07-13 13:56:30 | INFO | 028-9312952-5877127 | Sending Magento Order Id to Beezup, Magento Order Id: 209
246
+ 2015-07-13 13:56:31 | INFO | 028-9312952-5877127 | Setting Order Status to Shipped
247
+ 2015-07-13 13:56:31 | INFO | 028-9312952-5877127 | Generating Order Payment Invoice
248
+ 2015-07-13 13:56:32 | INFO | 028-9312952-5877127 | Order Payment Invoice Generated Succesfully
249
+ 2015-07-13 13:56:32 | INFO | 028-9312952-5877127 | Order imported succesfully, Magento Order Id: 209
250
+ 2015-07-13 13:56:34 | INFO | 305-4954456-3347543 | Initializing Order - Link: /orders/v1/733352e8-5a0b-496c-88a5-a3fadd15cdff/Amazon/1038/8D28B69F1F07AF0c8821ea75f774bb7b32c34bb201ea995
251
+ 2015-07-13 13:56:34 | INFO | 305-4954456-3347543 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
252
+ 2015-07-13 13:56:34 | ERROR | 305-4954456-3347543| No Product Matching, Product 15840 could not be found
253
+ 2015-07-13 13:56:34 | INFO | 305-4954456-3347543 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
254
+ 2015-07-13 13:56:34 | ERROR | 305-4954456-3347543| No Product Matching, Product 13364 could not be found
255
+ 2015-07-13 13:56:35 | INFO | 305-4954456-3347543 | Generating Order
256
+ 2015-07-13 13:56:35 | INFO | 305-4954456-3347543 | Adding 1 product/s with id 984 to order, with Beezup Price: 41
257
+ 2015-07-13 13:56:35 | INFO | 305-4954456-3347543 | Adding 1 product/s with id 985 to order, with Beezup Price: 41
258
+ 2015-07-13 13:56:35 | INFO | 305-4954456-3347543 | Adding Order Shipping Cost: 0
259
+ 2015-07-13 13:56:36 | INFO | 305-4954456-3347543 | Adding Beezup Marketplace Information to Order
260
+ 2015-07-13 13:56:36 | INFO | 305-4954456-3347543 | Sending Magento Order Id to Beezup, Magento Order Id: 210
261
+ 2015-07-13 13:56:37 | INFO | 305-4954456-3347543 | Setting Order Status to Shipped
262
+ 2015-07-13 13:56:37 | INFO | 305-4954456-3347543 | Generating Order Payment Invoice
263
+ 2015-07-13 13:56:38 | INFO | 305-4954456-3347543 | Order Payment Invoice Generated Succesfully
264
+ 2015-07-13 13:56:38 | INFO | 305-4954456-3347543 | Order imported succesfully, Magento Order Id: 210
265
+ 2015-07-13 13:56:39 | INFO | 302-2131418-6090743 | Initializing Order - Link: /orders/v1/733352e8-5a0b-496c-88a5-a3fadd15cdff/Amazon/1038/8D28B69F1257659d5c37d09e9ac4d4e91ff8bde91ab028e
266
+ 2015-07-13 13:56:39 | INFO | 302-2131418-6090743 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
267
+ 2015-07-13 13:56:39 | ERROR | 302-2131418-6090743| No Product Matching, Product 15247 could not be found
268
+ 2015-07-13 13:56:40 | INFO | 302-2131418-6090743 | Generating Order
269
+ 2015-07-13 13:56:40 | INFO | 302-2131418-6090743 | Adding 1 product/s with id 986 to order, with Beezup Price: 42
270
+ 2015-07-13 13:56:40 | INFO | 302-2131418-6090743 | Adding Order Shipping Cost: 3
271
+ 2015-07-13 13:56:41 | INFO | 302-2131418-6090743 | Adding Beezup Marketplace Information to Order
272
+ 2015-07-13 13:56:41 | INFO | 302-2131418-6090743 | Sending Magento Order Id to Beezup, Magento Order Id: 211
273
+ 2015-07-13 13:56:42 | INFO | 302-2131418-6090743 | Setting Order Status to InProgress
274
+ 2015-07-13 13:56:42 | INFO | 302-2131418-6090743 | Generating Order Payment Invoice
275
+ 2015-07-13 13:56:42 | INFO | 302-2131418-6090743 | Order Payment Invoice Generated Succesfully
276
+ 2015-07-13 13:56:42 | INFO | 302-2131418-6090743 | Order imported succesfully, Magento Order Id: 211
277
+ 2015-07-13 13:56:44 | INFO | 303-8775940-4287548 | Initializing Order - Link: /orders/v1/733352e8-5a0b-496c-88a5-a3fadd15cdff/Amazon/1038/8D28B61939D556Eaed5c15e3de643c8a2bda154aad31cd2
278
+ 2015-07-13 13:56:44 | INFO | 303-8775940-4287548 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
279
+ 2015-07-13 13:56:44 | ERROR | 303-8775940-4287548| No Product Matching, Product 14546 could not be found
280
+ 2015-07-13 13:56:45 | INFO | 303-8775940-4287548 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
281
+ 2015-07-13 13:56:45 | ERROR | 303-8775940-4287548| No Product Matching, Product 13349 could not be found
282
+ 2015-07-13 13:56:45 | INFO | 303-8775940-4287548 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
283
+ 2015-07-13 13:56:45 | INFO | 303-8775940-4287548 | Product Matching succesful, Beezup Imported Id: 14543 , Magento Product Id: 741
284
+ 2015-07-13 13:56:45 | INFO | 303-8775940-4287548 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
285
+ 2015-07-13 13:56:45 | ERROR | 303-8775940-4287548| No Product Matching, Product 16490 could not be found
286
+ 2015-07-13 13:56:46 | INFO | 303-8775940-4287548 | Generating Order
287
+ 2015-07-13 13:56:46 | INFO | 303-8775940-4287548 | Adding 1 product/s with id 987 to order, with Beezup Price: 41
288
+ 2015-07-13 13:56:46 | INFO | 303-8775940-4287548 | Adding 1 product/s with id 988 to order, with Beezup Price: 41
289
+ 2015-07-13 13:56:46 | INFO | 303-8775940-4287548 | Adding 1 product/s with id 741 to order, with Beezup Price: 41
290
+ 2015-07-13 13:56:46 | INFO | 303-8775940-4287548 | Product 741 Stock = 0, Updating to 1 to generate Order
291
+ 2015-07-13 13:56:46 | INFO | 303-8775940-4287548 | Adding 1 product/s with id 989 to order, with Beezup Price: 41
292
+ 2015-07-13 13:56:46 | INFO | 303-8775940-4287548 | Adding Order Shipping Cost: 0
293
+ 2015-07-13 13:56:48 | INFO | 303-8775940-4287548 | Adding Beezup Marketplace Information to Order
294
+ 2015-07-13 13:56:48 | INFO | 303-8775940-4287548 | Sending Magento Order Id to Beezup, Magento Order Id: 212
295
+ 2015-07-13 13:56:49 | INFO | 303-8775940-4287548 | Setting Order Status to Shipped
296
+ 2015-07-13 13:56:49 | INFO | 303-8775940-4287548 | Generating Order Payment Invoice
297
+ 2015-07-13 13:56:49 | INFO | 303-8775940-4287548 | Order Payment Invoice Generated Succesfully
298
+ 2015-07-13 13:56:50 | INFO | 303-8775940-4287548 | Order imported succesfully, Magento Order Id: 212
299
+ 2015-07-13 13:56:51 | INFO | 302-5503804-1577152 | Initializing Order - Link: /orders/v1/733352e8-5a0b-496c-88a5-a3fadd15cdff/Amazon/1038/8D28B59339DFFD704fc45934bfe41c89ee464f3b8268088
300
+ 2015-07-13 13:56:51 | INFO | 302-5503804-1577152 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
301
+ 2015-07-13 13:56:51 | ERROR | 302-5503804-1577152| No Product Matching, Product 11071 could not be found
302
+ 2015-07-13 13:56:52 | INFO | 302-5503804-1577152 | Generating Order
303
+ 2015-07-13 13:56:52 | INFO | 302-5503804-1577152 | Adding 1 product/s with id 990 to order, with Beezup Price: 15
304
+ 2015-07-13 13:56:52 | INFO | 302-5503804-1577152 | Adding Order Shipping Cost: 0
305
+ 2015-07-13 13:56:52 | INFO | 302-5503804-1577152 | Adding Beezup Marketplace Information to Order
306
+ 2015-07-13 13:56:52 | INFO | 302-5503804-1577152 | Sending Magento Order Id to Beezup, Magento Order Id: 213
307
+ 2015-07-13 13:56:53 | INFO | 302-5503804-1577152 | Setting Order Status to Shipped
308
+ 2015-07-13 13:56:53 | INFO | 302-5503804-1577152 | Generating Order Payment Invoice
309
+ 2015-07-13 13:56:54 | INFO | 302-5503804-1577152 | Order Payment Invoice Generated Succesfully
310
+ 2015-07-13 13:56:54 | INFO | 302-5503804-1577152 | Order imported succesfully, Magento Order Id: 213
311
+ 2015-07-13 13:56:55 | INFO | 303-9018230-8893952 | Initializing Order - Link: /orders/v1/733352e8-5a0b-496c-88a5-a3fadd15cdff/Amazon/1038/8D28B50F917EA9E46799c36677f4fd783dd6f564e6aecda
312
+ 2015-07-13 13:56:55 | INFO | 303-9018230-8893952 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
313
+ 2015-07-13 13:56:55 | INFO | 303-9018230-8893952 | Product Matching succesful, Beezup Imported Id: 15419 , Magento Product Id: 871
314
+ 2015-07-13 13:56:55 | INFO | 303-9018230-8893952 | Generating Order
315
+ 2015-07-13 13:56:55 | INFO | 303-9018230-8893952 | Adding 1 product/s with id 871 to order, with Beezup Price: 16
316
+ 2015-07-13 13:56:55 | INFO | 303-9018230-8893952 | Product 871 Stock = 0, Updating to 1 to generate Order
317
+ 2015-07-13 13:56:56 | INFO | 303-9018230-8893952 | Adding Order Shipping Cost: 0
318
+ 2015-07-13 13:56:57 | INFO | 303-9018230-8893952 | Adding Beezup Marketplace Information to Order
319
+ 2015-07-13 13:56:57 | INFO | 303-9018230-8893952 | Sending Magento Order Id to Beezup, Magento Order Id: 214
320
+ 2015-07-13 13:56:58 | INFO | 303-9018230-8893952 | Setting Order Status to Shipped
321
+ 2015-07-13 13:56:58 | INFO | 303-9018230-8893952 | Generating Order Payment Invoice
322
+ 2015-07-13 13:56:59 | INFO | 303-9018230-8893952 | Order Payment Invoice Generated Succesfully
323
+ 2015-07-13 13:56:59 | INFO | 303-9018230-8893952 | Order imported succesfully, Magento Order Id: 214
324
+ 2015-07-13 13:57:00 | INFO | 305-2806325-7081927 | Initializing Order - Link: /orders/v1/733352e8-5a0b-496c-88a5-a3fadd15cdff/Amazon/1038/8D28B4864B939B61006bdfcbf78440494b2a47f1e16de0b
325
+ 2015-07-13 13:57:00 | INFO | 305-2806325-7081927 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
326
+ 2015-07-13 13:57:00 | INFO | 305-2806325-7081927 | Product Matching succesful, Beezup Imported Id: 12730 , Magento Product Id: 920
327
+ 2015-07-13 13:57:00 | INFO | 305-2806325-7081927 | Generating Order
328
+ 2015-07-13 13:57:01 | INFO | 305-2806325-7081927 | Adding 1 product/s with id 920 to order, with Beezup Price: 22
329
+ 2015-07-13 13:57:01 | INFO | 305-2806325-7081927 | Product 920 Stock = 0, Updating to 1 to generate Order
330
+ 2015-07-13 13:57:01 | INFO | 305-2806325-7081927 | Adding Order Shipping Cost: 3
331
+ 2015-07-13 13:57:02 | INFO | 305-2806325-7081927 | Adding Beezup Marketplace Information to Order
332
+ 2015-07-13 13:57:02 | INFO | 305-2806325-7081927 | Sending Magento Order Id to Beezup, Magento Order Id: 215
333
+ 2015-07-13 13:57:04 | INFO | 305-2806325-7081927 | Setting Order Status to Shipped
334
+ 2015-07-13 13:57:04 | INFO | 305-2806325-7081927 | Generating Order Payment Invoice
335
+ 2015-07-13 13:57:04 | INFO | 305-2806325-7081927 | Order Payment Invoice Generated Succesfully
336
+ 2015-07-13 13:57:04 | INFO | 305-2806325-7081927 | Order imported succesfully, Magento Order Id: 215
337
+ 2015-07-13 13:57:06 | INFO | 302-9945495-9192330 | Initializing Order - Link: /orders/v1/733352e8-5a0b-496c-88a5-a3fadd15cdff/Amazon/1038/8D28B48645D3290be2afd63159f428fb3d16555fe389da0
338
+ 2015-07-13 13:57:06 | INFO | 302-9945495-9192330 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
339
+ 2015-07-13 13:57:06 | ERROR | 302-9945495-9192330| No Product Matching, Product 15899 could not be found
340
+ 2015-07-13 13:57:07 | INFO | 302-9945495-9192330 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
341
+ 2015-07-13 13:57:07 | ERROR | 302-9945495-9192330| No Product Matching, Product 13638 could not be found
342
+ 2015-07-13 13:57:08 | INFO | 302-9945495-9192330 | Generating Order
343
+ 2015-07-13 13:57:08 | INFO | 302-9945495-9192330 | Adding 1 product/s with id 991 to order, with Beezup Price: 29
344
+ 2015-07-13 13:57:08 | INFO | 302-9945495-9192330 | Adding 1 product/s with id 992 to order, with Beezup Price: 32
345
+ 2015-07-13 13:57:08 | INFO | 302-9945495-9192330 | Adding Order Shipping Cost: 0
346
+ 2015-07-13 13:57:09 | INFO | 302-9945495-9192330 | Adding Beezup Marketplace Information to Order
347
+ 2015-07-13 13:57:09 | INFO | 302-9945495-9192330 | Sending Magento Order Id to Beezup, Magento Order Id: 216
348
+ 2015-07-13 13:57:12 | INFO | 302-9945495-9192330 | Setting Order Status to Shipped
349
+ 2015-07-13 13:57:12 | INFO | 302-9945495-9192330 | Generating Order Payment Invoice
350
+ 2015-07-13 13:57:12 | INFO | 302-9945495-9192330 | Order Payment Invoice Generated Succesfully
351
+ 2015-07-13 13:57:12 | INFO | 302-9945495-9192330 | Order imported succesfully, Magento Order Id: 216
352
+ 2015-07-13 13:57:13 | INFO | 302-0524017-8191566 | Initializing Order - Link: /orders/v1/733352e8-5a0b-496c-88a5-a3fadd15cdff/Amazon/1038/8D28B486381DB659c807e0401e14a29967969d5197ff296
353
+ 2015-07-13 13:57:13 | INFO | 302-0524017-8191566 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
354
+ 2015-07-13 13:57:14 | ERROR | 302-0524017-8191566| No Product Matching, Product 15316 could not be found
355
+ 2015-07-13 13:57:14 | INFO | 302-0524017-8191566 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
356
+ 2015-07-13 13:57:14 | ERROR | 302-0524017-8191566| No Product Matching, Product 12533 could not be found
357
+ 2015-07-13 13:57:15 | INFO | 302-0524017-8191566 | Generating Order
358
+ 2015-07-13 13:57:15 | INFO | 302-0524017-8191566 | Adding 1 product/s with id 993 to order, with Beezup Price: 15
359
+ 2015-07-13 13:57:15 | INFO | 302-0524017-8191566 | Adding 1 product/s with id 994 to order, with Beezup Price: 14
360
+ 2015-07-13 13:57:15 | INFO | 302-0524017-8191566 | Adding Order Shipping Cost: 0
361
+ 2015-07-13 13:57:16 | INFO | 302-0524017-8191566 | Adding Beezup Marketplace Information to Order
362
+ 2015-07-13 13:57:16 | INFO | 302-0524017-8191566 | Sending Magento Order Id to Beezup, Magento Order Id: 217
363
+ 2015-07-13 13:57:17 | INFO | 302-0524017-8191566 | Setting Order Status to Shipped
364
+ 2015-07-13 13:57:17 | INFO | 302-0524017-8191566 | Generating Order Payment Invoice
365
+ 2015-07-13 13:57:17 | INFO | 302-0524017-8191566 | Order Payment Invoice Generated Succesfully
366
+ 2015-07-13 13:57:17 | INFO | 302-0524017-8191566 | Order imported succesfully, Magento Order Id: 217
367
+ 2015-07-13 13:57:19 | INFO | 303-9466332-8840331 | Initializing Order - Link: /orders/v1/733352e8-5a0b-496c-88a5-a3fadd15cdff/Amazon/1038/8D28B4862BFCF8F9e41a18d689f41d7b5c500fccecbbe5f
368
+ 2015-07-13 13:57:19 | INFO | 303-9466332-8840331 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
369
+ 2015-07-13 13:57:19 | ERROR | 303-9466332-8840331| No Product Matching, Product 16445 could not be found
370
+ 2015-07-13 13:57:20 | INFO | 303-9466332-8840331 | Generating Order
371
+ 2015-07-13 13:57:20 | INFO | 303-9466332-8840331 | Adding 1 product/s with id 995 to order, with Beezup Price: 23
372
+ 2015-07-13 13:57:20 | INFO | 303-9466332-8840331 | Adding Order Shipping Cost: 0
373
+ 2015-07-13 13:57:21 | INFO | 303-9466332-8840331 | Adding Beezup Marketplace Information to Order
374
+ 2015-07-13 13:57:21 | INFO | 303-9466332-8840331 | Sending Magento Order Id to Beezup, Magento Order Id: 218
375
+ 2015-07-13 13:57:22 | INFO | 303-9466332-8840331 | Setting Order Status to Shipped
376
+ 2015-07-13 13:57:22 | INFO | 303-9466332-8840331 | Generating Order Payment Invoice
377
+ 2015-07-13 13:57:22 | INFO | 303-9466332-8840331 | Order Payment Invoice Generated Succesfully
378
+ 2015-07-13 13:57:22 | INFO | 303-9466332-8840331 | Order imported succesfully, Magento Order Id: 218
379
+ 2015-07-13 13:57:24 | INFO | 304-7544290-2295565 | Initializing Order - Link: /orders/v1/733352e8-5a0b-496c-88a5-a3fadd15cdff/Amazon/1038/8D28B48616A195D7073e352e80a4cd18c31d72e53364ade
380
+ 2015-07-13 13:57:24 | INFO | 304-7544290-2295565 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
381
+ 2015-07-13 13:57:24 | INFO | 304-7544290-2295565 | Product Matching succesful, Beezup Imported Id: 13016 , Magento Product Id: 973
382
+ 2015-07-13 13:57:24 | INFO | 304-7544290-2295565 | Generating Order
383
+ 2015-07-13 13:57:24 | INFO | 304-7544290-2295565 | Adding 2 product/s with id 973 to order, with Beezup Price: 22
384
+ 2015-07-13 13:57:24 | INFO | 304-7544290-2295565 | Product 973 Stock = 0, Updating to 2 to generate Order
385
+ 2015-07-13 13:57:25 | INFO | 304-7544290-2295565 | Adding Order Shipping Cost: 0
386
+ 2015-07-13 13:57:25 | INFO | 304-7544290-2295565 | Adding Beezup Marketplace Information to Order
387
+ 2015-07-13 13:57:25 | INFO | 304-7544290-2295565 | Sending Magento Order Id to Beezup, Magento Order Id: 219
388
+ 2015-07-13 13:57:27 | INFO | 304-7544290-2295565 | Setting Order Status to Shipped
389
+ 2015-07-13 13:57:27 | INFO | 304-7544290-2295565 | Generating Order Payment Invoice
390
+ 2015-07-13 13:57:27 | INFO | 304-7544290-2295565 | Order Payment Invoice Generated Succesfully
391
+ 2015-07-13 13:57:28 | INFO | 304-7544290-2295565 | Order imported succesfully, Magento Order Id: 219
392
+ 2015-07-13 13:57:29 | INFO | 303-6637171-2809953 | Initializing Order - Link: /orders/v1/733352e8-5a0b-496c-88a5-a3fadd15cdff/Amazon/1038/8D28B486105F9796a5179db06a44c5cabd814e42a00dff7
393
+ 2015-07-13 13:57:29 | INFO | 303-6637171-2809953 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
394
+ 2015-07-13 13:57:29 | ERROR | 303-6637171-2809953| No Product Matching, Product 12381 could not be found
395
+ 2015-07-13 13:57:29 | INFO | 303-6637171-2809953 | Generating Order
396
+ 2015-07-13 13:57:29 | INFO | 303-6637171-2809953 | Adding 1 product/s with id 996 to order, with Beezup Price: 25
397
+ 2015-07-13 13:57:29 | INFO | 303-6637171-2809953 | Adding Order Shipping Cost: 0
398
+ 2015-07-13 13:57:30 | INFO | 303-6637171-2809953 | Adding Beezup Marketplace Information to Order
399
+ 2015-07-13 13:57:30 | INFO | 303-6637171-2809953 | Sending Magento Order Id to Beezup, Magento Order Id: 220
400
+ 2015-07-13 13:57:32 | INFO | 303-6637171-2809953 | Setting Order Status to Shipped
401
+ 2015-07-13 13:57:32 | INFO | 303-6637171-2809953 | Generating Order Payment Invoice
402
+ 2015-07-13 13:57:32 | INFO | 303-6637171-2809953 | Order Payment Invoice Generated Succesfully
403
+ 2015-07-13 13:57:32 | INFO | 303-6637171-2809953 | Order imported succesfully, Magento Order Id: 220
404
+ 2015-07-13 13:57:33 | INFO | 303-0450544-0087557 | Initializing Order - Link: /orders/v1/733352e8-5a0b-496c-88a5-a3fadd15cdff/Amazon/1038/8D28B4860178DB7b9aec283f9954799a0b52517dd4a984f
405
+ 2015-07-13 13:57:33 | INFO | 303-0450544-0087557 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
406
+ 2015-07-13 13:57:33 | INFO | 303-0450544-0087557 | Product Matching succesful, Beezup Imported Id: 15089 , Magento Product Id: 900
407
+ 2015-07-13 13:57:33 | INFO | 303-0450544-0087557 | Generating Order
408
+ 2015-07-13 13:57:33 | INFO | 303-0450544-0087557 | Adding 1 product/s with id 900 to order, with Beezup Price: 25
409
+ 2015-07-13 13:57:33 | INFO | 303-0450544-0087557 | Product 900 Stock = 0, Updating to 1 to generate Order
410
+ 2015-07-13 13:57:34 | INFO | 303-0450544-0087557 | Adding Order Shipping Cost: 0
411
+ 2015-07-13 13:57:35 | INFO | 303-0450544-0087557 | Adding Beezup Marketplace Information to Order
412
+ 2015-07-13 13:57:35 | INFO | 303-0450544-0087557 | Sending Magento Order Id to Beezup, Magento Order Id: 221
413
+ 2015-07-13 13:57:36 | INFO | 303-0450544-0087557 | Setting Order Status to Shipped
414
+ 2015-07-13 13:57:36 | INFO | 303-0450544-0087557 | Generating Order Payment Invoice
415
+ 2015-07-13 13:57:37 | INFO | 303-0450544-0087557 | Order Payment Invoice Generated Succesfully
416
+ 2015-07-13 13:57:37 | INFO | 303-0450544-0087557 | Order imported succesfully, Magento Order Id: 221
417
+ 2015-07-13 13:57:39 | INFO | 303-7666261-6688345 | Initializing Order - Link: /orders/v1/733352e8-5a0b-496c-88a5-a3fadd15cdff/Amazon/1038/8D28B485FB8309098922169271743c8bf00cc47be2a56da
418
+ 2015-07-13 13:57:39 | INFO | 303-7666261-6688345 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
419
+ 2015-07-13 13:57:39 | INFO | 303-7666261-6688345 | Product Matching succesful, Beezup Imported Id: 15089 , Magento Product Id: 900
420
+ 2015-07-13 13:57:39 | INFO | 303-7666261-6688345 | Generating Order
421
+ 2015-07-13 13:57:39 | INFO | 303-7666261-6688345 | Adding 1 product/s with id 900 to order, with Beezup Price: 25
422
+ 2015-07-13 13:57:39 | INFO | 303-7666261-6688345 | Product 900 Stock = 0, Updating to 1 to generate Order
423
+ 2015-07-13 13:57:40 | INFO | 303-7666261-6688345 | Adding Order Shipping Cost: 0
424
+ 2015-07-13 13:57:40 | INFO | 303-7666261-6688345 | Adding Beezup Marketplace Information to Order
425
+ 2015-07-13 13:57:40 | INFO | 303-7666261-6688345 | Sending Magento Order Id to Beezup, Magento Order Id: 222
426
+ 2015-07-13 13:57:41 | INFO | 303-7666261-6688345 | Setting Order Status to Shipped
427
+ 2015-07-13 13:57:41 | INFO | 303-7666261-6688345 | Generating Order Payment Invoice
428
+ 2015-07-13 13:57:42 | INFO | 303-7666261-6688345 | Order Payment Invoice Generated Succesfully
429
+ 2015-07-13 13:57:42 | INFO | 303-7666261-6688345 | Order imported succesfully, Magento Order Id: 222
430
+ 2015-07-13 13:57:44 | INFO | 305-6915356-5209109 | Initializing Order - Link: /orders/v1/733352e8-5a0b-496c-88a5-a3fadd15cdff/Amazon/1038/8D28B485F6E47DAd5bf2b6178174728a04a24179a1f84f9
431
+ 2015-07-13 13:57:44 | INFO | 305-6915356-5209109 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
432
+ 2015-07-13 13:57:44 | ERROR | 305-6915356-5209109| No Product Matching, Product 16443 could not be found
433
+ 2015-07-13 13:57:44 | INFO | 305-6915356-5209109 | Generating Order
434
+ 2015-07-13 13:57:44 | INFO | 305-6915356-5209109 | Adding 1 product/s with id 997 to order, with Beezup Price: 23
435
+ 2015-07-13 13:57:44 | INFO | 305-6915356-5209109 | Adding Order Shipping Cost: 3
436
+ 2015-07-13 13:57:45 | INFO | 305-6915356-5209109 | Adding Beezup Marketplace Information to Order
437
+ 2015-07-13 13:57:45 | INFO | 305-6915356-5209109 | Sending Magento Order Id to Beezup, Magento Order Id: 223
438
+ 2015-07-13 13:57:47 | INFO | 305-6915356-5209109 | Setting Order Status to Shipped
439
+ 2015-07-13 13:57:47 | INFO | 305-6915356-5209109 | Generating Order Payment Invoice
440
+ 2015-07-13 13:57:47 | INFO | 305-6915356-5209109 | Order Payment Invoice Generated Succesfully
441
+ 2015-07-13 13:57:47 | INFO | 305-6915356-5209109 | Order imported succesfully, Magento Order Id: 223
442
+ 2015-07-13 13:57:48 | INFO | 304-2157449-5904346 | Initializing Order - Link: /orders/v1/733352e8-5a0b-496c-88a5-a3fadd15cdff/Amazon/1038/8D28B4019E40A16e7e9f911ff2041d7a9348107dc2a7bfd
443
+ 2015-07-13 13:57:48 | INFO | 304-2157449-5904346 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
444
+ 2015-07-13 13:57:48 | ERROR | 304-2157449-5904346| No Product Matching, Product 12385 could not be found
445
+ 2015-07-13 13:57:49 | INFO | 304-2157449-5904346 | Generating Order
446
+ 2015-07-13 13:57:49 | INFO | 304-2157449-5904346 | Adding 1 product/s with id 998 to order, with Beezup Price: 25
447
+ 2015-07-13 13:57:49 | INFO | 304-2157449-5904346 | Adding Order Shipping Cost: 0
448
+ 2015-07-13 13:57:50 | INFO | 304-2157449-5904346 | Adding Beezup Marketplace Information to Order
449
+ 2015-07-13 13:57:50 | INFO | 304-2157449-5904346 | Sending Magento Order Id to Beezup, Magento Order Id: 224
450
+ 2015-07-13 13:57:51 | INFO | 304-2157449-5904346 | Setting Order Status to Shipped
451
+ 2015-07-13 13:57:51 | INFO | 304-2157449-5904346 | Generating Order Payment Invoice
452
+ 2015-07-13 13:57:51 | INFO | 304-2157449-5904346 | Order Payment Invoice Generated Succesfully
453
+ 2015-07-13 13:57:52 | INFO | 304-2157449-5904346 | Order imported succesfully, Magento Order Id: 224
454
+ 2015-07-13 13:57:53 | INFO | 302-3340055-2998725 | Initializing Order - Link: /orders/v1/733352e8-5a0b-496c-88a5-a3fadd15cdff/Amazon/1038/8D2838E5AF5A2162f8cf69878e54e33ab492c9f8e446430
455
+ 2015-07-13 13:57:53 | INFO | 302-3340055-2998725 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
456
+ 2015-07-13 13:57:53 | INFO | 302-3340055-2998725 | Product Matching succesful, Beezup Imported Id: 15454 , Magento Product Id: 833
457
+ 2015-07-13 13:57:53 | INFO | 302-3340055-2998725 | Generating Order
458
+ 2015-07-13 13:57:53 | INFO | 302-3340055-2998725 | Adding 1 product/s with id 833 to order, with Beezup Price: 32
459
+ 2015-07-13 13:57:53 | INFO | 302-3340055-2998725 | Product 833 Stock = 0, Updating to 1 to generate Order
460
+ 2015-07-13 13:57:54 | INFO | 302-3340055-2998725 | Adding Order Shipping Cost: 0
461
+ 2015-07-13 13:57:54 | INFO | 302-3340055-2998725 | Adding Beezup Marketplace Information to Order
462
+ 2015-07-13 13:57:54 | INFO | 302-3340055-2998725 | Sending Magento Order Id to Beezup, Magento Order Id: 225
463
+ 2015-07-13 13:57:56 | INFO | 302-3340055-2998725 | Setting Order Status to Shipped
464
+ 2015-07-13 13:57:56 | INFO | 302-3340055-2998725 | Generating Order Payment Invoice
465
+ 2015-07-13 13:57:56 | INFO | 302-3340055-2998725 | Order Payment Invoice Generated Succesfully
466
+ 2015-07-13 13:57:56 | INFO | 302-3340055-2998725 | Order imported succesfully, Magento Order Id: 225
467
+ 2015-07-13 13:57:58 | INFO | 302-9133020-2062747 | Initializing Order - Link: /orders/v1/733352e8-5a0b-496c-88a5-a3fadd15cdff/Amazon/1038/8D28B37DDD8E7298c7c9ebb864647878be5fc0202eee347
468
+ 2015-07-13 13:57:58 | INFO | 302-9133020-2062747 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
469
+ 2015-07-13 13:57:58 | ERROR | 302-9133020-2062747| No Product Matching, Product 13296 could not be found
470
+ 2015-07-13 13:57:58 | INFO | 302-9133020-2062747 | Generating Order
471
+ 2015-07-13 13:57:58 | INFO | 302-9133020-2062747 | Adding 1 product/s with id 999 to order, with Beezup Price: 34
472
+ 2015-07-13 13:57:58 | INFO | 302-9133020-2062747 | Adding Order Shipping Cost: 3
473
+ 2015-07-13 13:57:59 | INFO | 302-9133020-2062747 | Adding Beezup Marketplace Information to Order
474
+ 2015-07-13 13:57:59 | INFO | 302-9133020-2062747 | Sending Magento Order Id to Beezup, Magento Order Id: 226
475
+ 2015-07-13 13:58:00 | INFO | 302-9133020-2062747 | Setting Order Status to InProgress
476
+ 2015-07-13 13:58:00 | INFO | 302-9133020-2062747 | Generating Order Payment Invoice
477
+ 2015-07-13 13:58:00 | INFO | 302-9133020-2062747 | Order Payment Invoice Generated Succesfully
478
+ 2015-07-13 13:58:01 | INFO | 302-9133020-2062747 | Order imported succesfully, Magento Order Id: 226
479
+ 2015-07-13 13:58:02 | INFO | 028-2204007-9105941 | Initializing Order - Link: /orders/v1/733352e8-5a0b-496c-88a5-a3fadd15cdff/Amazon/1038/8D28AE3F12DB11Afd4b676391484c34946d448a360a2967
480
+ 2015-07-13 13:58:02 | INFO | 028-2204007-9105941 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
481
+ 2015-07-13 13:58:02 | ERROR | 028-2204007-9105941| No Product Matching, Product 16296 could not be found
482
+ 2015-07-13 13:58:03 | INFO | 028-2204007-9105941 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
483
+ 2015-07-13 13:58:03 | ERROR | 028-2204007-9105941| No Product Matching, Product 14917 could not be found
484
+ 2015-07-13 13:58:04 | INFO | 028-2204007-9105941 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
485
+ 2015-07-13 13:58:04 | ERROR | 028-2204007-9105941| No Product Matching, Product 15381 could not be found
486
+ 2015-07-13 13:58:04 | INFO | 028-2204007-9105941 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
487
+ 2015-07-13 13:58:04 | ERROR | 028-2204007-9105941| No Product Matching, Product 15171 could not be found
488
+ 2015-07-13 13:58:05 | INFO | 028-2204007-9105941 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
489
+ 2015-07-13 13:58:05 | ERROR | 028-2204007-9105941| No Product Matching, Product 14945 could not be found
490
+ 2015-07-13 13:58:06 | INFO | 028-2204007-9105941 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
491
+ 2015-07-13 13:58:06 | ERROR | 028-2204007-9105941| No Product Matching, Product 14580 could not be found
492
+ 2015-07-13 13:58:06 | INFO | 028-2204007-9105941 | Generating Order
493
+ 2015-07-13 13:58:06 | INFO | 028-2204007-9105941 | Adding 1 product/s with id 1000 to order, with Beezup Price: 14
494
+ 2015-07-13 13:58:06 | INFO | 028-2204007-9105941 | Adding 1 product/s with id 1001 to order, with Beezup Price: 12
495
+ 2015-07-13 13:58:06 | INFO | 028-2204007-9105941 | Adding 1 product/s with id 1002 to order, with Beezup Price: 14
496
+ 2015-07-13 13:58:06 | INFO | 028-2204007-9105941 | Adding 1 product/s with id 1003 to order, with Beezup Price: 14
497
+ 2015-07-13 13:58:06 | INFO | 028-2204007-9105941 | Adding 1 product/s with id 1004 to order, with Beezup Price: 14
498
+ 2015-07-13 13:58:06 | INFO | 028-2204007-9105941 | Adding 1 product/s with id 1005 to order, with Beezup Price: 14
499
+ 2015-07-13 13:58:06 | INFO | 028-2204007-9105941 | Adding Order Shipping Cost: 0
500
+ 2015-07-13 13:58:08 | INFO | 028-2204007-9105941 | Adding Beezup Marketplace Information to Order
501
+ 2015-07-13 13:58:08 | INFO | 028-2204007-9105941 | Sending Magento Order Id to Beezup, Magento Order Id: 227
502
+ 2015-07-13 13:58:09 | INFO | 028-2204007-9105941 | Setting Order Status to InProgress
503
+ 2015-07-13 13:58:09 | INFO | 028-2204007-9105941 | Generating Order Payment Invoice
504
+ 2015-07-13 13:58:10 | INFO | 028-2204007-9105941 | Order Payment Invoice Generated Succesfully
505
+ 2015-07-13 13:58:10 | INFO | 028-2204007-9105941 | Order imported succesfully, Magento Order Id: 227
506
+ 2015-07-13 13:58:12 | INFO | 303-2224178-6705917 | Initializing Order - Link: /orders/v1/733352e8-5a0b-496c-88a5-a3fadd15cdff/Amazon/1038/8D28ADB84EA3C538304a4d464fc405fb77bca81f99d451d
507
+ 2015-07-13 13:58:12 | INFO | 303-2224178-6705917 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
508
+ 2015-07-13 13:58:12 | ERROR | 303-2224178-6705917| No Product Matching, Product 15367 could not be found
509
+ 2015-07-13 13:58:12 | INFO | 303-2224178-6705917 | Generating Order
510
+ 2015-07-13 13:58:12 | INFO | 303-2224178-6705917 | Adding 1 product/s with id 1006 to order, with Beezup Price: 37
511
+ 2015-07-13 13:58:12 | INFO | 303-2224178-6705917 | Adding Order Shipping Cost: 3
512
+ 2015-07-13 13:58:13 | INFO | 303-2224178-6705917 | Adding Beezup Marketplace Information to Order
513
+ 2015-07-13 13:58:13 | INFO | 303-2224178-6705917 | Sending Magento Order Id to Beezup, Magento Order Id: 228
514
+ 2015-07-13 13:58:15 | INFO | 303-2224178-6705917 | Setting Order Status to InProgress
515
+ 2015-07-13 13:58:15 | INFO | 303-2224178-6705917 | Generating Order Payment Invoice
516
+ 2015-07-13 13:58:15 | INFO | 303-2224178-6705917 | Order Payment Invoice Generated Succesfully
517
+ 2015-07-13 13:58:15 | INFO | 303-2224178-6705917 | Order imported succesfully, Magento Order Id: 228
518
+ 2015-07-13 13:58:18 | INFO | 028-1182996-6618766 | Initializing Order - Link: /orders/v1/733352e8-5a0b-496c-88a5-a3fadd15cdff/Amazon/1038/8D28AB9E5D7C106ef417d5cde1245c1bb0f73db34a7ab3a
519
+ 2015-07-13 13:58:18 | INFO | 028-1182996-6618766 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
520
+ 2015-07-13 13:58:18 | ERROR | 028-1182996-6618766| No Product Matching, Product 15033 could not be found
521
+ 2015-07-13 13:58:18 | INFO | 028-1182996-6618766 | Generating Order
522
+ 2015-07-13 13:58:18 | INFO | 028-1182996-6618766 | Adding 1 product/s with id 1007 to order, with Beezup Price: 14
523
+ 2015-07-13 13:58:18 | INFO | 028-1182996-6618766 | Adding Order Shipping Cost: 3
524
+ 2015-07-13 13:58:19 | INFO | 028-1182996-6618766 | Adding Beezup Marketplace Information to Order
525
+ 2015-07-13 13:58:19 | INFO | 028-1182996-6618766 | Sending Magento Order Id to Beezup, Magento Order Id: 229
526
+ 2015-07-13 13:58:21 | INFO | 028-1182996-6618766 | Setting Order Status to InProgress
527
+ 2015-07-13 13:58:21 | INFO | 028-1182996-6618766 | Generating Order Payment Invoice
528
+ 2015-07-13 13:58:21 | INFO | 028-1182996-6618766 | Order Payment Invoice Generated Succesfully
529
+ 2015-07-13 13:58:21 | INFO | 028-1182996-6618766 | Order imported succesfully, Magento Order Id: 229
530
+ 2015-07-13 13:58:22 | INFO | OM Importation finalized succesfully
app/code/community/BeezUp/log/log2.txt ADDED
@@ -0,0 +1,3061 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 2015-07-03 16:40:44 | INFO | Initializing OM Importation
2
+ 2015-07-03 16:40:48 | INFO | 150611214005PRH | Initializing Order - Link: /orders/v1/36b1bfa1-e385-4650-8485-f49a5d6a6639/CDiscount/2726/8D2729B76FDA7FF2779ec82ff8040b3a947adbd65654448
3
+ 2015-07-03 16:40:48 | INFO | 150611214005PRH | Store Matching succesful, Beezup Store: fae21e9a-9581-4232-a6f7-b8aebafc3865 , Magento Store Id: 1
4
+ 2015-07-03 16:40:49 | ERROR | 150611214005PRH| No Product Matching, Product 051284-178 could not be found
5
+ 2015-07-03 16:40:51 | INFO | 150611214005PRH | Generating Order
6
+ 2015-07-03 16:40:51 | INFO | 150611214005PRH | Adding 1 product/s with id 802 to order, with Beezup Price: 16.5
7
+ 2015-07-03 16:40:51 | INFO | 150611214005PRH | Adding Order Shipping Cost: 7.09
8
+ 2015-07-03 16:40:53 | INFO | 150611214005PRH | Adding Beezup Marketplace Information to Order
9
+ 2015-07-03 16:40:53 | INFO | 150611214005PRH | Sending Magento Order Id to Beezup, Magento Order Id: 16
10
+ 2015-07-03 16:40:54 | INFO | 150611214005PRH | Setting Order Status to Shipped
11
+ 2015-07-03 16:40:54 | INFO | 150611214005PRH | Generating Order Payment Invoice
12
+ 2015-07-03 16:40:54 | INFO | 150611214005PRH | Order Payment Invoice Generated Succesfully
13
+ 2015-07-03 16:40:54 | INFO | 150611214005PRH | Order imported succesfully, Magento Order Id: 16
14
+ 2015-07-03 16:40:56 | INFO | 15061222450CEEK | Initializing Order - Link: /orders/v1/36b1bfa1-e385-4650-8485-f49a5d6a6639/CDiscount/2726/8D2736C634E57BF2b458840bba54b95a5b6be7e0881105e
15
+ 2015-07-03 16:40:56 | INFO | 15061222450CEEK | Store Matching succesful, Beezup Store: fae21e9a-9581-4232-a6f7-b8aebafc3865 , Magento Store Id: 1
16
+ 2015-07-03 16:40:56 | ERROR | 15061222450CEEK| No Product Matching, Product icfabm35c78-inscim19c78 could not be found
17
+ 2015-07-03 16:40:58 | INFO | 15061222450CEEK | Store Matching succesful, Beezup Store: fae21e9a-9581-4232-a6f7-b8aebafc3865 , Magento Store Id: 1
18
+ 2015-07-03 16:40:58 | ERROR | 15061222450CEEK| No Product Matching, Product sgnr-vache could not be found
19
+ 2015-07-03 16:40:58 | INFO | 15061222450CEEK | Generating Order
20
+ 2015-07-03 16:40:58 | INFO | 15061222450CEEK | Adding 1 product/s with id 803 to order, with Beezup Price: 11.9
21
+ 2015-07-03 16:40:58 | INFO | 15061222450CEEK | Adding 1 product/s with id 804 to order, with Beezup Price: 49.9
22
+ 2015-07-03 16:40:58 | INFO | 15061222450CEEK | Adding Order Shipping Cost: 9.8
23
+ 2015-07-03 16:40:59 | INFO | 15061222450CEEK | Adding Beezup Marketplace Information to Order
24
+ 2015-07-03 16:40:59 | INFO | 15061222450CEEK | Sending Magento Order Id to Beezup, Magento Order Id: 17
25
+ 2015-07-03 16:41:01 | INFO | 15061222450CEEK | Setting Order Status to Shipped
26
+ 2015-07-03 16:41:01 | INFO | 15061222450CEEK | Generating Order Payment Invoice
27
+ 2015-07-03 16:41:03 | INFO | 15061222450CEEK | Order Payment Invoice Generated Succesfully
28
+ 2015-07-03 16:41:03 | INFO | 15061222450CEEK | Order imported succesfully, Magento Order Id: 17
29
+ 2015-07-03 16:41:04 | INFO | 15061311470E2VD | Initializing Order - Link: /orders/v1/36b1bfa1-e385-4650-8485-f49a5d6a6639/CDiscount/2726/8D273E1BF80F02262b65508722746a88db4b17a392cf1e2
30
+ 2015-07-03 16:41:04 | INFO | 15061311470E2VD | Store Matching succesful, Beezup Store: fae21e9a-9581-4232-a6f7-b8aebafc3865 , Magento Store Id: 1
31
+ 2015-07-03 16:41:04 | ERROR | 15061311470E2VD| No Product Matching, Product 05-000-df could not be found
32
+ 2015-07-03 16:41:04 | INFO | 15061311470E2VD | Generating Order
33
+ 2015-07-03 16:41:05 | INFO | 15061311470E2VD | Adding 1 product/s with id 805 to order, with Beezup Price: 39.9
34
+ 2015-07-03 16:41:05 | INFO | 15061311470E2VD | Adding Order Shipping Cost: 9.8
35
+ 2015-07-03 16:41:05 | INFO | 15061311470E2VD | Adding Beezup Marketplace Information to Order
36
+ 2015-07-03 16:41:05 | INFO | 15061311470E2VD | Sending Magento Order Id to Beezup, Magento Order Id: 18
37
+ 2015-07-03 16:41:07 | INFO | 15061311470E2VD | Setting Order Status to Shipped
38
+ 2015-07-03 16:41:07 | INFO | 15061311470E2VD | Generating Order Payment Invoice
39
+ 2015-07-03 16:41:07 | INFO | 15061311470E2VD | Order Payment Invoice Generated Succesfully
40
+ 2015-07-03 16:41:07 | INFO | 15061311470E2VD | Order imported succesfully, Magento Order Id: 18
41
+ 2015-07-03 16:41:08 | INFO | 15061223070CI1N | Initializing Order - Link: /orders/v1/36b1bfa1-e385-4650-8485-f49a5d6a6639/CDiscount/2726/8D273A773B702429386b2ff2a9145c4b618a1d866a4a4ac
42
+ 2015-07-03 16:41:08 | INFO | 15061223070CI1N | Store Matching succesful, Beezup Store: fae21e9a-9581-4232-a6f7-b8aebafc3865 , Magento Store Id: 1
43
+ 2015-07-03 16:41:08 | ERROR | 15061223070CI1N| No Product Matching, Product icfalm35c84 could not be found
44
+ 2015-07-03 16:41:09 | INFO | 15061223070CI1N | Generating Order
45
+ 2015-07-03 16:41:09 | INFO | 15061223070CI1N | Adding 1 product/s with id 806 to order, with Beezup Price: 12.9
46
+ 2015-07-03 16:41:09 | INFO | 15061223070CI1N | Adding Order Shipping Cost: 7.64
47
+ 2015-07-03 16:41:10 | INFO | 15061223070CI1N | Adding Beezup Marketplace Information to Order
48
+ 2015-07-03 16:41:10 | INFO | 15061223070CI1N | Sending Magento Order Id to Beezup, Magento Order Id: 19
49
+ 2015-07-03 16:41:11 | INFO | 15061223070CI1N | Setting Order Status to Shipped
50
+ 2015-07-03 16:41:11 | INFO | 15061223070CI1N | Generating Order Payment Invoice
51
+ 2015-07-03 16:41:11 | INFO | 15061223070CI1N | Order Payment Invoice Generated Succesfully
52
+ 2015-07-03 16:41:11 | INFO | 15061223070CI1N | Order imported succesfully, Magento Order Id: 19
53
+ 2015-07-03 16:41:13 | INFO | 15061416500KU81 | Initializing Order - Link: /orders/v1/36b1bfa1-e385-4650-8485-f49a5d6a6639/CDiscount/2726/8D274CCB788712E0bcece231dd5466c8fa4e4394e579df1
54
+ 2015-07-03 16:41:13 | INFO | 15061416500KU81 | Store Matching succesful, Beezup Store: fae21e9a-9581-4232-a6f7-b8aebafc3865 , Magento Store Id: 1
55
+ 2015-07-03 16:41:13 | INFO | 15061416500KU81 | Product Matching succesful, Beezup Imported Id: icfalm35c84 , Magento Product Id: 806
56
+ 2015-07-03 16:41:13 | INFO | 15061416500KU81 | Store Matching succesful, Beezup Store: fae21e9a-9581-4232-a6f7-b8aebafc3865 , Magento Store Id: 1
57
+ 2015-07-03 16:41:13 | ERROR | 15061416500KU81| No Product Matching, Product icfalm35cai could not be found
58
+ 2015-07-03 16:41:13 | INFO | 15061416500KU81 | Store Matching succesful, Beezup Store: fae21e9a-9581-4232-a6f7-b8aebafc3865 , Magento Store Id: 1
59
+ 2015-07-03 16:41:13 | ERROR | 15061416500KU81| No Product Matching, Product icfalm35c92 could not be found
60
+ 2015-07-03 16:41:14 | INFO | 15061416500KU81 | Generating Order
61
+ 2015-07-03 16:41:14 | INFO | 15061416500KU81 | Adding 1 product/s with id 806 to order, with Beezup Price: 12.9
62
+ 2015-07-03 16:41:14 | INFO | 15061416500KU81 | Product 806 Stock = 0, Updating to 1 to generate Order
63
+ 2015-07-03 16:41:15 | INFO | 15061416500KU81 | Adding 1 product/s with id 807 to order, with Beezup Price: 12.9
64
+ 2015-07-03 16:41:15 | INFO | 15061416500KU81 | Adding 1 product/s with id 808 to order, with Beezup Price: 12.9
65
+ 2015-07-03 16:41:15 | INFO | 15061416500KU81 | Adding Order Shipping Cost: 7.64
66
+ 2015-07-03 16:41:16 | INFO | 15061416500KU81 | Adding Beezup Marketplace Information to Order
67
+ 2015-07-03 16:41:16 | INFO | 15061416500KU81 | Sending Magento Order Id to Beezup, Magento Order Id: 20
68
+ 2015-07-03 16:41:17 | INFO | 15061416500KU81 | Setting Order Status to Shipped
69
+ 2015-07-03 16:41:17 | INFO | 15061416500KU81 | Generating Order Payment Invoice
70
+ 2015-07-03 16:41:17 | INFO | 15061416500KU81 | Order Payment Invoice Generated Succesfully
71
+ 2015-07-03 16:41:18 | INFO | 15061416500KU81 | Order imported succesfully, Magento Order Id: 20
72
+ 2015-07-03 16:41:19 | INFO | 15061417460L87J | Initializing Order - Link: /orders/v1/36b1bfa1-e385-4650-8485-f49a5d6a6639/CDiscount/2726/8D274D50966E8A92c18f9699c1e4a6987b5d7b0be71906f
73
+ 2015-07-03 16:41:19 | INFO | 15061417460L87J | Store Matching succesful, Beezup Store: fae21e9a-9581-4232-a6f7-b8aebafc3865 , Magento Store Id: 1
74
+ 2015-07-03 16:41:19 | ERROR | 15061417460L87J| No Product Matching, Product sgnr-noire could not be found
75
+ 2015-07-03 16:41:19 | INFO | 15061417460L87J | Store Matching succesful, Beezup Store: , Magento Store Id:
76
+ 2015-07-03 16:41:19 | INFO | 15061417460L87J | Generating Order
77
+ 2015-07-03 16:41:20 | INFO | 15061417460L87J | Adding 1 product/s with id 809 to order, with Beezup Price: 44.9
78
+ 2015-07-03 16:41:20 | INFO | 15061417460L87J | Adding Order Shipping Cost: 9.8
79
+ 2015-07-03 16:41:20 | INFO | 15061417460L87J | Adding Beezup Marketplace Information to Order
80
+ 2015-07-03 16:41:20 | INFO | 15061417460L87J | Adding CDISCOUNT products with total price: 1.26
81
+ 2015-07-03 16:41:20 | INFO | 15061417460L87J | Sending Magento Order Id to Beezup, Magento Order Id: 21
82
+ 2015-07-03 16:41:24 | INFO | 15061417460L87J | Setting Order Status to Shipped
83
+ 2015-07-03 16:41:24 | INFO | 15061417460L87J | Generating Order Payment Invoice
84
+ 2015-07-03 16:41:24 | INFO | 15061417460L87J | Order Payment Invoice Generated Succesfully
85
+ 2015-07-03 16:41:24 | INFO | 15061417460L87J | Order imported succesfully, Magento Order Id: 21
86
+ 2015-07-03 16:41:26 | INFO | 15061501430NZF9 | Initializing Order - Link: /orders/v1/36b1bfa1-e385-4650-8485-f49a5d6a6639/CDiscount/2726/8D27539BD84FAEDe6f508761533474bb24a5bd7d6ecbd68
87
+ 2015-07-03 16:41:26 | INFO | 15061501430NZF9 | Store Matching succesful, Beezup Store: fae21e9a-9581-4232-a6f7-b8aebafc3865 , Magento Store Id: 1
88
+ 2015-07-03 16:41:26 | INFO | 15061501430NZF9 | Product Matching succesful, Beezup Imported Id: icfalm35c84 , Magento Product Id: 806
89
+ 2015-07-03 16:41:26 | INFO | 15061501430NZF9 | Store Matching succesful, Beezup Store: , Magento Store Id:
90
+ 2015-07-03 16:41:26 | INFO | 15061501430NZF9 | Generating Order
91
+ 2015-07-03 16:41:26 | INFO | 15061501430NZF9 | Adding 1 product/s with id 806 to order, with Beezup Price: 12.9
92
+ 2015-07-03 16:41:26 | INFO | 15061501430NZF9 | Product 806 Stock = 0, Updating to 1 to generate Order
93
+ 2015-07-03 16:41:26 | INFO | 15061501430NZF9 | Adding Order Shipping Cost: 7.64
94
+ 2015-07-03 16:41:27 | INFO | 15061501430NZF9 | Adding Beezup Marketplace Information to Order
95
+ 2015-07-03 16:41:27 | INFO | 15061501430NZF9 | Adding CDISCOUNT products with total price: 0.46
96
+ 2015-07-03 16:41:27 | INFO | 15061501430NZF9 | Sending Magento Order Id to Beezup, Magento Order Id: 22
97
+ 2015-07-03 16:41:29 | INFO | 15061501430NZF9 | Setting Order Status to Shipped
98
+ 2015-07-03 16:41:29 | INFO | 15061501430NZF9 | Generating Order Payment Invoice
99
+ 2015-07-03 16:41:29 | INFO | 15061501430NZF9 | Order Payment Invoice Generated Succesfully
100
+ 2015-07-03 16:41:29 | INFO | 15061501430NZF9 | Order imported succesfully, Magento Order Id: 22
101
+ 2015-07-03 16:41:30 | INFO | 15061512080PG10 | Initializing Order - Link: /orders/v1/36b1bfa1-e385-4650-8485-f49a5d6a6639/CDiscount/2726/8D2756C2BBD29B73f7f0f24e1d342e3a5ed29513307eccd
102
+ 2015-07-03 16:41:30 | INFO | 15061512080PG10 | Store Matching succesful, Beezup Store: fae21e9a-9581-4232-a6f7-b8aebafc3865 , Magento Store Id: 1
103
+ 2015-07-03 16:41:30 | ERROR | 15061512080PG10| No Product Matching, Product sggr-gr could not be found
104
+ 2015-07-03 16:41:31 | INFO | 15061512080PG10 | Generating Order
105
+ 2015-07-03 16:41:31 | INFO | 15061512080PG10 | Adding 1 product/s with id 810 to order, with Beezup Price: 44.9
106
+ 2015-07-03 16:41:31 | INFO | 15061512080PG10 | Adding Order Shipping Cost: 9.8
107
+ 2015-07-03 16:41:32 | INFO | 15061512080PG10 | Adding Beezup Marketplace Information to Order
108
+ 2015-07-03 16:41:32 | INFO | 15061512080PG10 | Sending Magento Order Id to Beezup, Magento Order Id: 23
109
+ 2015-07-03 16:41:34 | INFO | 15061512080PG10 | Setting Order Status to Shipped
110
+ 2015-07-03 16:41:34 | INFO | 15061512080PG10 | Generating Order Payment Invoice
111
+ 2015-07-03 16:41:34 | INFO | 15061512080PG10 | Order Payment Invoice Generated Succesfully
112
+ 2015-07-03 16:41:35 | INFO | 15061512080PG10 | Order imported succesfully, Magento Order Id: 23
113
+ 2015-07-03 16:41:36 | INFO | 15061511310P7U2 | Initializing Order - Link: /orders/v1/36b1bfa1-e385-4650-8485-f49a5d6a6639/CDiscount/2726/8D276FED1E6701C197474af98f342fe8d615353c5c98823
114
+ 2015-07-03 16:41:36 | INFO | 15061511310P7U2 | Store Matching succesful, Beezup Store: fae21e9a-9581-4232-a6f7-b8aebafc3865 , Magento Store Id: 1
115
+ 2015-07-03 16:41:36 | ERROR | 15061511310P7U2| No Product Matching, Product 652656 could not be found
116
+ 2015-07-03 16:41:36 | INFO | 15061511310P7U2 | Store Matching succesful, Beezup Store: fae21e9a-9581-4232-a6f7-b8aebafc3865 , Magento Store Id: 1
117
+ 2015-07-03 16:41:36 | ERROR | 15061511310P7U2| No Product Matching, Product 654702 could not be found
118
+ 2015-07-03 16:41:37 | INFO | 15061511310P7U2 | Generating Order
119
+ 2015-07-03 16:41:37 | INFO | 15061511310P7U2 | Adding 2 product/s with id 811 to order, with Beezup Price: 27.9
120
+ 2015-07-03 16:41:37 | INFO | 15061511310P7U2 | Product 811 Stock = 0, Updating to 2 to generate Order
121
+ 2015-07-03 16:41:38 | INFO | 15061511310P7U2 | Adding 2 product/s with id 812 to order, with Beezup Price: 17.9
122
+ 2015-07-03 16:41:38 | INFO | 15061511310P7U2 | Product 812 Stock = 0, Updating to 2 to generate Order
123
+ 2015-07-03 16:41:38 | INFO | 15061511310P7U2 | Adding Order Shipping Cost: 0
124
+ 2015-07-03 16:41:39 | INFO | 15061511310P7U2 | Adding Beezup Marketplace Information to Order
125
+ 2015-07-03 16:41:39 | INFO | 15061511310P7U2 | Sending Magento Order Id to Beezup, Magento Order Id: 24
126
+ 2015-07-03 16:41:41 | INFO | 15061511310P7U2 | Setting Order Status to Cancelled
127
+ 2015-07-03 16:41:41 | INFO | 15061511310P7U2 | Order imported succesfully, Magento Order Id: 24
128
+ 2015-07-03 16:41:42 | INFO | 1506092103ZTBOX | Initializing Order - Link: /orders/v1/36b1bfa1-e385-4650-8485-f49a5d6a6639/CDiscount/2726/8D27109129F81C4662086aea5684a3dacdd6ddae9d9fbc9
129
+ 2015-07-03 16:41:42 | INFO | 1506092103ZTBOX | Store Matching succesful, Beezup Store: fae21e9a-9581-4232-a6f7-b8aebafc3865 , Magento Store Id: 1
130
+ 2015-07-03 16:41:42 | ERROR | 1506092103ZTBOX| No Product Matching, Product sgnr-ny could not be found
131
+ 2015-07-03 16:41:43 | INFO | 1506092103ZTBOX | Generating Order
132
+ 2015-07-03 16:41:43 | INFO | 1506092103ZTBOX | Adding 1 product/s with id 813 to order, with Beezup Price: 49.9
133
+ 2015-07-03 16:41:43 | INFO | 1506092103ZTBOX | Adding Order Shipping Cost: 9.8
134
+ 2015-07-03 16:41:43 | INFO | 1506092103ZTBOX | Adding Beezup Marketplace Information to Order
135
+ 2015-07-03 16:41:43 | INFO | 1506092103ZTBOX | Sending Magento Order Id to Beezup, Magento Order Id: 25
136
+ 2015-07-03 16:41:44 | INFO | 1506092103ZTBOX | Setting Order Status to Shipped
137
+ 2015-07-03 16:41:44 | INFO | 1506092103ZTBOX | Generating Order Payment Invoice
138
+ 2015-07-03 16:41:45 | INFO | 1506092103ZTBOX | Order Payment Invoice Generated Succesfully
139
+ 2015-07-03 16:41:45 | INFO | 1506092103ZTBOX | Order imported succesfully, Magento Order Id: 25
140
+ 2015-07-03 16:41:46 | INFO | 1506101725ZY97M | Initializing Order - Link: /orders/v1/36b1bfa1-e385-4650-8485-f49a5d6a6639/CDiscount/2726/8D271B0952CD2BFec8f610cba2c4374a0ad3dc2c0c378ec
141
+ 2015-07-03 16:41:46 | INFO | 1506101725ZY97M | Store Matching succesful, Beezup Store: fae21e9a-9581-4232-a6f7-b8aebafc3865 , Magento Store Id: 1
142
+ 2015-07-03 16:41:46 | INFO | 1506101725ZY97M | Product Matching succesful, Beezup Imported Id: sgdnr-noire , Magento Product Id: 776
143
+ 2015-07-03 16:41:46 | INFO | 1506101725ZY97M | Updating Etag
144
+ 2015-07-03 16:41:46 | INFO | 1506101725ZY97M | Order Already exists Mage Order ID: 15
145
+ 2015-07-03 16:41:46 | INFO | 1506101725ZY97M | Updating Order Status from: Pending to: Shipped
146
+ 2015-07-03 16:41:46 | INFO | 1506101725ZY97M | Setting Order Status to Shipped
147
+ 2015-07-03 16:41:46 | INFO | 1506101725ZY97M | Generating Order Payment Invoice
148
+ 2015-07-03 16:41:46 | INFO | 1506101725ZY97M | Order Payment Invoice Generated Succesfully
149
+ 2015-07-03 16:41:48 | INFO | 150612004906P47 | Initializing Order - Link: /orders/v1/36b1bfa1-e385-4650-8485-f49a5d6a6639/CDiscount/2726/8D272DE8B124E5Ff38c91b4dcc4466bb35b33cec7c0071a
150
+ 2015-07-03 16:41:48 | INFO | 150612004906P47 | Store Matching succesful, Beezup Store: fae21e9a-9581-4232-a6f7-b8aebafc3865 , Magento Store Id: 1
151
+ 2015-07-03 16:41:48 | INFO | 150612004906P47 | Product Matching succesful, Beezup Imported Id: sgbl-bret , Magento Product Id: 791
152
+ 2015-07-03 16:41:48 | INFO | 150612004906P47 | Store Matching succesful, Beezup Store: , Magento Store Id:
153
+ 2015-07-03 16:41:48 | INFO | 150612004906P47 | Generating Order
154
+ 2015-07-03 16:41:48 | INFO | 150612004906P47 | Adding 1 product/s with id 791 to order, with Beezup Price: 49.9
155
+ 2015-07-03 16:41:48 | INFO | 150612004906P47 | Product 791 Stock = 0, Updating to 1 to generate Order
156
+ 2015-07-03 16:41:49 | INFO | 150612004906P47 | Adding Order Shipping Cost: 9.8
157
+ 2015-07-03 16:41:50 | INFO | 150612004906P47 | Adding Beezup Marketplace Information to Order
158
+ 2015-07-03 16:41:50 | INFO | 150612004906P47 | Adding CDISCOUNT products with total price: 1.36
159
+ 2015-07-03 16:41:50 | INFO | 150612004906P47 | Sending Magento Order Id to Beezup, Magento Order Id: 26
160
+ 2015-07-03 16:41:51 | INFO | 150612004906P47 | Setting Order Status to Shipped
161
+ 2015-07-03 16:41:51 | INFO | 150612004906P47 | Generating Order Payment Invoice
162
+ 2015-07-03 16:41:51 | INFO | 150612004906P47 | Order Payment Invoice Generated Succesfully
163
+ 2015-07-03 16:41:51 | INFO | 150612004906P47 | Order imported succesfully, Magento Order Id: 26
164
+ 2015-07-03 16:41:53 | INFO | 15061409530IEUG | Initializing Order - Link: /orders/v1/36b1bfa1-e385-4650-8485-f49a5d6a6639/CDiscount/2726/8D2749980FD967Bb69050d0af2e44899fa83c7deaa076aa
165
+ 2015-07-03 16:41:53 | INFO | 15061409530IEUG | Store Matching succesful, Beezup Store: , Magento Store Id:
166
+ 2015-07-03 16:41:53 | INFO | 15061409530IEUG | Store Matching succesful, Beezup Store: fae21e9a-9581-4232-a6f7-b8aebafc3865 , Magento Store Id: 1
167
+ 2015-07-03 16:41:53 | INFO | 15061409530IEUG | Product Matching succesful, Beezup Imported Id: 654656 , Magento Product Id: 801
168
+ 2015-07-03 16:41:53 | INFO | 15061409530IEUG | Generating Order
169
+ 2015-07-03 16:41:53 | INFO | 15061409530IEUG | Adding 2 product/s with id 801 to order, with Beezup Price: 27.9
170
+ 2015-07-03 16:41:53 | INFO | 15061409530IEUG | Product 801 Stock = 0, Updating to 2 to generate Order
171
+ 2015-07-03 16:41:53 | INFO | 15061409530IEUG | Adding Order Shipping Cost: 0
172
+ 2015-07-03 16:41:54 | INFO | 15061409530IEUG | Adding Beezup Marketplace Information to Order
173
+ 2015-07-03 16:41:54 | INFO | 15061409530IEUG | Adding CDISCOUNT products with total price: 1.49
174
+ 2015-07-03 16:41:54 | INFO | 15061409530IEUG | Sending Magento Order Id to Beezup, Magento Order Id: 27
175
+ 2015-07-03 16:41:55 | INFO | 15061409530IEUG | Setting Order Status to Cancelled
176
+ 2015-07-03 16:41:56 | INFO | 15061409530IEUG | Order imported succesfully, Magento Order Id: 27
177
+ 2015-07-03 16:41:57 | INFO | 15061411150IUFN | Initializing Order - Link: /orders/v1/36b1bfa1-e385-4650-8485-f49a5d6a6639/CDiscount/2726/8D274AB314BD3DE345bfd1815ba42c993d6ad17cd0746ed
178
+ 2015-07-03 16:41:57 | INFO | 15061411150IUFN | Store Matching succesful, Beezup Store: fae21e9a-9581-4232-a6f7-b8aebafc3865 , Magento Store Id: 1
179
+ 2015-07-03 16:41:57 | ERROR | 15061411150IUFN| No Product Matching, Product 654602 could not be found
180
+ 2015-07-03 16:41:57 | INFO | 15061411150IUFN | Store Matching succesful, Beezup Store: fae21e9a-9581-4232-a6f7-b8aebafc3865 , Magento Store Id: 1
181
+ 2015-07-03 16:41:57 | INFO | 15061411150IUFN | Product Matching succesful, Beezup Imported Id: 654702 , Magento Product Id: 812
182
+ 2015-07-03 16:41:57 | INFO | 15061411150IUFN | Generating Order
183
+ 2015-07-03 16:41:57 | INFO | 15061411150IUFN | Adding 2 product/s with id 814 to order, with Beezup Price: 27.9
184
+ 2015-07-03 16:41:57 | INFO | 15061411150IUFN | Product 814 Stock = 0, Updating to 2 to generate Order
185
+ 2015-07-03 16:41:58 | INFO | 15061411150IUFN | Adding 2 product/s with id 812 to order, with Beezup Price: 17.9
186
+ 2015-07-03 16:41:58 | INFO | 15061411150IUFN | Product 812 Stock = 0, Updating to 2 to generate Order
187
+ 2015-07-03 16:41:59 | INFO | 15061411150IUFN | Adding Order Shipping Cost: 0
188
+ 2015-07-03 16:41:59 | INFO | 15061411150IUFN | Adding Beezup Marketplace Information to Order
189
+ 2015-07-03 16:41:59 | INFO | 15061411150IUFN | Sending Magento Order Id to Beezup, Magento Order Id: 28
190
+ 2015-07-03 16:42:01 | INFO | 15061411150IUFN | Setting Order Status to Cancelled
191
+ 2015-07-03 16:42:01 | INFO | 15061411150IUFN | Order imported succesfully, Magento Order Id: 28
192
+ 2015-07-03 16:42:02 | INFO | 1506090021ZO2WN | Initializing Order - Link: /orders/v1/36b1bfa1-e385-4650-8485-f49a5d6a6639/CDiscount/2726/8D27083FCA02854133bbd85040a40ab8fe99f929a061262
193
+ 2015-07-03 16:42:02 | INFO | 1506090021ZO2WN | Store Matching succesful, Beezup Store: fae21e9a-9581-4232-a6f7-b8aebafc3865 , Magento Store Id: 1
194
+ 2015-07-03 16:42:02 | INFO | 1506090021ZO2WN | Product Matching succesful, Beezup Imported Id: sgnr-gt , Magento Product Id: 800
195
+ 2015-07-03 16:42:02 | INFO | 1506090021ZO2WN | Updating Etag
196
+ 2015-07-03 16:42:02 | INFO | 1506090021ZO2WN | Order Already exists Mage Order ID: 1
197
+ 2015-07-03 16:42:02 | INFO | 1506090021ZO2WN | Updating Order Status from: Pending to: Shipped
198
+ 2015-07-03 16:42:02 | INFO | 1506090021ZO2WN | Setting Order Status to Shipped
199
+ 2015-07-03 16:42:02 | INFO | 1506090021ZO2WN | Generating Order Payment Invoice
200
+ 2015-07-03 16:42:02 | INFO | 1506090021ZO2WN | Order Payment Invoice Generated Succesfully
201
+ 2015-07-03 16:42:04 | INFO | 1506091539ZR3FD | Initializing Order - Link: /orders/v1/36b1bfa1-e385-4650-8485-f49a5d6a6639/CDiscount/2726/8D270D6BAA837178effc884db814770a9c4d7edc297539f
202
+ 2015-07-03 16:42:04 | INFO | 1506091539ZR3FD | Store Matching succesful, Beezup Store: fae21e9a-9581-4232-a6f7-b8aebafc3865 , Magento Store Id: 1
203
+ 2015-07-03 16:42:04 | ERROR | 1506091539ZR3FD| No Product Matching, Product sgdbl-bdm could not be found
204
+ 2015-07-03 16:42:04 | INFO | 1506091539ZR3FD | Generating Order
205
+ 2015-07-03 16:42:04 | INFO | 1506091539ZR3FD | Adding 1 product/s with id 815 to order, with Beezup Price: 64.9
206
+ 2015-07-03 16:42:04 | INFO | 1506091539ZR3FD | Adding Order Shipping Cost: 9.8
207
+ 2015-07-03 16:42:05 | INFO | 1506091539ZR3FD | Adding Beezup Marketplace Information to Order
208
+ 2015-07-03 16:42:05 | INFO | 1506091539ZR3FD | Sending Magento Order Id to Beezup, Magento Order Id: 29
209
+ 2015-07-03 16:42:06 | INFO | 1506091539ZR3FD | Setting Order Status to Shipped
210
+ 2015-07-03 16:42:06 | INFO | 1506091539ZR3FD | Generating Order Payment Invoice
211
+ 2015-07-03 16:42:06 | INFO | 1506091539ZR3FD | Order Payment Invoice Generated Succesfully
212
+ 2015-07-03 16:42:07 | INFO | 1506091539ZR3FD | Order imported succesfully, Magento Order Id: 29
213
+ 2015-07-03 16:42:08 | INFO | 150611165203WSL | Initializing Order - Link: /orders/v1/36b1bfa1-e385-4650-8485-f49a5d6a6639/CDiscount/2726/8D272716E47F57F1524c9a47aa845989f3dd2ac1c37151c
214
+ 2015-07-03 16:42:08 | INFO | 150611165203WSL | Store Matching succesful, Beezup Store: fae21e9a-9581-4232-a6f7-b8aebafc3865 , Magento Store Id: 1
215
+ 2015-07-03 16:42:08 | INFO | 150611165203WSL | Product Matching succesful, Beezup Imported Id: 05-000-sf , Magento Product Id: 780
216
+ 2015-07-03 16:42:08 | INFO | 150611165203WSL | Generating Order
217
+ 2015-07-03 16:42:08 | INFO | 150611165203WSL | Adding 1 product/s with id 780 to order, with Beezup Price: 29.9
218
+ 2015-07-03 16:42:08 | INFO | 150611165203WSL | Product 780 Stock = 0, Updating to 1 to generate Order
219
+ 2015-07-03 16:42:09 | INFO | 150611165203WSL | Adding Order Shipping Cost: 9.8
220
+ 2015-07-03 16:42:09 | INFO | 150611165203WSL | Adding Beezup Marketplace Information to Order
221
+ 2015-07-03 16:42:09 | INFO | 150611165203WSL | Sending Magento Order Id to Beezup, Magento Order Id: 30
222
+ 2015-07-03 16:42:11 | INFO | 150611165203WSL | Setting Order Status to Shipped
223
+ 2015-07-03 16:42:11 | INFO | 150611165203WSL | Generating Order Payment Invoice
224
+ 2015-07-03 16:42:11 | INFO | 150611165203WSL | Order Payment Invoice Generated Succesfully
225
+ 2015-07-03 16:42:11 | INFO | 150611165203WSL | Order imported succesfully, Magento Order Id: 30
226
+ 2015-07-03 16:42:12 | INFO | 150611074601BEG | Initializing Order - Link: /orders/v1/36b1bfa1-e385-4650-8485-f49a5d6a6639/CDiscount/2726/8D27225B7F5A2A5f37db70cbead4bdb914e9b2158e8cfe1
227
+ 2015-07-03 16:42:12 | INFO | 150611074601BEG | Store Matching succesful, Beezup Store: fae21e9a-9581-4232-a6f7-b8aebafc3865 , Magento Store Id: 1
228
+ 2015-07-03 16:42:12 | ERROR | 150611074601BEG| No Product Matching, Product 006504-179 could not be found
229
+ 2015-07-03 16:42:13 | INFO | 150611074601BEG | Generating Order
230
+ 2015-07-03 16:42:13 | INFO | 150611074601BEG | Adding 1 product/s with id 816 to order, with Beezup Price: 6.9
231
+ 2015-07-03 16:42:13 | INFO | 150611074601BEG | Adding Order Shipping Cost: 5.69
232
+ 2015-07-03 16:42:13 | INFO | 150611074601BEG | Adding Beezup Marketplace Information to Order
233
+ 2015-07-03 16:42:13 | INFO | 150611074601BEG | Sending Magento Order Id to Beezup, Magento Order Id: 31
234
+ 2015-07-03 16:42:15 | INFO | 150611074601BEG | Setting Order Status to Shipped
235
+ 2015-07-03 16:42:15 | INFO | 150611074601BEG | Generating Order Payment Invoice
236
+ 2015-07-03 16:42:15 | INFO | 150611074601BEG | Order Payment Invoice Generated Succesfully
237
+ 2015-07-03 16:42:15 | INFO | 150611074601BEG | Order imported succesfully, Magento Order Id: 31
238
+ 2015-07-03 16:42:16 | INFO | 150611101901UP8 | Initializing Order - Link: /orders/v1/36b1bfa1-e385-4650-8485-f49a5d6a6639/CDiscount/2726/8D272696D0C03D2014cb4ef22584c0a83a35568fbd7a42d
239
+ 2015-07-03 16:42:16 | INFO | 150611101901UP8 | Store Matching succesful, Beezup Store: fae21e9a-9581-4232-a6f7-b8aebafc3865 , Magento Store Id: 1
240
+ 2015-07-03 16:42:16 | INFO | 150611101901UP8 | Product Matching succesful, Beezup Imported Id: 04-000-df , Magento Product Id: 799
241
+ 2015-07-03 16:42:16 | INFO | 150611101901UP8 | Generating Order
242
+ 2015-07-03 16:42:16 | INFO | 150611101901UP8 | Adding 1 product/s with id 799 to order, with Beezup Price: 39.9
243
+ 2015-07-03 16:42:16 | INFO | 150611101901UP8 | Product 799 Stock = 0, Updating to 1 to generate Order
244
+ 2015-07-03 16:42:17 | INFO | 150611101901UP8 | Adding Order Shipping Cost: 9.8
245
+ 2015-07-03 16:42:18 | INFO | 150611101901UP8 | Adding Beezup Marketplace Information to Order
246
+ 2015-07-03 16:42:18 | INFO | 150611101901UP8 | Sending Magento Order Id to Beezup, Magento Order Id: 32
247
+ 2015-07-03 16:42:19 | INFO | 150611101901UP8 | Setting Order Status to Shipped
248
+ 2015-07-03 16:42:19 | INFO | 150611101901UP8 | Generating Order Payment Invoice
249
+ 2015-07-03 16:42:19 | INFO | 150611101901UP8 | Order Payment Invoice Generated Succesfully
250
+ 2015-07-03 16:42:19 | INFO | 150611101901UP8 | Order imported succesfully, Magento Order Id: 32
251
+ 2015-07-03 16:42:21 | INFO | 150611135502WXM | Initializing Order - Link: /orders/v1/36b1bfa1-e385-4650-8485-f49a5d6a6639/CDiscount/2726/8D272696CB8A738e2d9c367bb084665a60d7cf0aa626247
252
+ 2015-07-03 16:42:21 | INFO | 150611135502WXM | Store Matching succesful, Beezup Store: fae21e9a-9581-4232-a6f7-b8aebafc3865 , Magento Store Id: 1
253
+ 2015-07-03 16:42:21 | INFO | 150611135502WXM | Product Matching succesful, Beezup Imported Id: 01-000-df , Magento Product Id: 781
254
+ 2015-07-03 16:42:21 | INFO | 150611135502WXM | Generating Order
255
+ 2015-07-03 16:42:21 | INFO | 150611135502WXM | Adding 1 product/s with id 781 to order, with Beezup Price: 39.9
256
+ 2015-07-03 16:42:21 | INFO | 150611135502WXM | Product 781 Stock = 0, Updating to 1 to generate Order
257
+ 2015-07-03 16:42:21 | INFO | 150611135502WXM | Adding Order Shipping Cost: 9.8
258
+ 2015-07-03 16:42:22 | INFO | 150611135502WXM | Adding Beezup Marketplace Information to Order
259
+ 2015-07-03 16:42:22 | INFO | 150611135502WXM | Sending Magento Order Id to Beezup, Magento Order Id: 33
260
+ 2015-07-03 16:42:23 | INFO | 150611135502WXM | Setting Order Status to Shipped
261
+ 2015-07-03 16:42:23 | INFO | 150611135502WXM | Generating Order Payment Invoice
262
+ 2015-07-03 16:42:23 | INFO | 150611135502WXM | Order Payment Invoice Generated Succesfully
263
+ 2015-07-03 16:42:24 | INFO | 150611135502WXM | Order imported succesfully, Magento Order Id: 33
264
+ 2015-07-03 16:42:24 | INFO | OM Importation finalized succesfully
265
+ 2015-07-06 15:41:38 | INFO | Initializing OM Importation
266
+ 2015-07-06 15:41:43 | INFO | 403-2228936-6434709 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D284255640EDC78417fb212ec941979c39fdf3757f7a5f
267
+ 2015-07-06 15:41:43 | ERROR | 403-2228936-6434709 | No mapping for store bdd7b7cf-558c-48a1-984b-00303aecdc34
268
+ 2015-07-06 15:41:45 | INFO | 171-2055945-7068310 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D2842556BF547261a0091f5f494a32b2c23d1f271780e2
269
+ 2015-07-06 15:41:45 | ERROR | 171-2055945-7068310 | No mapping for store bdd7b7cf-558c-48a1-984b-00303aecdc34
270
+ 2015-07-06 15:41:47 | INFO | 404-3292200-5293924 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D284EE873A31D1f8fb6486145942cfbf9000e471dec1de
271
+ 2015-07-06 15:41:47 | ERROR | 404-3292200-5293924 | No mapping for store bdd7b7cf-558c-48a1-984b-00303aecdc34
272
+ 2015-07-06 15:41:49 | INFO | 404-4485907-7747521 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D2842555D715EE64f5d0bf6f37453494abedc6ac6aadb0
273
+ 2015-07-06 15:41:49 | ERROR | 404-4485907-7747521 | No mapping for store bdd7b7cf-558c-48a1-984b-00303aecdc34
274
+ 2015-07-06 15:41:51 | INFO | 402-7147411-9897121 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D285B7A92B823250a06e8d45d04852af4da99719072656
275
+ 2015-07-06 15:41:51 | ERROR | 402-7147411-9897121 | No mapping for store bdd7b7cf-558c-48a1-984b-00303aecdc34
276
+ 2015-07-06 15:41:53 | INFO | 402-4624049-9532316 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D285B7A9291E4308d9bfb4bc894864b647f9e2f93147e5
277
+ 2015-07-06 15:41:53 | ERROR | 402-4624049-9532316 | No mapping for store bdd7b7cf-558c-48a1-984b-00303aecdc34
278
+ 2015-07-06 15:41:55 | INFO | 171-5633085-9672364 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D2857CEB607EC59b7777abd1da48e084d21a7f4cf41214
279
+ 2015-07-06 15:41:55 | ERROR | 171-5633085-9672364 | No mapping for store bdd7b7cf-558c-48a1-984b-00303aecdc34
280
+ 2015-07-06 15:41:57 | INFO | 171-5120387-4201949 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D28489DA139E8C54659df76881464a93d3f20a7def1eed
281
+ 2015-07-06 15:41:57 | ERROR | 171-5120387-4201949 | No mapping for store bdd7b7cf-558c-48a1-984b-00303aecdc34
282
+ 2015-07-06 15:41:59 | INFO | 404-9827833-6425940 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D285B7A994A3ACd1ff436cb2a74f08af85b70708739878
283
+ 2015-07-06 15:41:59 | ERROR | 404-9827833-6425940 | No mapping for store bdd7b7cf-558c-48a1-984b-00303aecdc34
284
+ 2015-07-06 15:42:01 | INFO | 402-6389421-1539515 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D28613C3271694794081cd2e7d44dfa3fc769d0160c7de
285
+ 2015-07-06 15:42:01 | ERROR | 402-6389421-1539515 | No mapping for store bdd7b7cf-558c-48a1-984b-00303aecdc34
286
+ 2015-07-06 15:42:03 | INFO | 403-4546648-5569109 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D28613C22DA03F2aa752a38a0f4570892dfe9ce238d7f8
287
+ 2015-07-06 15:42:03 | ERROR | 403-4546648-5569109 | No mapping for store bdd7b7cf-558c-48a1-984b-00303aecdc34
288
+ 2015-07-06 15:42:05 | INFO | 404-5774407-9236304 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D28613C1BDCDB6bc64f2ab8f134f32877a0825ccdd89e8
289
+ 2015-07-06 15:42:05 | ERROR | 404-5774407-9236304 | No mapping for store bdd7b7cf-558c-48a1-984b-00303aecdc34
290
+ 2015-07-06 15:42:06 | INFO | 404-3352985-1845103 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D28613C13787416ed9e9cc65174fb98326c01d43e4da5d
291
+ 2015-07-06 15:42:06 | ERROR | 404-3352985-1845103 | No mapping for store bdd7b7cf-558c-48a1-984b-00303aecdc34
292
+ 2015-07-06 15:42:08 | INFO | 171-0327187-5260369 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D2860B572333908338a9b7d30e41e2ab2859adc641c428
293
+ 2015-07-06 15:42:08 | ERROR | 171-0327187-5260369 | No mapping for store bdd7b7cf-558c-48a1-984b-00303aecdc34
294
+ 2015-07-06 15:42:10 | INFO | 402-5594906-6071532 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D2860B56AE6055aaf3bc1eca224c96b255f5fbf347c50e
295
+ 2015-07-06 15:42:10 | ERROR | 402-5594906-6071532 | No mapping for store bdd7b7cf-558c-48a1-984b-00303aecdc34
296
+ 2015-07-06 15:42:11 | INFO | 402-8157340-3239568 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D2860B56AE6055602fd054f5164871844273a0feeb4983
297
+ 2015-07-06 15:42:11 | ERROR | 402-8157340-3239568 | No mapping for store bdd7b7cf-558c-48a1-984b-00303aecdc34
298
+ 2015-07-06 15:42:12 | INFO | OM Importation finalized succesfully
299
+ 2015-07-06 15:42:38 | INFO | Initializing OM Importation
300
+ 2015-07-06 15:42:44 | INFO | 403-2228936-6434709 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D284255640EDC78417fb212ec941979c39fdf3757f7a5f
301
+ 2015-07-06 15:42:44 | INFO | 403-2228936-6434709 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
302
+ 2015-07-06 15:42:44 | ERROR | 403-2228936-6434709| No Product Matching, Product 15578 could not be found
303
+ 2015-07-06 15:42:45 | INFO | 403-2228936-6434709 | Generating Order
304
+ 2015-07-06 15:42:45 | INFO | 403-2228936-6434709 | Adding 1 product/s with id 817 to order, with Beezup Price: 19
305
+ 2015-07-06 15:42:45 | INFO | 403-2228936-6434709 | Adding Order Shipping Cost: 3
306
+ 2015-07-06 15:42:47 | INFO | 403-2228936-6434709 | Adding Beezup Marketplace Information to Order
307
+ 2015-07-06 15:42:47 | INFO | 403-2228936-6434709 | Sending Magento Order Id to Beezup, Magento Order Id: 34
308
+ 2015-07-06 15:42:48 | INFO | 403-2228936-6434709 | Setting Order Status to Shipped
309
+ 2015-07-06 15:42:48 | INFO | 403-2228936-6434709 | Generating Order Payment Invoice
310
+ 2015-07-06 15:42:50 | INFO | 403-2228936-6434709 | Order Payment Invoice Generated Succesfully
311
+ 2015-07-06 15:42:50 | INFO | 403-2228936-6434709 | Order imported succesfully, Magento Order Id: 34
312
+ 2015-07-06 15:42:52 | INFO | 171-2055945-7068310 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D2842556BF547261a0091f5f494a32b2c23d1f271780e2
313
+ 2015-07-06 15:42:52 | INFO | 171-2055945-7068310 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
314
+ 2015-07-06 15:42:52 | ERROR | 171-2055945-7068310| No Product Matching, Product 14254 could not be found
315
+ 2015-07-06 15:42:52 | INFO | 171-2055945-7068310 | Generating Order
316
+ 2015-07-06 15:42:52 | INFO | 171-2055945-7068310 | Adding 1 product/s with id 818 to order, with Beezup Price: 21
317
+ 2015-07-06 15:42:52 | INFO | 171-2055945-7068310 | Adding Order Shipping Cost: 3
318
+ 2015-07-06 15:42:53 | INFO | 171-2055945-7068310 | Adding Beezup Marketplace Information to Order
319
+ 2015-07-06 15:42:53 | INFO | 171-2055945-7068310 | Sending Magento Order Id to Beezup, Magento Order Id: 35
320
+ 2015-07-06 15:42:54 | INFO | 171-2055945-7068310 | Setting Order Status to Shipped
321
+ 2015-07-06 15:42:54 | INFO | 171-2055945-7068310 | Generating Order Payment Invoice
322
+ 2015-07-06 15:42:54 | INFO | 171-2055945-7068310 | Order Payment Invoice Generated Succesfully
323
+ 2015-07-06 15:42:55 | INFO | 171-2055945-7068310 | Order imported succesfully, Magento Order Id: 35
324
+ 2015-07-06 15:42:56 | INFO | 404-3292200-5293924 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D284EE873A31D1f8fb6486145942cfbf9000e471dec1de
325
+ 2015-07-06 15:42:56 | INFO | 404-3292200-5293924 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
326
+ 2015-07-06 15:42:56 | ERROR | 404-3292200-5293924| No Product Matching, Product 12649 could not be found
327
+ 2015-07-06 15:42:57 | INFO | 404-3292200-5293924 | Generating Order
328
+ 2015-07-06 15:42:57 | INFO | 404-3292200-5293924 | Adding 1 product/s with id 819 to order, with Beezup Price: 43
329
+ 2015-07-06 15:42:57 | INFO | 404-3292200-5293924 | Adding Order Shipping Cost: 3
330
+ 2015-07-06 15:42:57 | INFO | 404-3292200-5293924 | Adding Beezup Marketplace Information to Order
331
+ 2015-07-06 15:42:57 | INFO | 404-3292200-5293924 | Sending Magento Order Id to Beezup, Magento Order Id: 36
332
+ 2015-07-06 15:42:59 | INFO | 404-3292200-5293924 | Setting Order Status to Shipped
333
+ 2015-07-06 15:42:59 | INFO | 404-3292200-5293924 | Generating Order Payment Invoice
334
+ 2015-07-06 15:42:59 | INFO | 404-3292200-5293924 | Order Payment Invoice Generated Succesfully
335
+ 2015-07-06 15:42:59 | INFO | 404-3292200-5293924 | Order imported succesfully, Magento Order Id: 36
336
+ 2015-07-06 15:43:01 | INFO | 404-4485907-7747521 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D2842555D715EE64f5d0bf6f37453494abedc6ac6aadb0
337
+ 2015-07-06 15:43:01 | INFO | 404-4485907-7747521 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
338
+ 2015-07-06 15:43:01 | ERROR | 404-4485907-7747521| No Product Matching, Product 12646 could not be found
339
+ 2015-07-06 15:43:02 | INFO | 404-4485907-7747521 | Generating Order
340
+ 2015-07-06 15:43:02 | INFO | 404-4485907-7747521 | Adding 1 product/s with id 820 to order, with Beezup Price: 43
341
+ 2015-07-06 15:43:02 | INFO | 404-4485907-7747521 | Adding Order Shipping Cost: 3
342
+ 2015-07-06 15:43:03 | INFO | 404-4485907-7747521 | Adding Beezup Marketplace Information to Order
343
+ 2015-07-06 15:43:03 | INFO | 404-4485907-7747521 | Sending Magento Order Id to Beezup, Magento Order Id: 37
344
+ 2015-07-06 15:43:04 | INFO | 404-4485907-7747521 | Setting Order Status to Shipped
345
+ 2015-07-06 15:43:04 | INFO | 404-4485907-7747521 | Generating Order Payment Invoice
346
+ 2015-07-06 15:43:04 | INFO | 404-4485907-7747521 | Order Payment Invoice Generated Succesfully
347
+ 2015-07-06 15:43:05 | INFO | 404-4485907-7747521 | Order imported succesfully, Magento Order Id: 37
348
+ 2015-07-06 15:43:06 | INFO | 402-7147411-9897121 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D285B7A92B823250a06e8d45d04852af4da99719072656
349
+ 2015-07-06 15:43:06 | INFO | 402-7147411-9897121 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
350
+ 2015-07-06 15:43:06 | ERROR | 402-7147411-9897121| No Product Matching, Product 15729 could not be found
351
+ 2015-07-06 15:43:07 | INFO | 402-7147411-9897121 | Generating Order
352
+ 2015-07-06 15:43:07 | INFO | 402-7147411-9897121 | Adding 1 product/s with id 821 to order, with Beezup Price: 27
353
+ 2015-07-06 15:43:07 | INFO | 402-7147411-9897121 | Adding Order Shipping Cost: 3
354
+ 2015-07-06 15:43:08 | INFO | 402-7147411-9897121 | Adding Beezup Marketplace Information to Order
355
+ 2015-07-06 15:43:08 | INFO | 402-7147411-9897121 | Sending Magento Order Id to Beezup, Magento Order Id: 38
356
+ 2015-07-06 15:43:09 | INFO | 402-7147411-9897121 | Setting Order Status to Shipped
357
+ 2015-07-06 15:43:09 | INFO | 402-7147411-9897121 | Generating Order Payment Invoice
358
+ 2015-07-06 15:43:09 | INFO | 402-7147411-9897121 | Order Payment Invoice Generated Succesfully
359
+ 2015-07-06 15:43:09 | INFO | 402-7147411-9897121 | Order imported succesfully, Magento Order Id: 38
360
+ 2015-07-06 15:43:11 | INFO | 402-4624049-9532316 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D285B7A9291E4308d9bfb4bc894864b647f9e2f93147e5
361
+ 2015-07-06 15:43:11 | INFO | 402-4624049-9532316 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
362
+ 2015-07-06 15:43:11 | ERROR | 402-4624049-9532316| No Product Matching, Product 13291 could not be found
363
+ 2015-07-06 15:43:12 | INFO | 402-4624049-9532316 | Generating Order
364
+ 2015-07-06 15:43:12 | INFO | 402-4624049-9532316 | Adding 1 product/s with id 822 to order, with Beezup Price: 34
365
+ 2015-07-06 15:43:12 | INFO | 402-4624049-9532316 | Adding Order Shipping Cost: 3
366
+ 2015-07-06 15:43:12 | INFO | 402-4624049-9532316 | Adding Beezup Marketplace Information to Order
367
+ 2015-07-06 15:43:12 | INFO | 402-4624049-9532316 | Sending Magento Order Id to Beezup, Magento Order Id: 39
368
+ 2015-07-06 15:43:13 | INFO | 402-4624049-9532316 | Setting Order Status to Shipped
369
+ 2015-07-06 15:43:13 | INFO | 402-4624049-9532316 | Generating Order Payment Invoice
370
+ 2015-07-06 15:43:13 | INFO | 402-4624049-9532316 | Order Payment Invoice Generated Succesfully
371
+ 2015-07-06 15:43:14 | INFO | 402-4624049-9532316 | Order imported succesfully, Magento Order Id: 39
372
+ 2015-07-06 15:43:15 | INFO | 171-5633085-9672364 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D2857CEB607EC59b7777abd1da48e084d21a7f4cf41214
373
+ 2015-07-06 15:43:15 | INFO | 171-5633085-9672364 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
374
+ 2015-07-06 15:43:15 | ERROR | 171-5633085-9672364| No Product Matching, Product 13399 could not be found
375
+ 2015-07-06 15:43:16 | INFO | 171-5633085-9672364 | Generating Order
376
+ 2015-07-06 15:43:16 | INFO | 171-5633085-9672364 | Adding 1 product/s with id 823 to order, with Beezup Price: 13
377
+ 2015-07-06 15:43:16 | INFO | 171-5633085-9672364 | Adding Order Shipping Cost: 3
378
+ 2015-07-06 15:43:16 | INFO | 171-5633085-9672364 | Adding Beezup Marketplace Information to Order
379
+ 2015-07-06 15:43:16 | INFO | 171-5633085-9672364 | Sending Magento Order Id to Beezup, Magento Order Id: 40
380
+ 2015-07-06 15:43:17 | INFO | 171-5633085-9672364 | Setting Order Status to Shipped
381
+ 2015-07-06 15:43:17 | INFO | 171-5633085-9672364 | Generating Order Payment Invoice
382
+ 2015-07-06 15:43:18 | INFO | 171-5633085-9672364 | Order Payment Invoice Generated Succesfully
383
+ 2015-07-06 15:43:18 | INFO | 171-5633085-9672364 | Order imported succesfully, Magento Order Id: 40
384
+ 2015-07-06 15:43:19 | INFO | 171-5120387-4201949 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D28489DA139E8C54659df76881464a93d3f20a7def1eed
385
+ 2015-07-06 15:43:19 | INFO | 171-5120387-4201949 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
386
+ 2015-07-06 15:43:20 | ERROR | 171-5120387-4201949| No Product Matching, Product 10020 could not be found
387
+ 2015-07-06 15:43:20 | INFO | 171-5120387-4201949 | Generating Order
388
+ 2015-07-06 15:43:20 | INFO | 171-5120387-4201949 | Adding 1 product/s with id 824 to order, with Beezup Price: 45
389
+ 2015-07-06 15:43:20 | INFO | 171-5120387-4201949 | Adding Order Shipping Cost: 3
390
+ 2015-07-06 15:43:21 | INFO | 171-5120387-4201949 | Adding Beezup Marketplace Information to Order
391
+ 2015-07-06 15:43:21 | INFO | 171-5120387-4201949 | Sending Magento Order Id to Beezup, Magento Order Id: 41
392
+ 2015-07-06 15:43:22 | INFO | 171-5120387-4201949 | Setting Order Status to Shipped
393
+ 2015-07-06 15:43:22 | INFO | 171-5120387-4201949 | Generating Order Payment Invoice
394
+ 2015-07-06 15:43:22 | INFO | 171-5120387-4201949 | Order Payment Invoice Generated Succesfully
395
+ 2015-07-06 15:43:23 | INFO | 171-5120387-4201949 | Order imported succesfully, Magento Order Id: 41
396
+ 2015-07-06 15:43:24 | INFO | 404-9827833-6425940 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D285B7A994A3ACd1ff436cb2a74f08af85b70708739878
397
+ 2015-07-06 15:43:24 | INFO | 404-9827833-6425940 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
398
+ 2015-07-06 15:43:24 | ERROR | 404-9827833-6425940| No Product Matching, Product 12752 could not be found
399
+ 2015-07-06 15:43:25 | INFO | 404-9827833-6425940 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
400
+ 2015-07-06 15:43:25 | ERROR | 404-9827833-6425940| No Product Matching, Product 15975 could not be found
401
+ 2015-07-06 15:43:25 | INFO | 404-9827833-6425940 | Generating Order
402
+ 2015-07-06 15:43:25 | INFO | 404-9827833-6425940 | Adding 1 product/s with id 825 to order, with Beezup Price: 21
403
+ 2015-07-06 15:43:25 | INFO | 404-9827833-6425940 | Adding 1 product/s with id 826 to order, with Beezup Price: 32
404
+ 2015-07-06 15:43:25 | INFO | 404-9827833-6425940 | Adding Order Shipping Cost: 15
405
+ 2015-07-06 15:43:26 | INFO | 404-9827833-6425940 | Adding Beezup Marketplace Information to Order
406
+ 2015-07-06 15:43:26 | INFO | 404-9827833-6425940 | Sending Magento Order Id to Beezup, Magento Order Id: 42
407
+ 2015-07-06 15:43:28 | INFO | 404-9827833-6425940 | Setting Order Status to Shipped
408
+ 2015-07-06 15:43:28 | INFO | 404-9827833-6425940 | Generating Order Payment Invoice
409
+ 2015-07-06 15:43:28 | INFO | 404-9827833-6425940 | Order Payment Invoice Generated Succesfully
410
+ 2015-07-06 15:43:28 | INFO | 404-9827833-6425940 | Order imported succesfully, Magento Order Id: 42
411
+ 2015-07-06 15:43:30 | INFO | 402-6389421-1539515 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D28613C3271694794081cd2e7d44dfa3fc769d0160c7de
412
+ 2015-07-06 15:43:30 | INFO | 402-6389421-1539515 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
413
+ 2015-07-06 15:43:30 | ERROR | 402-6389421-1539515| No Product Matching, Product 15469 could not be found
414
+ 2015-07-06 15:43:30 | INFO | 402-6389421-1539515 | Generating Order
415
+ 2015-07-06 15:43:30 | INFO | 402-6389421-1539515 | Adding 1 product/s with id 827 to order, with Beezup Price: 21
416
+ 2015-07-06 15:43:30 | INFO | 402-6389421-1539515 | Adding Order Shipping Cost: 0
417
+ 2015-07-06 15:43:31 | INFO | 402-6389421-1539515 | Adding Beezup Marketplace Information to Order
418
+ 2015-07-06 15:43:31 | INFO | 402-6389421-1539515 | Sending Magento Order Id to Beezup, Magento Order Id: 43
419
+ 2015-07-06 15:43:32 | INFO | 402-6389421-1539515 | Setting Order Status to Shipped
420
+ 2015-07-06 15:43:32 | INFO | 402-6389421-1539515 | Generating Order Payment Invoice
421
+ 2015-07-06 15:43:33 | INFO | 402-6389421-1539515 | Order Payment Invoice Generated Succesfully
422
+ 2015-07-06 15:43:33 | INFO | 402-6389421-1539515 | Order imported succesfully, Magento Order Id: 43
423
+ 2015-07-06 15:43:35 | INFO | 403-4546648-5569109 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D28613C22DA03F2aa752a38a0f4570892dfe9ce238d7f8
424
+ 2015-07-06 15:43:35 | INFO | 403-4546648-5569109 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
425
+ 2015-07-06 15:43:35 | INFO | 403-4546648-5569109 | Product Matching succesful, Beezup Imported Id: 14701 , Magento Product Id: 773
426
+ 2015-07-06 15:43:35 | INFO | 403-4546648-5569109 | Generating Order
427
+ 2015-07-06 15:43:35 | ERROR | 403-4546648-5569109| Order could not be imported, error: Stock from Beezup product = 0
428
+ 2015-07-06 15:43:36 | INFO | 404-5774407-9236304 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D28613C1BDCDB6bc64f2ab8f134f32877a0825ccdd89e8
429
+ 2015-07-06 15:43:36 | INFO | 404-5774407-9236304 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
430
+ 2015-07-06 15:43:36 | ERROR | 404-5774407-9236304| No Product Matching, Product 12760 could not be found
431
+ 2015-07-06 15:43:37 | INFO | 404-5774407-9236304 | Generating Order
432
+ 2015-07-06 15:43:37 | INFO | 404-5774407-9236304 | Adding 1 product/s with id 828 to order, with Beezup Price: 9
433
+ 2015-07-06 15:43:37 | INFO | 404-5774407-9236304 | Adding Order Shipping Cost: 3
434
+ 2015-07-06 15:43:37 | INFO | 404-5774407-9236304 | Adding Beezup Marketplace Information to Order
435
+ 2015-07-06 15:43:37 | INFO | 404-5774407-9236304 | Sending Magento Order Id to Beezup, Magento Order Id: 44
436
+ 2015-07-06 15:43:39 | INFO | 404-5774407-9236304 | Setting Order Status to InProgress
437
+ 2015-07-06 15:43:39 | INFO | 404-5774407-9236304 | Generating Order Payment Invoice
438
+ 2015-07-06 15:43:39 | INFO | 404-5774407-9236304 | Order Payment Invoice Generated Succesfully
439
+ 2015-07-06 15:43:39 | INFO | 404-5774407-9236304 | Order imported succesfully, Magento Order Id: 44
440
+ 2015-07-06 15:43:41 | INFO | 404-3352985-1845103 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D28613C13787416ed9e9cc65174fb98326c01d43e4da5d
441
+ 2015-07-06 15:43:41 | INFO | 404-3352985-1845103 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
442
+ 2015-07-06 15:43:41 | ERROR | 404-3352985-1845103| No Product Matching, Product 15696 could not be found
443
+ 2015-07-06 15:43:41 | INFO | 404-3352985-1845103 | Generating Order
444
+ 2015-07-06 15:43:41 | INFO | 404-3352985-1845103 | Adding 1 product/s with id 829 to order, with Beezup Price: 22
445
+ 2015-07-06 15:43:41 | INFO | 404-3352985-1845103 | Adding Order Shipping Cost: 2.79
446
+ 2015-07-06 15:43:42 | INFO | 404-3352985-1845103 | Adding Beezup Marketplace Information to Order
447
+ 2015-07-06 15:43:42 | INFO | 404-3352985-1845103 | Sending Magento Order Id to Beezup, Magento Order Id: 45
448
+ 2015-07-06 15:43:43 | INFO | 404-3352985-1845103 | Setting Order Status to Shipped
449
+ 2015-07-06 15:43:43 | INFO | 404-3352985-1845103 | Generating Order Payment Invoice
450
+ 2015-07-06 15:43:44 | INFO | 404-3352985-1845103 | Order Payment Invoice Generated Succesfully
451
+ 2015-07-06 15:43:44 | INFO | 404-3352985-1845103 | Order imported succesfully, Magento Order Id: 45
452
+ 2015-07-06 15:43:46 | INFO | 171-0327187-5260369 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D2860B572333908338a9b7d30e41e2ab2859adc641c428
453
+ 2015-07-06 15:43:46 | INFO | 171-0327187-5260369 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
454
+ 2015-07-06 15:43:46 | ERROR | 171-0327187-5260369| No Product Matching, Product 15319 could not be found
455
+ 2015-07-06 15:43:47 | INFO | 171-0327187-5260369 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
456
+ 2015-07-06 15:43:47 | ERROR | 171-0327187-5260369| No Product Matching, Product 15038 could not be found
457
+ 2015-07-06 15:43:48 | INFO | 171-0327187-5260369 | Generating Order
458
+ 2015-07-06 15:43:48 | INFO | 171-0327187-5260369 | Adding 1 product/s with id 830 to order, with Beezup Price: 15
459
+ 2015-07-06 15:43:48 | INFO | 171-0327187-5260369 | Adding 1 product/s with id 831 to order, with Beezup Price: 14
460
+ 2015-07-06 15:43:48 | INFO | 171-0327187-5260369 | Adding Order Shipping Cost: 0
461
+ 2015-07-06 15:43:49 | INFO | 171-0327187-5260369 | Adding Beezup Marketplace Information to Order
462
+ 2015-07-06 15:43:49 | INFO | 171-0327187-5260369 | Sending Magento Order Id to Beezup, Magento Order Id: 46
463
+ 2015-07-06 15:43:50 | INFO | 171-0327187-5260369 | Setting Order Status to Shipped
464
+ 2015-07-06 15:43:50 | INFO | 171-0327187-5260369 | Generating Order Payment Invoice
465
+ 2015-07-06 15:43:51 | INFO | 171-0327187-5260369 | Order Payment Invoice Generated Succesfully
466
+ 2015-07-06 15:43:51 | INFO | 171-0327187-5260369 | Order imported succesfully, Magento Order Id: 46
467
+ 2015-07-06 15:43:53 | INFO | 402-5594906-6071532 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D2860B56AE6055aaf3bc1eca224c96b255f5fbf347c50e
468
+ 2015-07-06 15:43:53 | INFO | 402-5594906-6071532 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
469
+ 2015-07-06 15:43:53 | INFO | 402-5594906-6071532 | Product Matching succesful, Beezup Imported Id: 15623 , Magento Product Id: 761
470
+ 2015-07-06 15:43:53 | INFO | 402-5594906-6071532 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
471
+ 2015-07-06 15:43:53 | ERROR | 402-5594906-6071532| No Product Matching, Product 15622 could not be found
472
+ 2015-07-06 15:43:53 | INFO | 402-5594906-6071532 | Generating Order
473
+ 2015-07-06 15:43:53 | INFO | 402-5594906-6071532 | Adding 1 product/s with id 761 to order, with Beezup Price: 16
474
+ 2015-07-06 15:43:53 | INFO | 402-5594906-6071532 | Product 761 Stock = 0, Updating to 1 to generate Order
475
+ 2015-07-06 15:43:54 | INFO | 402-5594906-6071532 | Adding 1 product/s with id 832 to order, with Beezup Price: 16
476
+ 2015-07-06 15:43:54 | INFO | 402-5594906-6071532 | Adding Order Shipping Cost: 3
477
+ 2015-07-06 15:43:55 | INFO | 402-5594906-6071532 | Adding Beezup Marketplace Information to Order
478
+ 2015-07-06 15:43:55 | INFO | 402-5594906-6071532 | Sending Magento Order Id to Beezup, Magento Order Id: 47
479
+ 2015-07-06 15:43:57 | INFO | 402-5594906-6071532 | Setting Order Status to InProgress
480
+ 2015-07-06 15:43:57 | INFO | 402-5594906-6071532 | Generating Order Payment Invoice
481
+ 2015-07-06 15:43:57 | INFO | 402-5594906-6071532 | Order Payment Invoice Generated Succesfully
482
+ 2015-07-06 15:43:57 | INFO | 402-5594906-6071532 | Order imported succesfully, Magento Order Id: 47
483
+ 2015-07-06 15:43:59 | INFO | 402-8157340-3239568 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D2860B56AE6055602fd054f5164871844273a0feeb4983
484
+ 2015-07-06 15:43:59 | INFO | 402-8157340-3239568 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
485
+ 2015-07-06 15:43:59 | ERROR | 402-8157340-3239568| No Product Matching, Product 15454 could not be found
486
+ 2015-07-06 15:44:00 | INFO | 402-8157340-3239568 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
487
+ 2015-07-06 15:44:00 | ERROR | 402-8157340-3239568| No Product Matching, Product 15453 could not be found
488
+ 2015-07-06 15:44:01 | INFO | 402-8157340-3239568 | Generating Order
489
+ 2015-07-06 15:44:01 | INFO | 402-8157340-3239568 | Adding 1 product/s with id 833 to order, with Beezup Price: 32
490
+ 2015-07-06 15:44:01 | INFO | 402-8157340-3239568 | Adding 1 product/s with id 834 to order, with Beezup Price: 27
491
+ 2015-07-06 15:44:01 | INFO | 402-8157340-3239568 | Adding Order Shipping Cost: 0
492
+ 2015-07-06 15:44:03 | INFO | 402-8157340-3239568 | Adding Beezup Marketplace Information to Order
493
+ 2015-07-06 15:44:03 | INFO | 402-8157340-3239568 | Sending Magento Order Id to Beezup, Magento Order Id: 48
494
+ 2015-07-06 15:44:05 | INFO | 402-8157340-3239568 | Setting Order Status to Shipped
495
+ 2015-07-06 15:44:05 | INFO | 402-8157340-3239568 | Generating Order Payment Invoice
496
+ 2015-07-06 15:44:06 | INFO | 402-8157340-3239568 | Order Payment Invoice Generated Succesfully
497
+ 2015-07-06 15:44:06 | INFO | 402-8157340-3239568 | Order imported succesfully, Magento Order Id: 48
498
+ 2015-07-06 15:44:07 | INFO | OM Importation finalized succesfully
499
+ 2015-07-07 16:29:00 | INFO | Initializing OM Importation
500
+ 2015-07-07 16:29:06 | INFO | 171-6301647-8151536 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D286CC1E265AECac392ae852464e669b7c330de9815c79
501
+ 2015-07-07 16:29:06 | INFO | 171-6301647-8151536 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
502
+ 2015-07-07 16:29:07 | INFO | 171-6301647-8151536 | Product Matching succesful, Beezup Imported Id: 12074 , Magento Product Id: 738
503
+ 2015-07-07 16:29:07 | INFO | 171-6301647-8151536 | Generating Order
504
+ 2015-07-07 16:29:07 | INFO | 171-6301647-8151536 | Adding 1 product/s with id 738 to order, with Beezup Price: 130
505
+ 2015-07-07 16:29:07 | INFO | 171-6301647-8151536 | Product 738 Stock = 0, Updating to 1 to generate Order
506
+ 2015-07-07 16:29:08 | INFO | 171-6301647-8151536 | Adding Order Shipping Cost: 0
507
+ 2015-07-07 16:29:10 | INFO | 171-6301647-8151536 | Adding Beezup Marketplace Information to Order
508
+ 2015-07-07 16:29:10 | INFO | 171-6301647-8151536 | Sending Magento Order Id to Beezup, Magento Order Id: 49
509
+ 2015-07-07 16:29:12 | INFO | 171-6301647-8151536 | Setting Order Status to Shipped
510
+ 2015-07-07 16:29:12 | INFO | 171-6301647-8151536 | Generating Order Payment Invoice
511
+ 2015-07-07 16:29:12 | INFO | 171-6301647-8151536 | Order Payment Invoice Generated Succesfully
512
+ 2015-07-07 16:29:12 | INFO | 171-6301647-8151536 | Order imported succesfully, Magento Order Id: 49
513
+ 2015-07-07 16:29:13 | INFO | 15070314214B4OC | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/CDiscount/1111/8D283A78FF4274Ce28392aafbe84cc58f759f0a2b64357b
514
+ 2015-07-07 16:29:13 | INFO | 15070314214B4OC | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
515
+ 2015-07-07 16:29:14 | INFO | 15070314214B4OC | Product Matching succesful, Beezup Imported Id: 15453 , Magento Product Id: 834
516
+ 2015-07-07 16:29:14 | INFO | 15070314214B4OC | Generating Order
517
+ 2015-07-07 16:29:14 | INFO | 15070314214B4OC | Adding 1 product/s with id 834 to order, with Beezup Price: 29
518
+ 2015-07-07 16:29:14 | INFO | 15070314214B4OC | Product 834 Stock = 0, Updating to 1 to generate Order
519
+ 2015-07-07 16:29:14 | INFO | 15070314214B4OC | Adding Order Shipping Cost: 0
520
+ 2015-07-07 16:29:15 | INFO | 15070314214B4OC | Adding Beezup Marketplace Information to Order
521
+ 2015-07-07 16:29:15 | INFO | 15070314214B4OC | Sending Magento Order Id to Beezup, Magento Order Id: 50
522
+ 2015-07-07 16:29:16 | INFO | 15070314214B4OC | Setting Order Status to InProgress
523
+ 2015-07-07 16:29:16 | INFO | 15070314214B4OC | Generating Order Payment Invoice
524
+ 2015-07-07 16:29:17 | INFO | 15070314214B4OC | Order Payment Invoice Generated Succesfully
525
+ 2015-07-07 16:29:17 | INFO | 15070314214B4OC | Order imported succesfully, Magento Order Id: 50
526
+ 2015-07-07 16:29:18 | INFO | MOR-BAC96M20741228 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/RueDuCo/1973/8D286DCED684B3C7710814d652d47bea42e403d9aad67ae
527
+ 2015-07-07 16:29:18 | INFO | MOR-BAC96M20741228 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
528
+ 2015-07-07 16:29:18 | ERROR | MOR-BAC96M20741228| No Product Matching, Product SDU-BRA-05-00-099-10597 could not be found
529
+ 2015-07-07 16:29:19 | INFO | MOR-BAC96M20741228 | Generating Order
530
+ 2015-07-07 16:29:19 | INFO | MOR-BAC96M20741228 | Adding 1 product/s with id 835 to order, with Beezup Price: 24
531
+ 2015-07-07 16:29:19 | INFO | MOR-BAC96M20741228 | Adding Order Shipping Cost: 3
532
+ 2015-07-07 16:29:20 | INFO | MOR-BAC96M20741228 | Adding Beezup Marketplace Information to Order
533
+ 2015-07-07 16:29:20 | INFO | MOR-BAC96M20741228 | Sending Magento Order Id to Beezup, Magento Order Id: 51
534
+ 2015-07-07 16:29:21 | INFO | MOR-BAC96M20741228 | Setting Order Status to Shipped
535
+ 2015-07-07 16:29:21 | INFO | MOR-BAC96M20741228 | Generating Order Payment Invoice
536
+ 2015-07-07 16:29:21 | INFO | MOR-BAC96M20741228 | Order Payment Invoice Generated Succesfully
537
+ 2015-07-07 16:29:22 | INFO | MOR-BAC96M20741228 | Order imported succesfully, Magento Order Id: 51
538
+ 2015-07-07 16:29:23 | INFO | MOR-96201M20746686 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/RueDuCo/1973/8D286DCED5EC1D8d3c9415f06da4a1cb6fe620332ceaaf6
539
+ 2015-07-07 16:29:23 | INFO | MOR-96201M20746686 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
540
+ 2015-07-07 16:29:23 | ERROR | MOR-96201M20746686| No Product Matching, Product SDU-BRA-05-00-347-12137 could not be found
541
+ 2015-07-07 16:29:23 | INFO | MOR-96201M20746686 | Generating Order
542
+ 2015-07-07 16:29:23 | INFO | MOR-96201M20746686 | Adding 1 product/s with id 836 to order, with Beezup Price: 19
543
+ 2015-07-07 16:29:23 | INFO | MOR-96201M20746686 | Adding Order Shipping Cost: 3
544
+ 2015-07-07 16:29:24 | INFO | MOR-96201M20746686 | Adding Beezup Marketplace Information to Order
545
+ 2015-07-07 16:29:24 | INFO | MOR-96201M20746686 | Sending Magento Order Id to Beezup, Magento Order Id: 52
546
+ 2015-07-07 16:29:26 | INFO | MOR-96201M20746686 | Setting Order Status to Shipped
547
+ 2015-07-07 16:29:26 | INFO | MOR-96201M20746686 | Generating Order Payment Invoice
548
+ 2015-07-07 16:29:26 | INFO | MOR-96201M20746686 | Order Payment Invoice Generated Succesfully
549
+ 2015-07-07 16:29:26 | INFO | MOR-96201M20746686 | Order imported succesfully, Magento Order Id: 52
550
+ 2015-07-07 16:29:27 | INFO | MOR-7A3C4M20753684 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/RueDuCo/1973/8D286DCED4E113F4b71a7031ee74f33aa590ac72314e76f
551
+ 2015-07-07 16:29:27 | INFO | MOR-7A3C4M20753684 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
552
+ 2015-07-07 16:29:27 | ERROR | MOR-7A3C4M20753684| No Product Matching, Product SDU-BRA-02-06-366-CJ01-12152 could not be found
553
+ 2015-07-07 16:29:28 | INFO | MOR-7A3C4M20753684 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
554
+ 2015-07-07 16:29:28 | ERROR | MOR-7A3C4M20753684| No Product Matching, Product SDU-BRA-05-00-256-11706 could not be found
555
+ 2015-07-07 16:29:28 | INFO | MOR-7A3C4M20753684 | Generating Order
556
+ 2015-07-07 16:29:28 | INFO | MOR-7A3C4M20753684 | Adding 1 product/s with id 837 to order, with Beezup Price: 13
557
+ 2015-07-07 16:29:28 | INFO | MOR-7A3C4M20753684 | Adding 1 product/s with id 838 to order, with Beezup Price: 14
558
+ 2015-07-07 16:29:28 | INFO | MOR-7A3C4M20753684 | Adding Order Shipping Cost: 0
559
+ 2015-07-07 16:29:29 | INFO | MOR-7A3C4M20753684 | Adding Beezup Marketplace Information to Order
560
+ 2015-07-07 16:29:29 | INFO | MOR-7A3C4M20753684 | Sending Magento Order Id to Beezup, Magento Order Id: 53
561
+ 2015-07-07 16:29:31 | INFO | MOR-7A3C4M20753684 | Setting Order Status to Shipped
562
+ 2015-07-07 16:29:31 | INFO | MOR-7A3C4M20753684 | Generating Order Payment Invoice
563
+ 2015-07-07 16:29:31 | INFO | MOR-7A3C4M20753684 | Order Payment Invoice Generated Succesfully
564
+ 2015-07-07 16:29:31 | INFO | MOR-7A3C4M20753684 | Order imported succesfully, Magento Order Id: 53
565
+ 2015-07-07 16:29:32 | INFO | MOR-70E0EM20768788 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/RueDuCo/1973/8D286DCED199E0141289e632a2a4ef1894d4c66f4acd255
566
+ 2015-07-07 16:29:32 | INFO | MOR-70E0EM20768788 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
567
+ 2015-07-07 16:29:32 | ERROR | MOR-70E0EM20768788| No Product Matching, Product SDU-BRA-05-00-543-12757 could not be found
568
+ 2015-07-07 16:29:33 | INFO | MOR-70E0EM20768788 | Generating Order
569
+ 2015-07-07 16:29:33 | INFO | MOR-70E0EM20768788 | Adding 1 product/s with id 839 to order, with Beezup Price: 24
570
+ 2015-07-07 16:29:33 | INFO | MOR-70E0EM20768788 | Adding Order Shipping Cost: 3
571
+ 2015-07-07 16:29:33 | INFO | MOR-70E0EM20768788 | Adding Beezup Marketplace Information to Order
572
+ 2015-07-07 16:29:33 | INFO | MOR-70E0EM20768788 | Sending Magento Order Id to Beezup, Magento Order Id: 54
573
+ 2015-07-07 16:29:35 | INFO | MOR-70E0EM20768788 | Setting Order Status to Shipped
574
+ 2015-07-07 16:29:35 | INFO | MOR-70E0EM20768788 | Generating Order Payment Invoice
575
+ 2015-07-07 16:29:36 | INFO | MOR-70E0EM20768788 | Order Payment Invoice Generated Succesfully
576
+ 2015-07-07 16:29:36 | INFO | MOR-70E0EM20768788 | Order imported succesfully, Magento Order Id: 54
577
+ 2015-07-07 16:29:37 | INFO | MOR-81119M20758974 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/RueDuCo/1973/8D286DCED404D29b93f638188c24a23ad96bc8c522c01e2
578
+ 2015-07-07 16:29:37 | INFO | MOR-81119M20758974 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
579
+ 2015-07-07 16:29:37 | ERROR | MOR-81119M20758974| No Product Matching, Product SDU-BRA-05-00-553-12767 could not be found
580
+ 2015-07-07 16:29:38 | INFO | MOR-81119M20758974 | Generating Order
581
+ 2015-07-07 16:29:38 | INFO | MOR-81119M20758974 | Adding 1 product/s with id 840 to order, with Beezup Price: 13
582
+ 2015-07-07 16:29:38 | INFO | MOR-81119M20758974 | Adding Order Shipping Cost: 3
583
+ 2015-07-07 16:29:39 | INFO | MOR-81119M20758974 | Adding Beezup Marketplace Information to Order
584
+ 2015-07-07 16:29:39 | INFO | MOR-81119M20758974 | Sending Magento Order Id to Beezup, Magento Order Id: 55
585
+ 2015-07-07 16:29:40 | INFO | MOR-81119M20758974 | Setting Order Status to Shipped
586
+ 2015-07-07 16:29:40 | INFO | MOR-81119M20758974 | Generating Order Payment Invoice
587
+ 2015-07-07 16:29:40 | INFO | MOR-81119M20758974 | Order Payment Invoice Generated Succesfully
588
+ 2015-07-07 16:29:41 | INFO | MOR-81119M20758974 | Order imported succesfully, Magento Order Id: 55
589
+ 2015-07-07 16:29:42 | INFO | MOR-3F77BM20760212 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/RueDuCo/1973/8D286DCED2F235623ef497535ff4bd2adfbee69db505dbf
590
+ 2015-07-07 16:29:42 | INFO | MOR-3F77BM20760212 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
591
+ 2015-07-07 16:29:42 | ERROR | MOR-3F77BM20760212| No Product Matching, Product SDU-BRA-05-06-667-CY02-12993 could not be found
592
+ 2015-07-07 16:29:43 | INFO | MOR-3F77BM20760212 | Generating Order
593
+ 2015-07-07 16:29:43 | INFO | MOR-3F77BM20760212 | Adding 1 product/s with id 841 to order, with Beezup Price: 22
594
+ 2015-07-07 16:29:43 | INFO | MOR-3F77BM20760212 | Adding Order Shipping Cost: 3
595
+ 2015-07-07 16:29:44 | INFO | MOR-3F77BM20760212 | Adding Beezup Marketplace Information to Order
596
+ 2015-07-07 16:29:44 | INFO | MOR-3F77BM20760212 | Sending Magento Order Id to Beezup, Magento Order Id: 56
597
+ 2015-07-07 16:29:45 | INFO | MOR-3F77BM20760212 | Setting Order Status to Shipped
598
+ 2015-07-07 16:29:45 | INFO | MOR-3F77BM20760212 | Generating Order Payment Invoice
599
+ 2015-07-07 16:29:45 | INFO | MOR-3F77BM20760212 | Order Payment Invoice Generated Succesfully
600
+ 2015-07-07 16:29:45 | INFO | MOR-3F77BM20760212 | Order imported succesfully, Magento Order Id: 56
601
+ 2015-07-07 16:29:46 | INFO | MOR-82C74M20779944 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/RueDuCo/1973/8D286DCECFB2F900e41cf1907e04d47a3727c3972e1f559
602
+ 2015-07-07 16:29:46 | INFO | MOR-82C74M20779944 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
603
+ 2015-07-07 16:29:46 | ERROR | MOR-82C74M20779944| No Product Matching, Product SDU-BAG-05-56-028-10621 could not be found
604
+ 2015-07-07 16:29:47 | INFO | MOR-82C74M20779944 | Generating Order
605
+ 2015-07-07 16:29:47 | INFO | MOR-82C74M20779944 | Adding 2 product/s with id 842 to order, with Beezup Price: 12
606
+ 2015-07-07 16:29:47 | INFO | MOR-82C74M20779944 | Product 842 Stock = 0, Updating to 2 to generate Order
607
+ 2015-07-07 16:29:48 | INFO | MOR-82C74M20779944 | Adding Order Shipping Cost: 0
608
+ 2015-07-07 16:29:48 | INFO | MOR-82C74M20779944 | Adding Beezup Marketplace Information to Order
609
+ 2015-07-07 16:29:48 | INFO | MOR-82C74M20779944 | Sending Magento Order Id to Beezup, Magento Order Id: 57
610
+ 2015-07-07 16:29:49 | INFO | MOR-82C74M20779944 | Setting Order Status to Shipped
611
+ 2015-07-07 16:29:49 | INFO | MOR-82C74M20779944 | Generating Order Payment Invoice
612
+ 2015-07-07 16:29:50 | INFO | MOR-82C74M20779944 | Order Payment Invoice Generated Succesfully
613
+ 2015-07-07 16:29:50 | INFO | MOR-82C74M20779944 | Order imported succesfully, Magento Order Id: 57
614
+ 2015-07-07 16:29:51 | INFO | MOR-717FBM20785546 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/RueDuCo/1973/8D286DCECE7E129d1746298b149418592b0c3c541fcc599
615
+ 2015-07-07 16:29:51 | INFO | MOR-717FBM20785546 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
616
+ 2015-07-07 16:29:51 | ERROR | MOR-717FBM20785546| No Product Matching, Product SDU-KIK-05-00-9999-13014 could not be found
617
+ 2015-07-07 16:29:52 | INFO | MOR-717FBM20785546 | Generating Order
618
+ 2015-07-07 16:29:52 | INFO | MOR-717FBM20785546 | Adding 1 product/s with id 843 to order, with Beezup Price: 36.8
619
+ 2015-07-07 16:29:52 | INFO | MOR-717FBM20785546 | Adding Order Shipping Cost: 3
620
+ 2015-07-07 16:29:53 | INFO | MOR-717FBM20785546 | Adding Beezup Marketplace Information to Order
621
+ 2015-07-07 16:29:53 | INFO | MOR-717FBM20785546 | Sending Magento Order Id to Beezup, Magento Order Id: 58
622
+ 2015-07-07 16:29:54 | INFO | MOR-717FBM20785546 | Setting Order Status to Shipped
623
+ 2015-07-07 16:29:54 | INFO | MOR-717FBM20785546 | Generating Order Payment Invoice
624
+ 2015-07-07 16:29:54 | INFO | MOR-717FBM20785546 | Order Payment Invoice Generated Succesfully
625
+ 2015-07-07 16:29:54 | INFO | MOR-717FBM20785546 | Order imported succesfully, Magento Order Id: 58
626
+ 2015-07-07 16:29:55 | INFO | MOR-602F7M20798630 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/RueDuCo/1973/8D286DCECD93F68b9226c6a18c948a3aba312a13201b037
627
+ 2015-07-07 16:29:55 | INFO | MOR-602F7M20798630 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
628
+ 2015-07-07 16:29:55 | ERROR | MOR-602F7M20798630| No Product Matching, Product SDU-BRA-05-00-444-12374 could not be found
629
+ 2015-07-07 16:29:56 | INFO | MOR-602F7M20798630 | Generating Order
630
+ 2015-07-07 16:29:56 | INFO | MOR-602F7M20798630 | Adding 1 product/s with id 844 to order, with Beezup Price: 24
631
+ 2015-07-07 16:29:56 | INFO | MOR-602F7M20798630 | Adding Order Shipping Cost: 3
632
+ 2015-07-07 16:29:57 | INFO | MOR-602F7M20798630 | Adding Beezup Marketplace Information to Order
633
+ 2015-07-07 16:29:57 | INFO | MOR-602F7M20798630 | Sending Magento Order Id to Beezup, Magento Order Id: 59
634
+ 2015-07-07 16:29:59 | INFO | MOR-602F7M20798630 | Setting Order Status to Shipped
635
+ 2015-07-07 16:29:59 | INFO | MOR-602F7M20798630 | Generating Order Payment Invoice
636
+ 2015-07-07 16:29:59 | INFO | MOR-602F7M20798630 | Order Payment Invoice Generated Succesfully
637
+ 2015-07-07 16:29:59 | INFO | MOR-602F7M20798630 | Order imported succesfully, Magento Order Id: 59
638
+ 2015-07-07 16:30:01 | INFO | MOR-4235BM20809432 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/RueDuCo/1973/8D286DCECCFB5BE3d297d2b61c84e30a91680a415c8698a
639
+ 2015-07-07 16:30:01 | INFO | MOR-4235BM20809432 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
640
+ 2015-07-07 16:30:01 | ERROR | MOR-4235BM20809432| No Product Matching, Product SDU-BRA-05-00-408-12284 could not be found
641
+ 2015-07-07 16:30:02 | INFO | MOR-4235BM20809432 | Generating Order
642
+ 2015-07-07 16:30:02 | INFO | MOR-4235BM20809432 | Adding 1 product/s with id 845 to order, with Beezup Price: 21
643
+ 2015-07-07 16:30:02 | INFO | MOR-4235BM20809432 | Adding Order Shipping Cost: 3
644
+ 2015-07-07 16:30:03 | INFO | MOR-4235BM20809432 | Adding Beezup Marketplace Information to Order
645
+ 2015-07-07 16:30:03 | INFO | MOR-4235BM20809432 | Sending Magento Order Id to Beezup, Magento Order Id: 60
646
+ 2015-07-07 16:30:06 | INFO | MOR-4235BM20809432 | Setting Order Status to Shipped
647
+ 2015-07-07 16:30:06 | INFO | MOR-4235BM20809432 | Generating Order Payment Invoice
648
+ 2015-07-07 16:30:06 | INFO | MOR-4235BM20809432 | Order Payment Invoice Generated Succesfully
649
+ 2015-07-07 16:30:06 | INFO | MOR-4235BM20809432 | Order imported succesfully, Magento Order Id: 60
650
+ 2015-07-07 16:30:09 | INFO | MOR-4B184M20815794 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/RueDuCo/1973/8D286DCECC6347062e91d3071bf45da88dd8d355a6677ab
651
+ 2015-07-07 16:30:09 | INFO | MOR-4B184M20815794 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
652
+ 2015-07-07 16:30:09 | ERROR | MOR-4B184M20815794| No Product Matching, Product SDU-BRA-05-10-397-12272 could not be found
653
+ 2015-07-07 16:30:10 | INFO | MOR-4B184M20815794 | Generating Order
654
+ 2015-07-07 16:30:10 | INFO | MOR-4B184M20815794 | Adding 1 product/s with id 846 to order, with Beezup Price: 19
655
+ 2015-07-07 16:30:10 | INFO | MOR-4B184M20815794 | Adding Order Shipping Cost: 3
656
+ 2015-07-07 16:30:11 | INFO | MOR-4B184M20815794 | Adding Beezup Marketplace Information to Order
657
+ 2015-07-07 16:30:11 | INFO | MOR-4B184M20815794 | Sending Magento Order Id to Beezup, Magento Order Id: 61
658
+ 2015-07-07 16:30:13 | INFO | MOR-4B184M20815794 | Setting Order Status to Shipped
659
+ 2015-07-07 16:30:13 | INFO | MOR-4B184M20815794 | Generating Order Payment Invoice
660
+ 2015-07-07 16:30:13 | INFO | MOR-4B184M20815794 | Order Payment Invoice Generated Succesfully
661
+ 2015-07-07 16:30:13 | INFO | MOR-4B184M20815794 | Order imported succesfully, Magento Order Id: 61
662
+ 2015-07-07 16:30:15 | INFO | MOR-F543DM20822570 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/RueDuCo/1973/8D286DCECBCA35097561fc1d5af44029424977b1c900865
663
+ 2015-07-07 16:30:15 | INFO | MOR-F543DM20822570 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
664
+ 2015-07-07 16:30:15 | ERROR | MOR-F543DM20822570| No Product Matching, Product SDU-BRA-05-00-442-12372 could not be found
665
+ 2015-07-07 16:30:16 | INFO | MOR-F543DM20822570 | Generating Order
666
+ 2015-07-07 16:30:16 | INFO | MOR-F543DM20822570 | Adding 3 product/s with id 847 to order, with Beezup Price: 16
667
+ 2015-07-07 16:30:16 | INFO | MOR-F543DM20822570 | Adding Order Shipping Cost: 0
668
+ 2015-07-07 16:30:16 | INFO | MOR-F543DM20822570 | Order Import failed, Trying to import Order Again
669
+ 2015-07-07 16:30:16 | INFO | MOR-F543DM20822570 | Adding 3 product/s with id 847 to order, with Beezup Price: 16
670
+ 2015-07-07 16:30:16 | INFO | MOR-F543DM20822570 | Adding Order Shipping Cost: 0
671
+ 2015-07-07 16:30:16 | ERROR | MOR-F543DM20822570| Order could not be imported, error: Not all products are available in the requested quantity
672
+ 2015-07-07 16:30:17 | INFO | MOR-02DB5M20918160 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/RueDuCo/1973/8D286DCEC91B9AD0599b9626dc845e1a90f9db8c8391c42
673
+ 2015-07-07 16:30:17 | INFO | MOR-02DB5M20918160 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
674
+ 2015-07-07 16:30:17 | INFO | MOR-02DB5M20918160 | Product Matching succesful, Beezup Imported Id: SDU-BRA-05-00-408-12284 , Magento Product Id: 845
675
+ 2015-07-07 16:30:17 | INFO | MOR-02DB5M20918160 | Generating Order
676
+ 2015-07-07 16:30:17 | INFO | MOR-02DB5M20918160 | Adding 1 product/s with id 845 to order, with Beezup Price: 21
677
+ 2015-07-07 16:30:17 | INFO | MOR-02DB5M20918160 | Product 845 Stock = 0, Updating to 1 to generate Order
678
+ 2015-07-07 16:30:18 | INFO | MOR-02DB5M20918160 | Adding Order Shipping Cost: 3
679
+ 2015-07-07 16:30:18 | INFO | MOR-02DB5M20918160 | Adding Beezup Marketplace Information to Order
680
+ 2015-07-07 16:30:18 | INFO | MOR-02DB5M20918160 | Sending Magento Order Id to Beezup, Magento Order Id: 62
681
+ 2015-07-07 16:30:20 | INFO | MOR-02DB5M20918160 | Setting Order Status to Shipped
682
+ 2015-07-07 16:30:20 | INFO | MOR-02DB5M20918160 | Generating Order Payment Invoice
683
+ 2015-07-07 16:30:20 | INFO | MOR-02DB5M20918160 | Order Payment Invoice Generated Succesfully
684
+ 2015-07-07 16:30:21 | INFO | MOR-02DB5M20918160 | Order imported succesfully, Magento Order Id: 62
685
+ 2015-07-07 16:30:22 | INFO | MOR-3CB76M20855718 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/RueDuCo/1973/8D286DCECB319D5205281bf79804bdbb981fcdf23b7cc43
686
+ 2015-07-07 16:30:22 | INFO | MOR-3CB76M20855718 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
687
+ 2015-07-07 16:30:22 | ERROR | MOR-3CB76M20855718| No Product Matching, Product SDU-BRA-05-00-371-12162 could not be found
688
+ 2015-07-07 16:30:22 | INFO | MOR-3CB76M20855718 | Generating Order
689
+ 2015-07-07 16:30:22 | INFO | MOR-3CB76M20855718 | Adding 1 product/s with id 848 to order, with Beezup Price: 19
690
+ 2015-07-07 16:30:22 | INFO | MOR-3CB76M20855718 | Adding Order Shipping Cost: 3
691
+ 2015-07-07 16:30:23 | INFO | MOR-3CB76M20855718 | Adding Beezup Marketplace Information to Order
692
+ 2015-07-07 16:30:23 | INFO | MOR-3CB76M20855718 | Sending Magento Order Id to Beezup, Magento Order Id: 63
693
+ 2015-07-07 16:30:24 | INFO | MOR-3CB76M20855718 | Setting Order Status to Shipped
694
+ 2015-07-07 16:30:24 | INFO | MOR-3CB76M20855718 | Generating Order Payment Invoice
695
+ 2015-07-07 16:30:25 | INFO | MOR-3CB76M20855718 | Order Payment Invoice Generated Succesfully
696
+ 2015-07-07 16:30:25 | INFO | MOR-3CB76M20855718 | Order imported succesfully, Magento Order Id: 63
697
+ 2015-07-07 16:30:26 | INFO | MOR-56374M20867754 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/RueDuCo/1973/8D286DCECA9E6431f33653826c5488eb92a21dc77259b13
698
+ 2015-07-07 16:30:26 | INFO | MOR-56374M20867754 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
699
+ 2015-07-07 16:30:26 | INFO | MOR-56374M20867754 | Product Matching succesful, Beezup Imported Id: SDU-BRA-05-00-408-12284 , Magento Product Id: 845
700
+ 2015-07-07 16:30:26 | INFO | MOR-56374M20867754 | Generating Order
701
+ 2015-07-07 16:30:26 | INFO | MOR-56374M20867754 | Adding 1 product/s with id 845 to order, with Beezup Price: 21
702
+ 2015-07-07 16:30:26 | INFO | MOR-56374M20867754 | Product 845 Stock = 0, Updating to 1 to generate Order
703
+ 2015-07-07 16:30:27 | INFO | MOR-56374M20867754 | Adding Order Shipping Cost: 3
704
+ 2015-07-07 16:30:27 | INFO | MOR-56374M20867754 | Adding Beezup Marketplace Information to Order
705
+ 2015-07-07 16:30:27 | INFO | MOR-56374M20867754 | Sending Magento Order Id to Beezup, Magento Order Id: 64
706
+ 2015-07-07 16:30:29 | INFO | MOR-56374M20867754 | Setting Order Status to Shipped
707
+ 2015-07-07 16:30:29 | INFO | MOR-56374M20867754 | Generating Order Payment Invoice
708
+ 2015-07-07 16:30:29 | INFO | MOR-56374M20867754 | Order Payment Invoice Generated Succesfully
709
+ 2015-07-07 16:30:29 | INFO | MOR-56374M20867754 | Order imported succesfully, Magento Order Id: 64
710
+ 2015-07-07 16:30:30 | INFO | MOR-68C9BM20919324 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/RueDuCo/1973/8D286DCEC2E35B43df2fdd763c24500a95f6d36d0a4ad4f
711
+ 2015-07-07 16:30:30 | INFO | MOR-68C9BM20919324 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
712
+ 2015-07-07 16:30:30 | ERROR | MOR-68C9BM20919324| No Product Matching, Product SDU-BRO-05-00-005-12429 could not be found
713
+ 2015-07-07 16:30:31 | INFO | MOR-68C9BM20919324 | Generating Order
714
+ 2015-07-07 16:30:31 | INFO | MOR-68C9BM20919324 | Adding 1 product/s with id 849 to order, with Beezup Price: 37
715
+ 2015-07-07 16:30:31 | INFO | MOR-68C9BM20919324 | Adding Order Shipping Cost: 3
716
+ 2015-07-07 16:30:32 | INFO | MOR-68C9BM20919324 | Adding Beezup Marketplace Information to Order
717
+ 2015-07-07 16:30:32 | INFO | MOR-68C9BM20919324 | Sending Magento Order Id to Beezup, Magento Order Id: 65
718
+ 2015-07-07 16:30:33 | INFO | MOR-68C9BM20919324 | Setting Order Status to Shipped
719
+ 2015-07-07 16:30:33 | INFO | MOR-68C9BM20919324 | Generating Order Payment Invoice
720
+ 2015-07-07 16:30:33 | INFO | MOR-68C9BM20919324 | Order Payment Invoice Generated Succesfully
721
+ 2015-07-07 16:30:33 | INFO | MOR-68C9BM20919324 | Order imported succesfully, Magento Order Id: 65
722
+ 2015-07-07 16:30:34 | INFO | MOR-DCD20M20971104 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/RueDuCo/1973/8D286DCEBD863FB158e3e48f7934991a5b7b208e4d9e343
723
+ 2015-07-07 16:30:34 | INFO | MOR-DCD20M20971104 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
724
+ 2015-07-07 16:30:34 | ERROR | MOR-DCD20M20971104| No Product Matching, Product SDU-BAG-05-50-222-12905 could not be found
725
+ 2015-07-07 16:30:35 | INFO | MOR-DCD20M20971104 | Generating Order
726
+ 2015-07-07 16:30:35 | INFO | MOR-DCD20M20971104 | Adding 1 product/s with id 850 to order, with Beezup Price: 12
727
+ 2015-07-07 16:30:35 | INFO | MOR-DCD20M20971104 | Adding Order Shipping Cost: 3
728
+ 2015-07-07 16:30:36 | INFO | MOR-DCD20M20971104 | Adding Beezup Marketplace Information to Order
729
+ 2015-07-07 16:30:36 | INFO | MOR-DCD20M20971104 | Sending Magento Order Id to Beezup, Magento Order Id: 66
730
+ 2015-07-07 16:30:37 | INFO | MOR-DCD20M20971104 | Setting Order Status to Shipped
731
+ 2015-07-07 16:30:37 | INFO | MOR-DCD20M20971104 | Generating Order Payment Invoice
732
+ 2015-07-07 16:30:38 | INFO | MOR-DCD20M20971104 | Order Payment Invoice Generated Succesfully
733
+ 2015-07-07 16:30:38 | INFO | MOR-DCD20M20971104 | Order imported succesfully, Magento Order Id: 66
734
+ 2015-07-07 16:30:39 | INFO | MOR-80A92M20921178 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/RueDuCo/1973/8D286DCEC0771DE29973867dc264d24b269d6d9abf93723
735
+ 2015-07-07 16:30:39 | INFO | MOR-80A92M20921178 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
736
+ 2015-07-07 16:30:39 | ERROR | MOR-80A92M20921178| No Product Matching, Product SDU-BAG-05-52-204-12734 could not be found
737
+ 2015-07-07 16:30:40 | INFO | MOR-80A92M20921178 | Generating Order
738
+ 2015-07-07 16:30:40 | INFO | MOR-80A92M20921178 | Adding 1 product/s with id 851 to order, with Beezup Price: 21
739
+ 2015-07-07 16:30:40 | INFO | MOR-80A92M20921178 | Adding Order Shipping Cost: 3
740
+ 2015-07-07 16:30:41 | INFO | MOR-80A92M20921178 | Adding Beezup Marketplace Information to Order
741
+ 2015-07-07 16:30:41 | INFO | MOR-80A92M20921178 | Sending Magento Order Id to Beezup, Magento Order Id: 67
742
+ 2015-07-07 16:30:42 | INFO | MOR-80A92M20921178 | Setting Order Status to Shipped
743
+ 2015-07-07 16:30:42 | INFO | MOR-80A92M20921178 | Generating Order Payment Invoice
744
+ 2015-07-07 16:30:42 | INFO | MOR-80A92M20921178 | Order Payment Invoice Generated Succesfully
745
+ 2015-07-07 16:30:42 | INFO | MOR-80A92M20921178 | Order imported succesfully, Magento Order Id: 67
746
+ 2015-07-07 16:30:44 | INFO | MOR-70EF5M20924630 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/RueDuCo/1973/8D286DCEBF9B2CE5d92c493db954c1fb3b43b8785e4111c
747
+ 2015-07-07 16:30:44 | INFO | MOR-70EF5M20924630 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
748
+ 2015-07-07 16:30:44 | ERROR | MOR-70EF5M20924630| No Product Matching, Product SDU-COL-05-00-173-12248 could not be found
749
+ 2015-07-07 16:30:44 | INFO | MOR-70EF5M20924630 | Generating Order
750
+ 2015-07-07 16:30:44 | INFO | MOR-70EF5M20924630 | Adding 1 product/s with id 852 to order, with Beezup Price: 26
751
+ 2015-07-07 16:30:44 | INFO | MOR-70EF5M20924630 | Adding Order Shipping Cost: 3
752
+ 2015-07-07 16:30:45 | INFO | MOR-70EF5M20924630 | Adding Beezup Marketplace Information to Order
753
+ 2015-07-07 16:30:45 | INFO | MOR-70EF5M20924630 | Sending Magento Order Id to Beezup, Magento Order Id: 68
754
+ 2015-07-07 16:30:47 | INFO | MOR-70EF5M20924630 | Setting Order Status to Shipped
755
+ 2015-07-07 16:30:47 | INFO | MOR-70EF5M20924630 | Generating Order Payment Invoice
756
+ 2015-07-07 16:30:47 | INFO | MOR-70EF5M20924630 | Order Payment Invoice Generated Succesfully
757
+ 2015-07-07 16:30:47 | INFO | MOR-70EF5M20924630 | Order imported succesfully, Magento Order Id: 68
758
+ 2015-07-07 16:30:48 | INFO | MOR-A9DA9M21012464 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/RueDuCo/1973/8D286DCEBBE4DA0e0f9d7f6dc2c4cf68bb3582414ee4f30
759
+ 2015-07-07 16:30:48 | INFO | MOR-A9DA9M21012464 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
760
+ 2015-07-07 16:30:48 | ERROR | MOR-A9DA9M21012464| No Product Matching, Product SDU-BRA-05-00-250-11682 could not be found
761
+ 2015-07-07 16:30:49 | INFO | MOR-A9DA9M21012464 | Generating Order
762
+ 2015-07-07 16:30:49 | INFO | MOR-A9DA9M21012464 | Adding 1 product/s with id 853 to order, with Beezup Price: 19
763
+ 2015-07-07 16:30:49 | INFO | MOR-A9DA9M21012464 | Adding Order Shipping Cost: 3
764
+ 2015-07-07 16:30:50 | INFO | MOR-A9DA9M21012464 | Adding Beezup Marketplace Information to Order
765
+ 2015-07-07 16:30:50 | INFO | MOR-A9DA9M21012464 | Sending Magento Order Id to Beezup, Magento Order Id: 69
766
+ 2015-07-07 16:30:51 | INFO | MOR-A9DA9M21012464 | Setting Order Status to Shipped
767
+ 2015-07-07 16:30:51 | INFO | MOR-A9DA9M21012464 | Generating Order Payment Invoice
768
+ 2015-07-07 16:30:51 | INFO | MOR-A9DA9M21012464 | Order Payment Invoice Generated Succesfully
769
+ 2015-07-07 16:30:52 | INFO | MOR-A9DA9M21012464 | Order imported succesfully, Magento Order Id: 69
770
+ 2015-07-07 16:30:53 | INFO | MOR-BDBC9M20942764 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/RueDuCo/1973/8D286DCEBE6113115f395cafaa545b2b655db62c477c759
771
+ 2015-07-07 16:30:53 | INFO | MOR-BDBC9M20942764 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
772
+ 2015-07-07 16:30:53 | ERROR | MOR-BDBC9M20942764| No Product Matching, Product SDU-COL-02-03-102-J04-9759 could not be found
773
+ 2015-07-07 16:30:54 | INFO | MOR-BDBC9M20942764 | Generating Order
774
+ 2015-07-07 16:30:54 | INFO | MOR-BDBC9M20942764 | Adding 1 product/s with id 854 to order, with Beezup Price: 29
775
+ 2015-07-07 16:30:54 | INFO | MOR-BDBC9M20942764 | Adding Order Shipping Cost: 3
776
+ 2015-07-07 16:30:55 | INFO | MOR-BDBC9M20942764 | Adding Beezup Marketplace Information to Order
777
+ 2015-07-07 16:30:55 | INFO | MOR-BDBC9M20942764 | Sending Magento Order Id to Beezup, Magento Order Id: 70
778
+ 2015-07-07 16:30:56 | INFO | MOR-BDBC9M20942764 | Setting Order Status to Shipped
779
+ 2015-07-07 16:30:56 | INFO | MOR-BDBC9M20942764 | Generating Order Payment Invoice
780
+ 2015-07-07 16:30:57 | INFO | MOR-BDBC9M20942764 | Order Payment Invoice Generated Succesfully
781
+ 2015-07-07 16:30:57 | INFO | MOR-BDBC9M20942764 | Order imported succesfully, Magento Order Id: 70
782
+ 2015-07-07 16:30:58 | INFO | MOR-CADC4M21054678 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/RueDuCo/1973/8D286DCEB9CED4Db27abef51dc94be5b18a03d5100c1f80
783
+ 2015-07-07 16:30:58 | INFO | MOR-CADC4M21054678 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
784
+ 2015-07-07 16:30:58 | ERROR | MOR-CADC4M21054678| No Product Matching, Product SDU-BAG-05-60-022-10410 could not be found
785
+ 2015-07-07 16:30:59 | INFO | MOR-CADC4M21054678 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
786
+ 2015-07-07 16:30:59 | ERROR | MOR-CADC4M21054678| No Product Matching, Product SDU-BAG-05-58-022-10410 could not be found
787
+ 2015-07-07 16:31:00 | INFO | MOR-CADC4M21054678 | Generating Order
788
+ 2015-07-07 16:31:00 | INFO | MOR-CADC4M21054678 | Adding 1 product/s with id 855 to order, with Beezup Price: 74
789
+ 2015-07-07 16:31:00 | INFO | MOR-CADC4M21054678 | Adding 1 product/s with id 856 to order, with Beezup Price: 74
790
+ 2015-07-07 16:31:00 | INFO | MOR-CADC4M21054678 | Adding Order Shipping Cost: 0
791
+ 2015-07-07 16:31:01 | INFO | MOR-CADC4M21054678 | Adding Beezup Marketplace Information to Order
792
+ 2015-07-07 16:31:01 | INFO | MOR-CADC4M21054678 | Sending Magento Order Id to Beezup, Magento Order Id: 71
793
+ 2015-07-07 16:31:02 | INFO | MOR-CADC4M21054678 | Setting Order Status to Shipped
794
+ 2015-07-07 16:31:02 | INFO | MOR-CADC4M21054678 | Generating Order Payment Invoice
795
+ 2015-07-07 16:31:03 | INFO | MOR-CADC4M21054678 | Order Payment Invoice Generated Succesfully
796
+ 2015-07-07 16:31:03 | INFO | MOR-CADC4M21054678 | Order imported succesfully, Magento Order Id: 71
797
+ 2015-07-07 16:31:04 | INFO | MOR-95DA4M21062770 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/RueDuCo/1973/8D286DCEB63AE054081f79dfb84426ea202b77580b88c21
798
+ 2015-07-07 16:31:04 | INFO | MOR-95DA4M21062770 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
799
+ 2015-07-07 16:31:04 | ERROR | MOR-95DA4M21062770| No Product Matching, Product SDU-BRA-05-00-162-11316 could not be found
800
+ 2015-07-07 16:31:05 | INFO | MOR-95DA4M21062770 | Generating Order
801
+ 2015-07-07 16:31:05 | INFO | MOR-95DA4M21062770 | Adding 1 product/s with id 857 to order, with Beezup Price: 27
802
+ 2015-07-07 16:31:05 | INFO | MOR-95DA4M21062770 | Adding Order Shipping Cost: 3
803
+ 2015-07-07 16:31:06 | INFO | MOR-95DA4M21062770 | Adding Beezup Marketplace Information to Order
804
+ 2015-07-07 16:31:06 | INFO | MOR-95DA4M21062770 | Sending Magento Order Id to Beezup, Magento Order Id: 72
805
+ 2015-07-07 16:31:07 | INFO | MOR-95DA4M21062770 | Setting Order Status to Shipped
806
+ 2015-07-07 16:31:07 | INFO | MOR-95DA4M21062770 | Generating Order Payment Invoice
807
+ 2015-07-07 16:31:08 | INFO | MOR-95DA4M21062770 | Order Payment Invoice Generated Succesfully
808
+ 2015-07-07 16:31:08 | INFO | MOR-95DA4M21062770 | Order imported succesfully, Magento Order Id: 72
809
+ 2015-07-07 16:31:09 | INFO | MOR-3A9D9M21088116 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/RueDuCo/1973/8D286DCEB085888b06d16c41d6b46ab9010b99022fea21d
810
+ 2015-07-07 16:31:09 | INFO | MOR-3A9D9M21088116 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
811
+ 2015-07-07 16:31:09 | ERROR | MOR-3A9D9M21088116| No Product Matching, Product SDU-BAG-05-52-097-11482 could not be found
812
+ 2015-07-07 16:31:09 | INFO | MOR-3A9D9M21088116 | Generating Order
813
+ 2015-07-07 16:31:09 | INFO | MOR-3A9D9M21088116 | Adding 1 product/s with id 858 to order, with Beezup Price: 11
814
+ 2015-07-07 16:31:09 | INFO | MOR-3A9D9M21088116 | Adding Order Shipping Cost: 3
815
+ 2015-07-07 16:31:10 | INFO | MOR-3A9D9M21088116 | Adding Beezup Marketplace Information to Order
816
+ 2015-07-07 16:31:10 | INFO | MOR-3A9D9M21088116 | Sending Magento Order Id to Beezup, Magento Order Id: 73
817
+ 2015-07-07 16:31:11 | INFO | MOR-3A9D9M21088116 | Setting Order Status to Shipped
818
+ 2015-07-07 16:31:11 | INFO | MOR-3A9D9M21088116 | Generating Order Payment Invoice
819
+ 2015-07-07 16:31:12 | INFO | MOR-3A9D9M21088116 | Order Payment Invoice Generated Succesfully
820
+ 2015-07-07 16:31:12 | INFO | MOR-3A9D9M21088116 | Order imported succesfully, Magento Order Id: 73
821
+ 2015-07-07 16:31:13 | INFO | MOR-DC800M21070886 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/RueDuCo/1973/8D286DCEB3CD56Ffbc0f87b9e624d3cbcce0bb0fe199681
822
+ 2015-07-07 16:31:13 | INFO | MOR-DC800M21070886 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
823
+ 2015-07-07 16:31:13 | INFO | MOR-DC800M21070886 | Product Matching succesful, Beezup Imported Id: SDU-BRA-02-06-366-CJ01-12152 , Magento Product Id: 837
824
+ 2015-07-07 16:31:13 | INFO | MOR-DC800M21070886 | Generating Order
825
+ 2015-07-07 16:31:13 | INFO | MOR-DC800M21070886 | Adding 1 product/s with id 837 to order, with Beezup Price: 13
826
+ 2015-07-07 16:31:13 | INFO | MOR-DC800M21070886 | Product 837 Stock = 0, Updating to 1 to generate Order
827
+ 2015-07-07 16:31:13 | INFO | MOR-DC800M21070886 | Adding Order Shipping Cost: 3
828
+ 2015-07-07 16:31:14 | INFO | MOR-DC800M21070886 | Adding Beezup Marketplace Information to Order
829
+ 2015-07-07 16:31:14 | INFO | MOR-DC800M21070886 | Sending Magento Order Id to Beezup, Magento Order Id: 74
830
+ 2015-07-07 16:31:15 | INFO | MOR-DC800M21070886 | Setting Order Status to Shipped
831
+ 2015-07-07 16:31:15 | INFO | MOR-DC800M21070886 | Generating Order Payment Invoice
832
+ 2015-07-07 16:31:15 | INFO | MOR-DC800M21070886 | Order Payment Invoice Generated Succesfully
833
+ 2015-07-07 16:31:16 | INFO | MOR-DC800M21070886 | Order imported succesfully, Magento Order Id: 74
834
+ 2015-07-07 16:31:17 | INFO | MOR-53473M21073396 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/RueDuCo/1973/8D286DCEB1BD9684b49bc6f4cb34ac28776e833fccef787
835
+ 2015-07-07 16:31:17 | INFO | MOR-53473M21073396 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
836
+ 2015-07-07 16:31:17 | ERROR | MOR-53473M21073396| No Product Matching, Product SDU-BRA-02-05-017-H16-9707 could not be found
837
+ 2015-07-07 16:31:17 | INFO | MOR-53473M21073396 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
838
+ 2015-07-07 16:31:17 | ERROR | MOR-53473M21073396| No Product Matching, Product SDU-BRA-02-07-032-AB01-10195 could not be found
839
+ 2015-07-07 16:31:18 | INFO | MOR-53473M21073396 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
840
+ 2015-07-07 16:31:18 | ERROR | MOR-53473M21073396| No Product Matching, Product SDU-BRA-05-06-332-BN03-12001 could not be found
841
+ 2015-07-07 16:31:18 | INFO | MOR-53473M21073396 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
842
+ 2015-07-07 16:31:18 | ERROR | MOR-53473M21073396| No Product Matching, Product SDU-BRA-02-07-007-I06-9714 could not be found
843
+ 2015-07-07 16:31:19 | INFO | MOR-53473M21073396 | Generating Order
844
+ 2015-07-07 16:31:19 | INFO | MOR-53473M21073396 | Adding 1 product/s with id 859 to order, with Beezup Price: 13
845
+ 2015-07-07 16:31:19 | INFO | MOR-53473M21073396 | Adding 1 product/s with id 860 to order, with Beezup Price: 24
846
+ 2015-07-07 16:31:19 | INFO | MOR-53473M21073396 | Adding 1 product/s with id 861 to order, with Beezup Price: 12
847
+ 2015-07-07 16:31:19 | INFO | MOR-53473M21073396 | Adding 1 product/s with id 862 to order, with Beezup Price: 10
848
+ 2015-07-07 16:31:19 | INFO | MOR-53473M21073396 | Adding Order Shipping Cost: 0
849
+ 2015-07-07 16:31:22 | INFO | MOR-53473M21073396 | Adding Beezup Marketplace Information to Order
850
+ 2015-07-07 16:31:22 | INFO | MOR-53473M21073396 | Sending Magento Order Id to Beezup, Magento Order Id: 75
851
+ 2015-07-07 16:31:23 | INFO | MOR-53473M21073396 | Setting Order Status to Shipped
852
+ 2015-07-07 16:31:23 | INFO | MOR-53473M21073396 | Generating Order Payment Invoice
853
+ 2015-07-07 16:31:24 | INFO | MOR-53473M21073396 | Order Payment Invoice Generated Succesfully
854
+ 2015-07-07 16:31:24 | INFO | MOR-53473M21073396 | Order imported succesfully, Magento Order Id: 75
855
+ 2015-07-07 16:31:25 | INFO | MOR-2148FM20784702 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/RueDuCo/1973/8D286DCEA0BD8C9030da0dd79b54b8cb2b293ad21444c0d
856
+ 2015-07-07 16:31:25 | INFO | MOR-2148FM20784702 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
857
+ 2015-07-07 16:31:25 | ERROR | MOR-2148FM20784702| No Product Matching, Product SDU-BAG-05-52-098-11483 could not be found
858
+ 2015-07-07 16:31:26 | INFO | MOR-2148FM20784702 | Generating Order
859
+ 2015-07-07 16:31:26 | ERROR | MOR-2148FM20784702| Order could not be imported, error: Stock from Beezup product = 0
860
+ 2015-07-07 16:31:28 | INFO | 404-5774407-9236304 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D28613C1BDCDB6bc64f2ab8f134f32877a0825ccdd89e8
861
+ 2015-07-07 16:31:28 | INFO | 404-5774407-9236304 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
862
+ 2015-07-07 16:31:28 | INFO | 404-5774407-9236304 | Product Matching succesful, Beezup Imported Id: 12760 , Magento Product Id: 828
863
+ 2015-07-07 16:31:28 | INFO | 404-5774407-9236304 | Updating Etag
864
+ 2015-07-07 16:31:28 | INFO | 404-5774407-9236304 | Order Already exists Mage Order ID: 44
865
+ 2015-07-07 16:31:28 | INFO | 404-5774407-9236304 | Updating Order Status from: Processing to: Shipped
866
+ 2015-07-07 16:31:28 | INFO | 404-5774407-9236304 | Setting Order Status to Shipped
867
+ 2015-07-07 16:31:28 | INFO | 404-5774407-9236304 | Generating Order Payment Invoice
868
+ 2015-07-07 16:31:30 | INFO | 402-5594906-6071532 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D2860B56AE6055aaf3bc1eca224c96b255f5fbf347c50e
869
+ 2015-07-07 16:31:30 | INFO | 402-5594906-6071532 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
870
+ 2015-07-07 16:31:30 | INFO | 402-5594906-6071532 | Product Matching succesful, Beezup Imported Id: 15623 , Magento Product Id: 761
871
+ 2015-07-07 16:31:30 | INFO | 402-5594906-6071532 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
872
+ 2015-07-07 16:31:30 | INFO | 402-5594906-6071532 | Product Matching succesful, Beezup Imported Id: 15622 , Magento Product Id: 832
873
+ 2015-07-07 16:31:30 | INFO | 402-5594906-6071532 | Updating Etag
874
+ 2015-07-07 16:31:30 | INFO | 402-5594906-6071532 | Order Already exists Mage Order ID: 47
875
+ 2015-07-07 16:31:30 | INFO | 402-5594906-6071532 | Updating Order Status from: Processing to: Shipped
876
+ 2015-07-07 16:31:30 | INFO | 402-5594906-6071532 | Setting Order Status to Shipped
877
+ 2015-07-07 16:31:30 | INFO | 402-5594906-6071532 | Generating Order Payment Invoice
878
+ 2015-07-07 16:31:34 | INFO | 404-1301343-2734710 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D28680B1D693667a11370dfd46431e9a936d0a87828441
879
+ 2015-07-07 16:31:34 | INFO | 404-1301343-2734710 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
880
+ 2015-07-07 16:31:34 | ERROR | 404-1301343-2734710| No Product Matching, Product 12717 could not be found
881
+ 2015-07-07 16:31:35 | INFO | 404-1301343-2734710 | Generating Order
882
+ 2015-07-07 16:31:35 | INFO | 404-1301343-2734710 | Adding 1 product/s with id 864 to order, with Beezup Price: 74
883
+ 2015-07-07 16:31:35 | INFO | 404-1301343-2734710 | Adding Order Shipping Cost: 0
884
+ 2015-07-07 16:31:36 | INFO | 404-1301343-2734710 | Adding Beezup Marketplace Information to Order
885
+ 2015-07-07 16:31:36 | INFO | 404-1301343-2734710 | Sending Magento Order Id to Beezup, Magento Order Id: 76
886
+ 2015-07-07 16:31:37 | INFO | 404-1301343-2734710 | Setting Order Status to Shipped
887
+ 2015-07-07 16:31:37 | INFO | 404-1301343-2734710 | Generating Order Payment Invoice
888
+ 2015-07-07 16:31:37 | INFO | 404-1301343-2734710 | Order Payment Invoice Generated Succesfully
889
+ 2015-07-07 16:31:38 | INFO | 404-1301343-2734710 | Order imported succesfully, Magento Order Id: 76
890
+ 2015-07-07 16:31:39 | INFO | 404-6042050-5212332 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D28680B0FED25Fa59a54f3d0f14feca8c33cc1c1769591
891
+ 2015-07-07 16:31:39 | INFO | 404-6042050-5212332 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
892
+ 2015-07-07 16:31:39 | ERROR | 404-6042050-5212332| No Product Matching, Product 12650 could not be found
893
+ 2015-07-07 16:31:40 | INFO | 404-6042050-5212332 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
894
+ 2015-07-07 16:31:40 | ERROR | 404-6042050-5212332| No Product Matching, Product 16352 could not be found
895
+ 2015-07-07 16:31:41 | INFO | 404-6042050-5212332 | Generating Order
896
+ 2015-07-07 16:31:41 | INFO | 404-6042050-5212332 | Adding 1 product/s with id 865 to order, with Beezup Price: 43
897
+ 2015-07-07 16:31:41 | INFO | 404-6042050-5212332 | Adding 1 product/s with id 866 to order, with Beezup Price: 15
898
+ 2015-07-07 16:31:41 | INFO | 404-6042050-5212332 | Adding Order Shipping Cost: 3
899
+ 2015-07-07 16:31:42 | INFO | 404-6042050-5212332 | Adding Beezup Marketplace Information to Order
900
+ 2015-07-07 16:31:42 | INFO | 404-6042050-5212332 | Sending Magento Order Id to Beezup, Magento Order Id: 77
901
+ 2015-07-07 16:31:43 | INFO | 404-6042050-5212332 | Setting Order Status to Shipped
902
+ 2015-07-07 16:31:43 | INFO | 404-6042050-5212332 | Generating Order Payment Invoice
903
+ 2015-07-07 16:31:43 | INFO | 404-6042050-5212332 | Order Payment Invoice Generated Succesfully
904
+ 2015-07-07 16:31:43 | INFO | 404-6042050-5212332 | Order imported succesfully, Magento Order Id: 77
905
+ 2015-07-07 16:31:45 | INFO | 171-5288429-0213158 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D2863DB750BCAEd9a1501aff024ed782854e91d8917614
906
+ 2015-07-07 16:31:45 | INFO | 171-5288429-0213158 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
907
+ 2015-07-07 16:31:45 | ERROR | 171-5288429-0213158| No Product Matching, Product 15360 could not be found
908
+ 2015-07-07 16:31:46 | INFO | 171-5288429-0213158 | Generating Order
909
+ 2015-07-07 16:31:46 | INFO | 171-5288429-0213158 | Adding 1 product/s with id 867 to order, with Beezup Price: 36
910
+ 2015-07-07 16:31:46 | INFO | 171-5288429-0213158 | Adding Order Shipping Cost: 3
911
+ 2015-07-07 16:31:47 | INFO | 171-5288429-0213158 | Adding Beezup Marketplace Information to Order
912
+ 2015-07-07 16:31:47 | INFO | 171-5288429-0213158 | Sending Magento Order Id to Beezup, Magento Order Id: 78
913
+ 2015-07-07 16:31:48 | INFO | 171-5288429-0213158 | Setting Order Status to Shipped
914
+ 2015-07-07 16:31:48 | INFO | 171-5288429-0213158 | Generating Order Payment Invoice
915
+ 2015-07-07 16:31:48 | INFO | 171-5288429-0213158 | Order Payment Invoice Generated Succesfully
916
+ 2015-07-07 16:31:48 | INFO | 171-5288429-0213158 | Order imported succesfully, Magento Order Id: 78
917
+ 2015-07-07 16:31:50 | INFO | 171-8213117-5029142 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D286CC1E2CF0C27cf86044c72042fa802dfa9c7bbce59b
918
+ 2015-07-07 16:31:50 | INFO | 171-8213117-5029142 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
919
+ 2015-07-07 16:31:50 | ERROR | 171-8213117-5029142| No Product Matching, Product 16160 could not be found
920
+ 2015-07-07 16:31:51 | INFO | 171-8213117-5029142 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
921
+ 2015-07-07 16:31:51 | INFO | 171-8213117-5029142 | Product Matching succesful, Beezup Imported Id: 12752 , Magento Product Id: 825
922
+ 2015-07-07 16:31:51 | INFO | 171-8213117-5029142 | Generating Order
923
+ 2015-07-07 16:31:51 | INFO | 171-8213117-5029142 | Adding 1 product/s with id 868 to order, with Beezup Price: 36
924
+ 2015-07-07 16:31:51 | INFO | 171-8213117-5029142 | Adding 1 product/s with id 825 to order, with Beezup Price: 21
925
+ 2015-07-07 16:31:51 | INFO | 171-8213117-5029142 | Product 825 Stock = 0, Updating to 1 to generate Order
926
+ 2015-07-07 16:31:52 | INFO | 171-8213117-5029142 | Adding Order Shipping Cost: 3
927
+ 2015-07-07 16:31:53 | INFO | 171-8213117-5029142 | Adding Beezup Marketplace Information to Order
928
+ 2015-07-07 16:31:53 | INFO | 171-8213117-5029142 | Sending Magento Order Id to Beezup, Magento Order Id: 79
929
+ 2015-07-07 16:31:54 | INFO | 171-8213117-5029142 | Setting Order Status to Shipped
930
+ 2015-07-07 16:31:54 | INFO | 171-8213117-5029142 | Generating Order Payment Invoice
931
+ 2015-07-07 16:31:55 | INFO | 171-8213117-5029142 | Order Payment Invoice Generated Succesfully
932
+ 2015-07-07 16:31:55 | INFO | 171-8213117-5029142 | Order imported succesfully, Magento Order Id: 79
933
+ 2015-07-07 16:31:57 | INFO | 403-7220196-3163565 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D286D48E0EA9129c15fd1a39d44429935ce197ae228600
934
+ 2015-07-07 16:31:57 | INFO | 403-7220196-3163565 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
935
+ 2015-07-07 16:31:57 | ERROR | 403-7220196-3163565| No Product Matching, Product 15305 could not be found
936
+ 2015-07-07 16:31:58 | INFO | 403-7220196-3163565 | Generating Order
937
+ 2015-07-07 16:31:58 | INFO | 403-7220196-3163565 | Adding 1 product/s with id 869 to order, with Beezup Price: 16
938
+ 2015-07-07 16:31:58 | INFO | 403-7220196-3163565 | Adding Order Shipping Cost: 6
939
+ 2015-07-07 16:31:59 | INFO | 403-7220196-3163565 | Adding Beezup Marketplace Information to Order
940
+ 2015-07-07 16:31:59 | INFO | 403-7220196-3163565 | Sending Magento Order Id to Beezup, Magento Order Id: 80
941
+ 2015-07-07 16:32:01 | INFO | 403-7220196-3163565 | Setting Order Status to Shipped
942
+ 2015-07-07 16:32:01 | INFO | 403-7220196-3163565 | Generating Order Payment Invoice
943
+ 2015-07-07 16:32:01 | INFO | 403-7220196-3163565 | Order Payment Invoice Generated Succesfully
944
+ 2015-07-07 16:32:02 | INFO | 403-7220196-3163565 | Order imported succesfully, Magento Order Id: 80
945
+ 2015-07-07 16:32:04 | INFO | 171-1999038-3097117 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D286DCE3C2397Bb6b301c18c174f7da528441096c154ed
946
+ 2015-07-07 16:32:04 | INFO | 171-1999038-3097117 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
947
+ 2015-07-07 16:32:04 | INFO | 171-1999038-3097117 | Product Matching succesful, Beezup Imported Id: 12694 , Magento Product Id: 727
948
+ 2015-07-07 16:32:04 | INFO | 171-1999038-3097117 | Generating Order
949
+ 2015-07-07 16:32:04 | INFO | 171-1999038-3097117 | Adding 1 product/s with id 727 to order, with Beezup Price: 26
950
+ 2015-07-07 16:32:04 | INFO | 171-1999038-3097117 | Product 727 Stock = 0, Updating to 1 to generate Order
951
+ 2015-07-07 16:32:05 | INFO | 171-1999038-3097117 | Adding Order Shipping Cost: 0
952
+ 2015-07-07 16:32:06 | INFO | 171-1999038-3097117 | Adding Beezup Marketplace Information to Order
953
+ 2015-07-07 16:32:06 | INFO | 171-1999038-3097117 | Sending Magento Order Id to Beezup, Magento Order Id: 81
954
+ 2015-07-07 16:32:07 | INFO | 171-1999038-3097117 | Setting Order Status to Shipped
955
+ 2015-07-07 16:32:07 | INFO | 171-1999038-3097117 | Generating Order Payment Invoice
956
+ 2015-07-07 16:32:07 | INFO | 171-1999038-3097117 | Order Payment Invoice Generated Succesfully
957
+ 2015-07-07 16:32:08 | INFO | 171-1999038-3097117 | Order imported succesfully, Magento Order Id: 81
958
+ 2015-07-07 16:32:09 | INFO | 404-6652894-7627543 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D286CC1EBC25D78f9008afb7ec4a2894a228132157d256
959
+ 2015-07-07 16:32:09 | INFO | 404-6652894-7627543 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
960
+ 2015-07-07 16:32:09 | ERROR | 404-6652894-7627543| No Product Matching, Product 11725 could not be found
961
+ 2015-07-07 16:32:10 | INFO | 404-6652894-7627543 | Generating Order
962
+ 2015-07-07 16:32:10 | INFO | 404-6652894-7627543 | Adding 1 product/s with id 870 to order, with Beezup Price: 29
963
+ 2015-07-07 16:32:10 | INFO | 404-6652894-7627543 | Adding Order Shipping Cost: 3
964
+ 2015-07-07 16:32:11 | INFO | 404-6652894-7627543 | Adding Beezup Marketplace Information to Order
965
+ 2015-07-07 16:32:11 | INFO | 404-6652894-7627543 | Sending Magento Order Id to Beezup, Magento Order Id: 82
966
+ 2015-07-07 16:32:12 | INFO | 404-6652894-7627543 | Setting Order Status to InProgress
967
+ 2015-07-07 16:32:12 | INFO | 404-6652894-7627543 | Generating Order Payment Invoice
968
+ 2015-07-07 16:32:13 | INFO | 404-6652894-7627543 | Order Payment Invoice Generated Succesfully
969
+ 2015-07-07 16:32:13 | INFO | 404-6652894-7627543 | Order imported succesfully, Magento Order Id: 82
970
+ 2015-07-07 16:32:14 | INFO | OM Importation finalized succesfully
971
+ 2015-07-09 14:37:46 | INFO | Initializing OM Importation
972
+ 2015-07-09 14:37:57 | INFO | 171-7338053-7935500 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D28866C6E9C383ff89395de4d5499e810770cf497e5372
973
+ 2015-07-09 14:37:57 | INFO | 171-7338053-7935500 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
974
+ 2015-07-09 14:37:57 | INFO | 171-7338053-7935500 | Product Matching succesful, Beezup Imported Id: 14701 , Magento Product Id: 773
975
+ 2015-07-09 14:37:57 | INFO | 171-7338053-7935500 | Generating Order
976
+ 2015-07-09 14:37:57 | INFO | 171-7338053-7935500 | Adding 1 product/s with id 773 to order, with Beezup Price: 19
977
+ 2015-07-09 14:37:57 | INFO | 171-7338053-7935500 | Product 773 Stock = 0, Updating to 1 to generate Order
978
+ 2015-07-09 14:37:58 | INFO | 171-7338053-7935500 | Adding Order Shipping Cost: 0
979
+ 2015-07-09 14:38:01 | INFO | 171-7338053-7935500 | Adding Beezup Marketplace Information to Order
980
+ 2015-07-09 14:38:01 | INFO | 171-7338053-7935500 | Sending Magento Order Id to Beezup, Magento Order Id: 83
981
+ 2015-07-09 14:38:02 | INFO | 171-7338053-7935500 | Setting Order Status to Shipped
982
+ 2015-07-09 14:38:02 | INFO | 171-7338053-7935500 | Generating Order Payment Invoice
983
+ 2015-07-09 14:38:02 | INFO | 171-7338053-7935500 | Order Payment Invoice Generated Succesfully
984
+ 2015-07-09 14:38:03 | INFO | 171-7338053-7935500 | Order imported succesfully, Magento Order Id: 83
985
+ 2015-07-09 14:38:06 | INFO | 403-9215093-4697103 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D28866C6E75FC9d501b999219a41b397e0033916ee749e
986
+ 2015-07-09 14:38:06 | INFO | 403-9215093-4697103 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
987
+ 2015-07-09 14:38:06 | INFO | 403-9215093-4697103 | Product Matching succesful, Beezup Imported Id: 12650 , Magento Product Id: 865
988
+ 2015-07-09 14:38:06 | INFO | 403-9215093-4697103 | Generating Order
989
+ 2015-07-09 14:38:06 | INFO | 403-9215093-4697103 | Adding 1 product/s with id 865 to order, with Beezup Price: 43
990
+ 2015-07-09 14:38:06 | INFO | 403-9215093-4697103 | Product 865 Stock = 0, Updating to 1 to generate Order
991
+ 2015-07-09 14:38:06 | INFO | 403-9215093-4697103 | Adding Order Shipping Cost: 3
992
+ 2015-07-09 14:38:07 | INFO | 403-9215093-4697103 | Adding Beezup Marketplace Information to Order
993
+ 2015-07-09 14:38:07 | INFO | 403-9215093-4697103 | Sending Magento Order Id to Beezup, Magento Order Id: 84
994
+ 2015-07-09 14:38:08 | INFO | 403-9215093-4697103 | Setting Order Status to InProgress
995
+ 2015-07-09 14:38:08 | INFO | 403-9215093-4697103 | Generating Order Payment Invoice
996
+ 2015-07-09 14:38:09 | INFO | 403-9215093-4697103 | Order Payment Invoice Generated Succesfully
997
+ 2015-07-09 14:38:09 | INFO | 403-9215093-4697103 | Order imported succesfully, Magento Order Id: 84
998
+ 2015-07-09 14:38:11 | INFO | 403-5202817-0269955 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D2885E656022D2e496af1f4175493892784ce7c3d14335
999
+ 2015-07-09 14:38:11 | INFO | 403-5202817-0269955 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1000
+ 2015-07-09 14:38:11 | ERROR | 403-5202817-0269955| No Product Matching, Product 15419 could not be found
1001
+ 2015-07-09 14:38:11 | INFO | 403-5202817-0269955 | Generating Order
1002
+ 2015-07-09 14:38:11 | INFO | 403-5202817-0269955 | Adding 1 product/s with id 871 to order, with Beezup Price: 16
1003
+ 2015-07-09 14:38:11 | INFO | 403-5202817-0269955 | Adding Order Shipping Cost: 0
1004
+ 2015-07-09 14:38:12 | INFO | 403-5202817-0269955 | Adding Beezup Marketplace Information to Order
1005
+ 2015-07-09 14:38:12 | INFO | 403-5202817-0269955 | Sending Magento Order Id to Beezup, Magento Order Id: 85
1006
+ 2015-07-09 14:38:13 | INFO | 403-5202817-0269955 | Setting Order Status to Shipped
1007
+ 2015-07-09 14:38:13 | INFO | 403-5202817-0269955 | Generating Order Payment Invoice
1008
+ 2015-07-09 14:38:14 | INFO | 403-5202817-0269955 | Order Payment Invoice Generated Succesfully
1009
+ 2015-07-09 14:38:14 | INFO | 403-5202817-0269955 | Order imported succesfully, Magento Order Id: 85
1010
+ 2015-07-09 14:38:17 | INFO | 402-0140620-3913169 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D2885E638C64E35a71db3041024ef79729267d5c434070
1011
+ 2015-07-09 14:38:17 | INFO | 402-0140620-3913169 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1012
+ 2015-07-09 14:38:17 | INFO | 402-0140620-3913169 | Product Matching succesful, Beezup Imported Id: 15453 , Magento Product Id: 834
1013
+ 2015-07-09 14:38:17 | INFO | 402-0140620-3913169 | Generating Order
1014
+ 2015-07-09 14:38:17 | INFO | 402-0140620-3913169 | Adding 1 product/s with id 834 to order, with Beezup Price: 27
1015
+ 2015-07-09 14:38:17 | INFO | 402-0140620-3913169 | Product 834 Stock = 0, Updating to 1 to generate Order
1016
+ 2015-07-09 14:38:18 | INFO | 402-0140620-3913169 | Adding Order Shipping Cost: 0
1017
+ 2015-07-09 14:38:19 | INFO | 402-0140620-3913169 | Adding Beezup Marketplace Information to Order
1018
+ 2015-07-09 14:38:19 | INFO | 402-0140620-3913169 | Sending Magento Order Id to Beezup, Magento Order Id: 86
1019
+ 2015-07-09 14:38:20 | INFO | 402-0140620-3913169 | Setting Order Status to Shipped
1020
+ 2015-07-09 14:38:20 | INFO | 402-0140620-3913169 | Generating Order Payment Invoice
1021
+ 2015-07-09 14:38:20 | INFO | 402-0140620-3913169 | Order Payment Invoice Generated Succesfully
1022
+ 2015-07-09 14:38:20 | INFO | 402-0140620-3913169 | Order imported succesfully, Magento Order Id: 86
1023
+ 2015-07-09 14:38:24 | INFO | 403-4656092-4830703 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D28856038CCB72e050c37e5f94401190ebff96e512a7f4
1024
+ 2015-07-09 14:38:24 | INFO | 403-4656092-4830703 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1025
+ 2015-07-09 14:38:24 | ERROR | 403-4656092-4830703| No Product Matching, Product 15358 could not be found
1026
+ 2015-07-09 14:38:24 | INFO | 403-4656092-4830703 | Generating Order
1027
+ 2015-07-09 14:38:24 | INFO | 403-4656092-4830703 | Adding 3 product/s with id 872 to order, with Beezup Price: 23
1028
+ 2015-07-09 14:38:24 | INFO | 403-4656092-4830703 | Adding Order Shipping Cost: 0
1029
+ 2015-07-09 14:38:24 | INFO | 403-4656092-4830703 | Order Import failed, Trying to import Order Again
1030
+ 2015-07-09 14:38:24 | INFO | 403-4656092-4830703 | Adding 3 product/s with id 872 to order, with Beezup Price: 23
1031
+ 2015-07-09 14:38:24 | INFO | 403-4656092-4830703 | Adding Order Shipping Cost: 0
1032
+ 2015-07-09 14:38:24 | ERROR | 403-4656092-4830703| Order could not be imported, error: Not all products are available in the requested quantity
1033
+ 2015-07-09 14:38:29 | INFO | 403-9110297-3114743 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D2884D9FA03901da73fd6bf262473f871a666fa13c2a97
1034
+ 2015-07-09 14:38:29 | INFO | 403-9110297-3114743 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1035
+ 2015-07-09 14:38:29 | ERROR | 403-9110297-3114743| No Product Matching, Product 10065 could not be found
1036
+ 2015-07-09 14:38:29 | INFO | 403-9110297-3114743 | Generating Order
1037
+ 2015-07-09 14:38:29 | INFO | 403-9110297-3114743 | Adding 1 product/s with id 873 to order, with Beezup Price: 160
1038
+ 2015-07-09 14:38:29 | INFO | 403-9110297-3114743 | Adding Order Shipping Cost: 0
1039
+ 2015-07-09 14:38:30 | INFO | 403-9110297-3114743 | Adding Beezup Marketplace Information to Order
1040
+ 2015-07-09 14:38:30 | INFO | 403-9110297-3114743 | Sending Magento Order Id to Beezup, Magento Order Id: 87
1041
+ 2015-07-09 14:38:31 | INFO | 403-9110297-3114743 | Setting Order Status to Shipped
1042
+ 2015-07-09 14:38:31 | INFO | 403-9110297-3114743 | Generating Order Payment Invoice
1043
+ 2015-07-09 14:38:32 | INFO | 403-9110297-3114743 | Order Payment Invoice Generated Succesfully
1044
+ 2015-07-09 14:38:32 | INFO | 403-9110297-3114743 | Order imported succesfully, Magento Order Id: 87
1045
+ 2015-07-09 14:38:35 | INFO | 404-8562166-1765114 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D2884D9DBBF51827eae28182504ff2add21e77ec190a80
1046
+ 2015-07-09 14:38:35 | INFO | 404-8562166-1765114 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1047
+ 2015-07-09 14:38:35 | ERROR | 404-8562166-1765114| No Product Matching, Product 12778 could not be found
1048
+ 2015-07-09 14:38:35 | INFO | 404-8562166-1765114 | Generating Order
1049
+ 2015-07-09 14:38:35 | INFO | 404-8562166-1765114 | Adding 1 product/s with id 874 to order, with Beezup Price: 41
1050
+ 2015-07-09 14:38:35 | INFO | 404-8562166-1765114 | Adding Order Shipping Cost: 0
1051
+ 2015-07-09 14:38:36 | INFO | 404-8562166-1765114 | Adding Beezup Marketplace Information to Order
1052
+ 2015-07-09 14:38:36 | INFO | 404-8562166-1765114 | Sending Magento Order Id to Beezup, Magento Order Id: 88
1053
+ 2015-07-09 14:38:38 | INFO | 404-8562166-1765114 | Setting Order Status to Shipped
1054
+ 2015-07-09 14:38:38 | INFO | 404-8562166-1765114 | Generating Order Payment Invoice
1055
+ 2015-07-09 14:38:38 | INFO | 404-8562166-1765114 | Order Payment Invoice Generated Succesfully
1056
+ 2015-07-09 14:38:38 | INFO | 404-8562166-1765114 | Order imported succesfully, Magento Order Id: 88
1057
+ 2015-07-09 14:38:42 | INFO | 403-8588137-3223563 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D288454746735A97006cdca69a482a9e56754df106bf67
1058
+ 2015-07-09 14:38:42 | INFO | 403-8588137-3223563 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1059
+ 2015-07-09 14:38:42 | ERROR | 403-8588137-3223563| No Product Matching, Product 15321 could not be found
1060
+ 2015-07-09 14:38:42 | INFO | 403-8588137-3223563 | Generating Order
1061
+ 2015-07-09 14:38:42 | INFO | 403-8588137-3223563 | Adding 1 product/s with id 875 to order, with Beezup Price: 49
1062
+ 2015-07-09 14:38:42 | INFO | 403-8588137-3223563 | Adding Order Shipping Cost: 0
1063
+ 2015-07-09 14:38:43 | INFO | 403-8588137-3223563 | Adding Beezup Marketplace Information to Order
1064
+ 2015-07-09 14:38:43 | INFO | 403-8588137-3223563 | Sending Magento Order Id to Beezup, Magento Order Id: 89
1065
+ 2015-07-09 14:38:45 | INFO | 403-8588137-3223563 | Setting Order Status to Shipped
1066
+ 2015-07-09 14:38:45 | INFO | 403-8588137-3223563 | Generating Order Payment Invoice
1067
+ 2015-07-09 14:38:45 | INFO | 403-8588137-3223563 | Order Payment Invoice Generated Succesfully
1068
+ 2015-07-09 14:38:46 | INFO | 403-8588137-3223563 | Order imported succesfully, Magento Order Id: 89
1069
+ 2015-07-09 14:38:49 | INFO | 402-0480186-6925129 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D2883CF198A0EEbf8e5ec6f4bf4a15b50215bbeb7f73c9
1070
+ 2015-07-09 14:38:49 | INFO | 402-0480186-6925129 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1071
+ 2015-07-09 14:38:49 | INFO | 402-0480186-6925129 | Product Matching succesful, Beezup Imported Id: 15358 , Magento Product Id: 872
1072
+ 2015-07-09 14:38:49 | INFO | 402-0480186-6925129 | Generating Order
1073
+ 2015-07-09 14:38:49 | INFO | 402-0480186-6925129 | Adding 1 product/s with id 872 to order, with Beezup Price: 23
1074
+ 2015-07-09 14:38:49 | INFO | 402-0480186-6925129 | Adding Order Shipping Cost: 0
1075
+ 2015-07-09 14:38:50 | INFO | 402-0480186-6925129 | Adding Beezup Marketplace Information to Order
1076
+ 2015-07-09 14:38:50 | INFO | 402-0480186-6925129 | Sending Magento Order Id to Beezup, Magento Order Id: 90
1077
+ 2015-07-09 14:38:51 | INFO | 402-0480186-6925129 | Setting Order Status to Shipped
1078
+ 2015-07-09 14:38:51 | INFO | 402-0480186-6925129 | Generating Order Payment Invoice
1079
+ 2015-07-09 14:38:51 | INFO | 402-0480186-6925129 | Order Payment Invoice Generated Succesfully
1080
+ 2015-07-09 14:38:52 | INFO | 402-0480186-6925129 | Order imported succesfully, Magento Order Id: 90
1081
+ 2015-07-09 14:38:55 | INFO | 403-6674132-2801163 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D2883CF05004D27b8a5ef19e17402a8d886134d4dd83da
1082
+ 2015-07-09 14:38:55 | INFO | 403-6674132-2801163 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1083
+ 2015-07-09 14:38:55 | INFO | 403-6674132-2801163 | Product Matching succesful, Beezup Imported Id: 15453 , Magento Product Id: 834
1084
+ 2015-07-09 14:38:55 | INFO | 403-6674132-2801163 | Generating Order
1085
+ 2015-07-09 14:38:55 | INFO | 403-6674132-2801163 | Adding 1 product/s with id 834 to order, with Beezup Price: 27
1086
+ 2015-07-09 14:38:55 | INFO | 403-6674132-2801163 | Product 834 Stock = 0, Updating to 1 to generate Order
1087
+ 2015-07-09 14:38:55 | INFO | 403-6674132-2801163 | Adding Order Shipping Cost: 0
1088
+ 2015-07-09 14:38:56 | INFO | 403-6674132-2801163 | Adding Beezup Marketplace Information to Order
1089
+ 2015-07-09 14:38:56 | INFO | 403-6674132-2801163 | Sending Magento Order Id to Beezup, Magento Order Id: 91
1090
+ 2015-07-09 14:38:58 | INFO | 403-6674132-2801163 | Setting Order Status to Shipped
1091
+ 2015-07-09 14:38:58 | INFO | 403-6674132-2801163 | Generating Order Payment Invoice
1092
+ 2015-07-09 14:38:58 | INFO | 403-6674132-2801163 | Order Payment Invoice Generated Succesfully
1093
+ 2015-07-09 14:38:58 | INFO | 403-6674132-2801163 | Order imported succesfully, Magento Order Id: 91
1094
+ 2015-07-09 14:39:01 | INFO | 404-0029166-8834741 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D2883CEE96117340690b51f9e34ad881e9f5a9132c8a4c
1095
+ 2015-07-09 14:39:01 | INFO | 404-0029166-8834741 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1096
+ 2015-07-09 14:39:01 | ERROR | 404-0029166-8834741| No Product Matching, Product 10891 could not be found
1097
+ 2015-07-09 14:39:02 | INFO | 404-0029166-8834741 | Generating Order
1098
+ 2015-07-09 14:39:02 | INFO | 404-0029166-8834741 | Adding 1 product/s with id 876 to order, with Beezup Price: 43
1099
+ 2015-07-09 14:39:02 | INFO | 404-0029166-8834741 | Adding Order Shipping Cost: 0
1100
+ 2015-07-09 14:39:03 | INFO | 404-0029166-8834741 | Adding Beezup Marketplace Information to Order
1101
+ 2015-07-09 14:39:03 | INFO | 404-0029166-8834741 | Sending Magento Order Id to Beezup, Magento Order Id: 92
1102
+ 2015-07-09 14:39:04 | INFO | 404-0029166-8834741 | Setting Order Status to Shipped
1103
+ 2015-07-09 14:39:04 | INFO | 404-0029166-8834741 | Generating Order Payment Invoice
1104
+ 2015-07-09 14:39:04 | INFO | 404-0029166-8834741 | Order Payment Invoice Generated Succesfully
1105
+ 2015-07-09 14:39:04 | INFO | 404-0029166-8834741 | Order imported succesfully, Magento Order Id: 92
1106
+ 2015-07-09 14:39:07 | INFO | 171-5921411-6701163 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D287BF2FCEACF0b118c71baa3141388493bd84ba5fdffe
1107
+ 2015-07-09 14:39:07 | INFO | 171-5921411-6701163 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1108
+ 2015-07-09 14:39:07 | ERROR | 171-5921411-6701163| No Product Matching, Product 14553 could not be found
1109
+ 2015-07-09 14:39:08 | INFO | 171-5921411-6701163 | Generating Order
1110
+ 2015-07-09 14:39:08 | INFO | 171-5921411-6701163 | Adding 1 product/s with id 877 to order, with Beezup Price: 41
1111
+ 2015-07-09 14:39:08 | INFO | 171-5921411-6701163 | Adding Order Shipping Cost: 0
1112
+ 2015-07-09 14:39:09 | INFO | 171-5921411-6701163 | Adding Beezup Marketplace Information to Order
1113
+ 2015-07-09 14:39:09 | INFO | 171-5921411-6701163 | Sending Magento Order Id to Beezup, Magento Order Id: 93
1114
+ 2015-07-09 14:39:10 | INFO | 171-5921411-6701163 | Setting Order Status to Shipped
1115
+ 2015-07-09 14:39:10 | INFO | 171-5921411-6701163 | Generating Order Payment Invoice
1116
+ 2015-07-09 14:39:10 | INFO | 171-5921411-6701163 | Order Payment Invoice Generated Succesfully
1117
+ 2015-07-09 14:39:11 | INFO | 171-5921411-6701163 | Order imported succesfully, Magento Order Id: 93
1118
+ 2015-07-09 14:39:13 | INFO | 404-5539273-8828300 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D288348181B79856ec2f772231405592e061103f18848a
1119
+ 2015-07-09 14:39:13 | INFO | 404-5539273-8828300 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1120
+ 2015-07-09 14:39:13 | ERROR | 404-5539273-8828300| No Product Matching, Product 10011 could not be found
1121
+ 2015-07-09 14:39:14 | INFO | 404-5539273-8828300 | Generating Order
1122
+ 2015-07-09 14:39:14 | INFO | 404-5539273-8828300 | Adding 1 product/s with id 878 to order, with Beezup Price: 57
1123
+ 2015-07-09 14:39:14 | INFO | 404-5539273-8828300 | Adding Order Shipping Cost: 0
1124
+ 2015-07-09 14:39:14 | INFO | 404-5539273-8828300 | Adding Beezup Marketplace Information to Order
1125
+ 2015-07-09 14:39:14 | INFO | 404-5539273-8828300 | Sending Magento Order Id to Beezup, Magento Order Id: 94
1126
+ 2015-07-09 14:39:15 | INFO | 404-5539273-8828300 | Setting Order Status to Shipped
1127
+ 2015-07-09 14:39:15 | INFO | 404-5539273-8828300 | Generating Order Payment Invoice
1128
+ 2015-07-09 14:39:16 | INFO | 404-5539273-8828300 | Order Payment Invoice Generated Succesfully
1129
+ 2015-07-09 14:39:16 | INFO | 404-5539273-8828300 | Order imported succesfully, Magento Order Id: 94
1130
+ 2015-07-09 14:39:19 | INFO | 402-3374945-1293101 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D2882C2A42C3EC2a595eb757e348b981eb1a78ef149276
1131
+ 2015-07-09 14:39:19 | INFO | 402-3374945-1293101 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1132
+ 2015-07-09 14:39:19 | ERROR | 402-3374945-1293101| No Product Matching, Product 15767 could not be found
1133
+ 2015-07-09 14:39:20 | INFO | 402-3374945-1293101 | Generating Order
1134
+ 2015-07-09 14:39:20 | INFO | 402-3374945-1293101 | Adding 1 product/s with id 879 to order, with Beezup Price: 22
1135
+ 2015-07-09 14:39:20 | INFO | 402-3374945-1293101 | Adding Order Shipping Cost: 0
1136
+ 2015-07-09 14:39:21 | INFO | 402-3374945-1293101 | Adding Beezup Marketplace Information to Order
1137
+ 2015-07-09 14:39:21 | INFO | 402-3374945-1293101 | Sending Magento Order Id to Beezup, Magento Order Id: 95
1138
+ 2015-07-09 14:39:22 | INFO | 402-3374945-1293101 | Setting Order Status to Shipped
1139
+ 2015-07-09 14:39:22 | INFO | 402-3374945-1293101 | Generating Order Payment Invoice
1140
+ 2015-07-09 14:39:22 | INFO | 402-3374945-1293101 | Order Payment Invoice Generated Succesfully
1141
+ 2015-07-09 14:39:22 | INFO | 402-3374945-1293101 | Order imported succesfully, Magento Order Id: 95
1142
+ 2015-07-09 14:39:25 | INFO | 171-0714027-0976320 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D2763B02F8FCE5e79efc38270c4619b263f493cb6b21e2
1143
+ 2015-07-09 14:39:25 | INFO | 171-0714027-0976320 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1144
+ 2015-07-09 14:39:25 | ERROR | 171-0714027-0976320| No Product Matching, Product 12478 could not be found
1145
+ 2015-07-09 14:39:26 | INFO | 171-0714027-0976320 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1146
+ 2015-07-09 14:39:26 | ERROR | 171-0714027-0976320| No Product Matching, Product 12475 could not be found
1147
+ 2015-07-09 14:39:26 | INFO | 171-0714027-0976320 | Generating Order
1148
+ 2015-07-09 14:39:27 | INFO | 171-0714027-0976320 | Adding 5 product/s with id 880 to order, with Beezup Price: 14
1149
+ 2015-07-09 14:39:27 | INFO | 171-0714027-0976320 | Adding 3 product/s with id 881 to order, with Beezup Price: 14
1150
+ 2015-07-09 14:39:27 | INFO | 171-0714027-0976320 | Adding Order Shipping Cost: 0
1151
+ 2015-07-09 14:39:27 | INFO | 171-0714027-0976320 | Order Import failed, Trying to import Order Again
1152
+ 2015-07-09 14:39:27 | INFO | 171-0714027-0976320 | Adding 5 product/s with id 880 to order, with Beezup Price: 14
1153
+ 2015-07-09 14:39:27 | INFO | 171-0714027-0976320 | Adding 3 product/s with id 881 to order, with Beezup Price: 14
1154
+ 2015-07-09 14:39:27 | INFO | 171-0714027-0976320 | Adding Order Shipping Cost: 0
1155
+ 2015-07-09 14:39:27 | ERROR | 171-0714027-0976320| Order could not be imported, error: Not all products are available in the requested quantity
1156
+ 2015-07-09 14:39:30 | INFO | 402-1492220-3105951 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D2881328921936900324d0a1d04371b821b58dd5aca36f
1157
+ 2015-07-09 14:39:30 | INFO | 402-1492220-3105951 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1158
+ 2015-07-09 14:39:30 | ERROR | 402-1492220-3105951| No Product Matching, Product 16285 could not be found
1159
+ 2015-07-09 14:39:31 | INFO | 402-1492220-3105951 | Generating Order
1160
+ 2015-07-09 14:39:31 | INFO | 402-1492220-3105951 | Adding 1 product/s with id 882 to order, with Beezup Price: 19
1161
+ 2015-07-09 14:39:31 | INFO | 402-1492220-3105951 | Adding Order Shipping Cost: 3
1162
+ 2015-07-09 14:39:31 | INFO | 402-1492220-3105951 | Adding Beezup Marketplace Information to Order
1163
+ 2015-07-09 14:39:31 | INFO | 402-1492220-3105951 | Sending Magento Order Id to Beezup, Magento Order Id: 96
1164
+ 2015-07-09 14:39:33 | INFO | 402-1492220-3105951 | Setting Order Status to InProgress
1165
+ 2015-07-09 14:39:33 | INFO | 402-1492220-3105951 | Generating Order Payment Invoice
1166
+ 2015-07-09 14:39:33 | INFO | 402-1492220-3105951 | Order Payment Invoice Generated Succesfully
1167
+ 2015-07-09 14:39:33 | INFO | 402-1492220-3105951 | Order imported succesfully, Magento Order Id: 96
1168
+ 2015-07-09 14:39:37 | INFO | 403-6431334-2480349 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D287D865213D95e23bb2b5d97740dab5e9b301484fd3d6
1169
+ 2015-07-09 14:39:37 | INFO | 403-6431334-2480349 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1170
+ 2015-07-09 14:39:37 | ERROR | 403-6431334-2480349| No Product Matching, Product 13975 could not be found
1171
+ 2015-07-09 14:39:38 | INFO | 403-6431334-2480349 | Generating Order
1172
+ 2015-07-09 14:39:38 | INFO | 403-6431334-2480349 | Adding 1 product/s with id 883 to order, with Beezup Price: 46
1173
+ 2015-07-09 14:39:38 | INFO | 403-6431334-2480349 | Adding Order Shipping Cost: 3
1174
+ 2015-07-09 14:39:39 | INFO | 403-6431334-2480349 | Adding Beezup Marketplace Information to Order
1175
+ 2015-07-09 14:39:39 | INFO | 403-6431334-2480349 | Sending Magento Order Id to Beezup, Magento Order Id: 97
1176
+ 2015-07-09 14:39:40 | INFO | 403-6431334-2480349 | Setting Order Status to InProgress
1177
+ 2015-07-09 14:39:40 | INFO | 403-6431334-2480349 | Generating Order Payment Invoice
1178
+ 2015-07-09 14:39:40 | INFO | 403-6431334-2480349 | Order Payment Invoice Generated Succesfully
1179
+ 2015-07-09 14:39:40 | INFO | 403-6431334-2480349 | Order imported succesfully, Magento Order Id: 97
1180
+ 2015-07-09 14:39:44 | INFO | 404-1751755-0914705 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D287BF2E6CEC9499d7946a46af4043ac26eabf9082fcb8
1181
+ 2015-07-09 14:39:44 | INFO | 404-1751755-0914705 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1182
+ 2015-07-09 14:39:44 | ERROR | 404-1751755-0914705| No Product Matching, Product 16439 could not be found
1183
+ 2015-07-09 14:39:44 | INFO | 404-1751755-0914705 | Generating Order
1184
+ 2015-07-09 14:39:44 | INFO | 404-1751755-0914705 | Adding 1 product/s with id 884 to order, with Beezup Price: 20
1185
+ 2015-07-09 14:39:44 | INFO | 404-1751755-0914705 | Adding Order Shipping Cost: 0
1186
+ 2015-07-09 14:39:45 | INFO | 404-1751755-0914705 | Adding Beezup Marketplace Information to Order
1187
+ 2015-07-09 14:39:45 | INFO | 404-1751755-0914705 | Sending Magento Order Id to Beezup, Magento Order Id: 98
1188
+ 2015-07-09 14:39:47 | INFO | 404-1751755-0914705 | Setting Order Status to Shipped
1189
+ 2015-07-09 14:39:47 | INFO | 404-1751755-0914705 | Generating Order Payment Invoice
1190
+ 2015-07-09 14:39:47 | INFO | 404-1751755-0914705 | Order Payment Invoice Generated Succesfully
1191
+ 2015-07-09 14:39:47 | INFO | 404-1751755-0914705 | Order imported succesfully, Magento Order Id: 98
1192
+ 2015-07-09 14:39:49 | INFO | 403-0028874-5834726 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D287BF2D364BC6a2d62ac942db4c73ada6a5ec233c405c
1193
+ 2015-07-09 14:39:49 | INFO | 403-0028874-5834726 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1194
+ 2015-07-09 14:39:49 | ERROR | 403-0028874-5834726| No Product Matching, Product 15326 could not be found
1195
+ 2015-07-09 14:39:50 | INFO | 403-0028874-5834726 | Generating Order
1196
+ 2015-07-09 14:39:50 | INFO | 403-0028874-5834726 | Adding 1 product/s with id 885 to order, with Beezup Price: 21
1197
+ 2015-07-09 14:39:50 | INFO | 403-0028874-5834726 | Adding Order Shipping Cost: 0
1198
+ 2015-07-09 14:39:51 | INFO | 403-0028874-5834726 | Adding Beezup Marketplace Information to Order
1199
+ 2015-07-09 14:39:51 | INFO | 403-0028874-5834726 | Sending Magento Order Id to Beezup, Magento Order Id: 99
1200
+ 2015-07-09 14:39:52 | INFO | 403-0028874-5834726 | Setting Order Status to Shipped
1201
+ 2015-07-09 14:39:52 | INFO | 403-0028874-5834726 | Generating Order Payment Invoice
1202
+ 2015-07-09 14:39:52 | INFO | 403-0028874-5834726 | Order Payment Invoice Generated Succesfully
1203
+ 2015-07-09 14:39:52 | INFO | 403-0028874-5834726 | Order imported succesfully, Magento Order Id: 99
1204
+ 2015-07-09 14:39:55 | INFO | 403-3908310-1842702 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D287BF2BF4E1A611ca76fbcc6c4d578ff91cfe11b8391f
1205
+ 2015-07-09 14:39:55 | INFO | 403-3908310-1842702 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1206
+ 2015-07-09 14:39:55 | INFO | 403-3908310-1842702 | Product Matching succesful, Beezup Imported Id: 12475 , Magento Product Id: 881
1207
+ 2015-07-09 14:39:55 | INFO | 403-3908310-1842702 | Generating Order
1208
+ 2015-07-09 14:39:55 | INFO | 403-3908310-1842702 | Adding 1 product/s with id 881 to order, with Beezup Price: 14
1209
+ 2015-07-09 14:39:55 | INFO | 403-3908310-1842702 | Adding Order Shipping Cost: 9.99
1210
+ 2015-07-09 14:39:56 | INFO | 403-3908310-1842702 | Adding Beezup Marketplace Information to Order
1211
+ 2015-07-09 14:39:56 | INFO | 403-3908310-1842702 | Sending Magento Order Id to Beezup, Magento Order Id: 100
1212
+ 2015-07-09 14:39:58 | INFO | 403-3908310-1842702 | Setting Order Status to Shipped
1213
+ 2015-07-09 14:39:58 | INFO | 403-3908310-1842702 | Generating Order Payment Invoice
1214
+ 2015-07-09 14:39:58 | INFO | 403-3908310-1842702 | Order Payment Invoice Generated Succesfully
1215
+ 2015-07-09 14:39:58 | INFO | 403-3908310-1842702 | Order imported succesfully, Magento Order Id: 100
1216
+ 2015-07-09 14:40:02 | INFO | 402-2620865-1866707 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D287BF2A44AE32fbaa60b47cc6489ca7b8864885f9eaf2
1217
+ 2015-07-09 14:40:02 | INFO | 402-2620865-1866707 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1218
+ 2015-07-09 14:40:02 | INFO | 402-2620865-1866707 | Product Matching succesful, Beezup Imported Id: 14701 , Magento Product Id: 773
1219
+ 2015-07-09 14:40:02 | INFO | 402-2620865-1866707 | Generating Order
1220
+ 2015-07-09 14:40:02 | INFO | 402-2620865-1866707 | Adding 1 product/s with id 773 to order, with Beezup Price: 19
1221
+ 2015-07-09 14:40:02 | INFO | 402-2620865-1866707 | Product 773 Stock = 0, Updating to 1 to generate Order
1222
+ 2015-07-09 14:40:03 | INFO | 402-2620865-1866707 | Adding Order Shipping Cost: 0
1223
+ 2015-07-09 14:40:04 | INFO | 402-2620865-1866707 | Adding Beezup Marketplace Information to Order
1224
+ 2015-07-09 14:40:04 | INFO | 402-2620865-1866707 | Sending Magento Order Id to Beezup, Magento Order Id: 101
1225
+ 2015-07-09 14:40:06 | INFO | 402-2620865-1866707 | Setting Order Status to Shipped
1226
+ 2015-07-09 14:40:06 | INFO | 402-2620865-1866707 | Generating Order Payment Invoice
1227
+ 2015-07-09 14:40:07 | INFO | 402-2620865-1866707 | Order Payment Invoice Generated Succesfully
1228
+ 2015-07-09 14:40:07 | INFO | 402-2620865-1866707 | Order imported succesfully, Magento Order Id: 101
1229
+ 2015-07-09 14:40:11 | INFO | 403-2181994-8017134 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D287BF2909C64Ec9d35af70fef444aa670474183d4725c
1230
+ 2015-07-09 14:40:11 | INFO | 403-2181994-8017134 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1231
+ 2015-07-09 14:40:11 | INFO | 403-2181994-8017134 | Product Matching succesful, Beezup Imported Id: 13975 , Magento Product Id: 883
1232
+ 2015-07-09 14:40:11 | INFO | 403-2181994-8017134 | Generating Order
1233
+ 2015-07-09 14:40:11 | INFO | 403-2181994-8017134 | Adding 1 product/s with id 883 to order, with Beezup Price: 46
1234
+ 2015-07-09 14:40:11 | INFO | 403-2181994-8017134 | Product 883 Stock = 0, Updating to 1 to generate Order
1235
+ 2015-07-09 14:40:11 | INFO | 403-2181994-8017134 | Adding Order Shipping Cost: 3
1236
+ 2015-07-09 14:40:12 | INFO | 403-2181994-8017134 | Adding Beezup Marketplace Information to Order
1237
+ 2015-07-09 14:40:12 | INFO | 403-2181994-8017134 | Sending Magento Order Id to Beezup, Magento Order Id: 102
1238
+ 2015-07-09 14:40:13 | INFO | 403-2181994-8017134 | Setting Order Status to InProgress
1239
+ 2015-07-09 14:40:13 | INFO | 403-2181994-8017134 | Generating Order Payment Invoice
1240
+ 2015-07-09 14:40:13 | INFO | 403-2181994-8017134 | Order Payment Invoice Generated Succesfully
1241
+ 2015-07-09 14:40:14 | INFO | 403-2181994-8017134 | Order imported succesfully, Magento Order Id: 102
1242
+ 2015-07-09 14:40:17 | INFO | 404-4252212-7897102 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D287B6CBA470F11283bd3d30dd4ab39831edb854a9ca95
1243
+ 2015-07-09 14:40:17 | INFO | 404-4252212-7897102 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1244
+ 2015-07-09 14:40:17 | ERROR | 404-4252212-7897102| No Product Matching, Product 13943 could not be found
1245
+ 2015-07-09 14:40:17 | INFO | 404-4252212-7897102 | Generating Order
1246
+ 2015-07-09 14:40:17 | INFO | 404-4252212-7897102 | Adding 1 product/s with id 886 to order, with Beezup Price: 21
1247
+ 2015-07-09 14:40:17 | INFO | 404-4252212-7897102 | Adding Order Shipping Cost: 0
1248
+ 2015-07-09 14:40:18 | INFO | 404-4252212-7897102 | Adding Beezup Marketplace Information to Order
1249
+ 2015-07-09 14:40:18 | INFO | 404-4252212-7897102 | Sending Magento Order Id to Beezup, Magento Order Id: 103
1250
+ 2015-07-09 14:40:19 | INFO | 404-4252212-7897102 | Setting Order Status to Shipped
1251
+ 2015-07-09 14:40:19 | INFO | 404-4252212-7897102 | Generating Order Payment Invoice
1252
+ 2015-07-09 14:40:20 | INFO | 404-4252212-7897102 | Order Payment Invoice Generated Succesfully
1253
+ 2015-07-09 14:40:20 | INFO | 404-4252212-7897102 | Order imported succesfully, Magento Order Id: 103
1254
+ 2015-07-09 14:40:24 | INFO | 402-0620562-1005935 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D287B6CA6C728Ee79a7d0dc2414f9e83b21b78762d2aa5
1255
+ 2015-07-09 14:40:24 | INFO | 402-0620562-1005935 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1256
+ 2015-07-09 14:40:24 | ERROR | 402-0620562-1005935| No Product Matching, Product 12826 could not be found
1257
+ 2015-07-09 14:40:25 | INFO | 402-0620562-1005935 | Generating Order
1258
+ 2015-07-09 14:40:25 | INFO | 402-0620562-1005935 | Adding 1 product/s with id 887 to order, with Beezup Price: 21
1259
+ 2015-07-09 14:40:25 | INFO | 402-0620562-1005935 | Adding Order Shipping Cost: 0
1260
+ 2015-07-09 14:40:26 | INFO | 402-0620562-1005935 | Adding Beezup Marketplace Information to Order
1261
+ 2015-07-09 14:40:26 | INFO | 402-0620562-1005935 | Sending Magento Order Id to Beezup, Magento Order Id: 104
1262
+ 2015-07-09 14:40:27 | INFO | 402-0620562-1005935 | Setting Order Status to Shipped
1263
+ 2015-07-09 14:40:27 | INFO | 402-0620562-1005935 | Generating Order Payment Invoice
1264
+ 2015-07-09 14:40:28 | INFO | 402-0620562-1005935 | Order Payment Invoice Generated Succesfully
1265
+ 2015-07-09 14:40:28 | INFO | 402-0620562-1005935 | Order imported succesfully, Magento Order Id: 104
1266
+ 2015-07-09 14:40:31 | INFO | 402-2846284-3696368 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D287B6C92291A6204784a190f64e6abe3c6af2446a3802
1267
+ 2015-07-09 14:40:31 | INFO | 402-2846284-3696368 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1268
+ 2015-07-09 14:40:31 | ERROR | 402-2846284-3696368| No Product Matching, Product 12141 could not be found
1269
+ 2015-07-09 14:40:32 | INFO | 402-2846284-3696368 | Generating Order
1270
+ 2015-07-09 14:40:32 | INFO | 402-2846284-3696368 | Adding 1 product/s with id 888 to order, with Beezup Price: 12
1271
+ 2015-07-09 14:40:32 | INFO | 402-2846284-3696368 | Adding Order Shipping Cost: 0
1272
+ 2015-07-09 14:40:32 | INFO | 402-2846284-3696368 | Adding Beezup Marketplace Information to Order
1273
+ 2015-07-09 14:40:32 | INFO | 402-2846284-3696368 | Sending Magento Order Id to Beezup, Magento Order Id: 105
1274
+ 2015-07-09 14:40:33 | INFO | 402-2846284-3696368 | Setting Order Status to Shipped
1275
+ 2015-07-09 14:40:33 | INFO | 402-2846284-3696368 | Generating Order Payment Invoice
1276
+ 2015-07-09 14:40:34 | INFO | 402-2846284-3696368 | Order Payment Invoice Generated Succesfully
1277
+ 2015-07-09 14:40:34 | INFO | 402-2846284-3696368 | Order imported succesfully, Magento Order Id: 105
1278
+ 2015-07-09 14:40:37 | INFO | 402-8882945-9997910 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D287B6C79276BFb11ec5a1720a4ac18907008f3b7c9f2c
1279
+ 2015-07-09 14:40:37 | INFO | 402-8882945-9997910 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1280
+ 2015-07-09 14:40:37 | INFO | 402-8882945-9997910 | Product Matching succesful, Beezup Imported Id: 15326 , Magento Product Id: 885
1281
+ 2015-07-09 14:40:37 | INFO | 402-8882945-9997910 | Generating Order
1282
+ 2015-07-09 14:40:37 | INFO | 402-8882945-9997910 | Adding 1 product/s with id 885 to order, with Beezup Price: 21
1283
+ 2015-07-09 14:40:37 | INFO | 402-8882945-9997910 | Product 885 Stock = 0, Updating to 1 to generate Order
1284
+ 2015-07-09 14:40:37 | INFO | 402-8882945-9997910 | Adding Order Shipping Cost: 0
1285
+ 2015-07-09 14:40:38 | INFO | 402-8882945-9997910 | Adding Beezup Marketplace Information to Order
1286
+ 2015-07-09 14:40:38 | INFO | 402-8882945-9997910 | Sending Magento Order Id to Beezup, Magento Order Id: 106
1287
+ 2015-07-09 14:40:39 | INFO | 402-8882945-9997910 | Setting Order Status to Shipped
1288
+ 2015-07-09 14:40:39 | INFO | 402-8882945-9997910 | Generating Order Payment Invoice
1289
+ 2015-07-09 14:40:40 | INFO | 402-8882945-9997910 | Order Payment Invoice Generated Succesfully
1290
+ 2015-07-09 14:40:40 | INFO | 402-8882945-9997910 | Order imported succesfully, Magento Order Id: 106
1291
+ 2015-07-09 14:40:43 | INFO | 171-5422531-3649105 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D287AE6CD2F155f652dddc59d7440ca02e9e18f7fdbea0
1292
+ 2015-07-09 14:40:43 | INFO | 171-5422531-3649105 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1293
+ 2015-07-09 14:40:43 | ERROR | 171-5422531-3649105| No Product Matching, Product 16114 could not be found
1294
+ 2015-07-09 14:40:44 | INFO | 171-5422531-3649105 | Generating Order
1295
+ 2015-07-09 14:40:44 | INFO | 171-5422531-3649105 | Adding 1 product/s with id 889 to order, with Beezup Price: 25
1296
+ 2015-07-09 14:40:44 | INFO | 171-5422531-3649105 | Adding Order Shipping Cost: 9.99
1297
+ 2015-07-09 14:40:45 | INFO | 171-5422531-3649105 | Adding Beezup Marketplace Information to Order
1298
+ 2015-07-09 14:40:45 | INFO | 171-5422531-3649105 | Sending Magento Order Id to Beezup, Magento Order Id: 107
1299
+ 2015-07-09 14:40:46 | INFO | 171-5422531-3649105 | Setting Order Status to Shipped
1300
+ 2015-07-09 14:40:46 | INFO | 171-5422531-3649105 | Generating Order Payment Invoice
1301
+ 2015-07-09 14:40:46 | INFO | 171-5422531-3649105 | Order Payment Invoice Generated Succesfully
1302
+ 2015-07-09 14:40:46 | INFO | 171-5422531-3649105 | Order imported succesfully, Magento Order Id: 107
1303
+ 2015-07-09 14:40:49 | INFO | 171-7004890-2091542 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D287AE6B347D7Fdfe0edc3e10840ccbdd3739df115c62e
1304
+ 2015-07-09 14:40:49 | INFO | 171-7004890-2091542 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1305
+ 2015-07-09 14:40:49 | INFO | 171-7004890-2091542 | Product Matching succesful, Beezup Imported Id: 12478 , Magento Product Id: 880
1306
+ 2015-07-09 14:40:49 | INFO | 171-7004890-2091542 | Generating Order
1307
+ 2015-07-09 14:40:49 | INFO | 171-7004890-2091542 | Adding 1 product/s with id 880 to order, with Beezup Price: 14
1308
+ 2015-07-09 14:40:49 | INFO | 171-7004890-2091542 | Adding Order Shipping Cost: 0
1309
+ 2015-07-09 14:40:50 | INFO | 171-7004890-2091542 | Adding Beezup Marketplace Information to Order
1310
+ 2015-07-09 14:40:50 | INFO | 171-7004890-2091542 | Sending Magento Order Id to Beezup, Magento Order Id: 108
1311
+ 2015-07-09 14:40:52 | INFO | 171-7004890-2091542 | Setting Order Status to Shipped
1312
+ 2015-07-09 14:40:52 | INFO | 171-7004890-2091542 | Generating Order Payment Invoice
1313
+ 2015-07-09 14:40:52 | INFO | 171-7004890-2091542 | Order Payment Invoice Generated Succesfully
1314
+ 2015-07-09 14:40:52 | INFO | 171-7004890-2091542 | Order imported succesfully, Magento Order Id: 108
1315
+ 2015-07-09 14:40:54 | INFO | 403-3132677-1811556 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D28749DFBC3C4F34dac96cdf034f81a874fd1ceecb4cd7
1316
+ 2015-07-09 14:40:54 | INFO | 403-3132677-1811556 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1317
+ 2015-07-09 14:40:54 | ERROR | 403-3132677-1811556| No Product Matching, Product 14675 could not be found
1318
+ 2015-07-09 14:40:55 | INFO | 403-3132677-1811556 | Generating Order
1319
+ 2015-07-09 14:40:55 | INFO | 403-3132677-1811556 | Adding 1 product/s with id 890 to order, with Beezup Price: 19
1320
+ 2015-07-09 14:40:55 | INFO | 403-3132677-1811556 | Adding Order Shipping Cost: 3
1321
+ 2015-07-09 14:40:55 | INFO | 403-3132677-1811556 | Adding Beezup Marketplace Information to Order
1322
+ 2015-07-09 14:40:55 | INFO | 403-3132677-1811556 | Sending Magento Order Id to Beezup, Magento Order Id: 109
1323
+ 2015-07-09 14:40:57 | INFO | 403-3132677-1811556 | Setting Order Status to Shipped
1324
+ 2015-07-09 14:40:57 | INFO | 403-3132677-1811556 | Generating Order Payment Invoice
1325
+ 2015-07-09 14:40:58 | INFO | 403-3132677-1811556 | Order Payment Invoice Generated Succesfully
1326
+ 2015-07-09 14:40:58 | INFO | 403-3132677-1811556 | Order imported succesfully, Magento Order Id: 109
1327
+ 2015-07-09 14:41:01 | INFO | 403-7716685-4330724 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D28762F3EE88755b808111f1bf4207ab062ef4fb0ad865
1328
+ 2015-07-09 14:41:01 | INFO | 403-7716685-4330724 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1329
+ 2015-07-09 14:41:02 | ERROR | 403-7716685-4330724| No Product Matching, Product 16101 could not be found
1330
+ 2015-07-09 14:41:02 | INFO | 403-7716685-4330724 | Generating Order
1331
+ 2015-07-09 14:41:02 | INFO | 403-7716685-4330724 | Adding 1 product/s with id 891 to order, with Beezup Price: 21
1332
+ 2015-07-09 14:41:02 | INFO | 403-7716685-4330724 | Adding Order Shipping Cost: 15
1333
+ 2015-07-09 14:41:03 | INFO | 403-7716685-4330724 | Adding Beezup Marketplace Information to Order
1334
+ 2015-07-09 14:41:03 | INFO | 403-7716685-4330724 | Sending Magento Order Id to Beezup, Magento Order Id: 110
1335
+ 2015-07-09 14:41:05 | INFO | 403-7716685-4330724 | Setting Order Status to Shipped
1336
+ 2015-07-09 14:41:05 | INFO | 403-7716685-4330724 | Generating Order Payment Invoice
1337
+ 2015-07-09 14:41:05 | INFO | 403-7716685-4330724 | Order Payment Invoice Generated Succesfully
1338
+ 2015-07-09 14:41:05 | INFO | 403-7716685-4330724 | Order imported succesfully, Magento Order Id: 110
1339
+ 2015-07-09 14:41:08 | INFO | 404-2318327-9226720 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D28784707477A4c82b6850620d46bb9c8ea50253de6e8e
1340
+ 2015-07-09 14:41:08 | INFO | 404-2318327-9226720 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1341
+ 2015-07-09 14:41:08 | ERROR | 404-2318327-9226720| No Product Matching, Product 12985 could not be found
1342
+ 2015-07-09 14:41:09 | INFO | 404-2318327-9226720 | Generating Order
1343
+ 2015-07-09 14:41:09 | INFO | 404-2318327-9226720 | Adding 1 product/s with id 892 to order, with Beezup Price: 12
1344
+ 2015-07-09 14:41:09 | INFO | 404-2318327-9226720 | Adding Order Shipping Cost: 3
1345
+ 2015-07-09 14:41:09 | INFO | 404-2318327-9226720 | Adding Beezup Marketplace Information to Order
1346
+ 2015-07-09 14:41:09 | INFO | 404-2318327-9226720 | Sending Magento Order Id to Beezup, Magento Order Id: 111
1347
+ 2015-07-09 14:41:11 | INFO | 404-2318327-9226720 | Setting Order Status to Shipped
1348
+ 2015-07-09 14:41:11 | INFO | 404-2318327-9226720 | Generating Order Payment Invoice
1349
+ 2015-07-09 14:41:11 | INFO | 404-2318327-9226720 | Order Payment Invoice Generated Succesfully
1350
+ 2015-07-09 14:41:11 | INFO | 404-2318327-9226720 | Order imported succesfully, Magento Order Id: 111
1351
+ 2015-07-09 14:41:13 | INFO | 171-9933173-4375553 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D286ED987621C6628e0e6fc1604314a0ddcfb29f923cab
1352
+ 2015-07-09 14:41:13 | INFO | 171-9933173-4375553 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1353
+ 2015-07-09 14:41:13 | ERROR | 171-9933173-4375553| No Product Matching, Product 16224 could not be found
1354
+ 2015-07-09 14:41:14 | INFO | 171-9933173-4375553 | Generating Order
1355
+ 2015-07-09 14:41:14 | INFO | 171-9933173-4375553 | Adding 1 product/s with id 893 to order, with Beezup Price: 22
1356
+ 2015-07-09 14:41:14 | INFO | 171-9933173-4375553 | Adding Order Shipping Cost: 3
1357
+ 2015-07-09 14:41:15 | INFO | 171-9933173-4375553 | Adding Beezup Marketplace Information to Order
1358
+ 2015-07-09 14:41:15 | INFO | 171-9933173-4375553 | Sending Magento Order Id to Beezup, Magento Order Id: 112
1359
+ 2015-07-09 14:41:16 | INFO | 171-9933173-4375553 | Setting Order Status to Shipped
1360
+ 2015-07-09 14:41:16 | INFO | 171-9933173-4375553 | Generating Order Payment Invoice
1361
+ 2015-07-09 14:41:16 | INFO | 171-9933173-4375553 | Order Payment Invoice Generated Succesfully
1362
+ 2015-07-09 14:41:17 | INFO | 171-9933173-4375553 | Order imported succesfully, Magento Order Id: 112
1363
+ 2015-07-09 14:41:19 | INFO | 171-9442164-9807534 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D2877C2863A03A994d8db07a1a440db33e1832193c32fd
1364
+ 2015-07-09 14:41:19 | INFO | 171-9442164-9807534 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1365
+ 2015-07-09 14:41:19 | ERROR | 171-9442164-9807534| No Product Matching, Product 14565 could not be found
1366
+ 2015-07-09 14:41:20 | INFO | 171-9442164-9807534 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1367
+ 2015-07-09 14:41:20 | ERROR | 171-9442164-9807534| No Product Matching, Product 15936 could not be found
1368
+ 2015-07-09 14:41:21 | INFO | 171-9442164-9807534 | Generating Order
1369
+ 2015-07-09 14:41:21 | INFO | 171-9442164-9807534 | Adding 1 product/s with id 894 to order, with Beezup Price: 14
1370
+ 2015-07-09 14:41:21 | INFO | 171-9442164-9807534 | Adding 1 product/s with id 895 to order, with Beezup Price: 14
1371
+ 2015-07-09 14:41:21 | INFO | 171-9442164-9807534 | Adding Order Shipping Cost: 6
1372
+ 2015-07-09 14:41:22 | INFO | 171-9442164-9807534 | Adding Beezup Marketplace Information to Order
1373
+ 2015-07-09 14:41:22 | INFO | 171-9442164-9807534 | Sending Magento Order Id to Beezup, Magento Order Id: 113
1374
+ 2015-07-09 14:41:23 | INFO | 171-9442164-9807534 | Setting Order Status to Shipped
1375
+ 2015-07-09 14:41:23 | INFO | 171-9442164-9807534 | Generating Order Payment Invoice
1376
+ 2015-07-09 14:41:23 | INFO | 171-9442164-9807534 | Order Payment Invoice Generated Succesfully
1377
+ 2015-07-09 14:41:23 | INFO | 171-9442164-9807534 | Order imported succesfully, Magento Order Id: 113
1378
+ 2015-07-09 14:41:27 | INFO | 403-6645343-4882732 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D2878471AF5AC180d1769f791b4e0183ddb18b7377ba17
1379
+ 2015-07-09 14:41:27 | INFO | 403-6645343-4882732 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1380
+ 2015-07-09 14:41:27 | ERROR | 403-6645343-4882732| No Product Matching, Product 15239 could not be found
1381
+ 2015-07-09 14:41:27 | INFO | 403-6645343-4882732 | Generating Order
1382
+ 2015-07-09 14:41:27 | INFO | 403-6645343-4882732 | Adding 1 product/s with id 896 to order, with Beezup Price: 42
1383
+ 2015-07-09 14:41:27 | INFO | 403-6645343-4882732 | Adding Order Shipping Cost: 3
1384
+ 2015-07-09 14:41:28 | INFO | 403-6645343-4882732 | Adding Beezup Marketplace Information to Order
1385
+ 2015-07-09 14:41:28 | INFO | 403-6645343-4882732 | Sending Magento Order Id to Beezup, Magento Order Id: 114
1386
+ 2015-07-09 14:41:30 | INFO | 403-6645343-4882732 | Setting Order Status to Shipped
1387
+ 2015-07-09 14:41:30 | INFO | 403-6645343-4882732 | Generating Order Payment Invoice
1388
+ 2015-07-09 14:41:30 | INFO | 403-6645343-4882732 | Order Payment Invoice Generated Succesfully
1389
+ 2015-07-09 14:41:30 | INFO | 403-6645343-4882732 | Order imported succesfully, Magento Order Id: 114
1390
+ 2015-07-09 14:41:33 | INFO | 404-6935773-1349949 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D287A60B4C7F7C30cce61b001c4abeb0163fbdfde454e4
1391
+ 2015-07-09 14:41:33 | INFO | 404-6935773-1349949 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1392
+ 2015-07-09 14:41:33 | ERROR | 404-6935773-1349949| No Product Matching, Product 13652 could not be found
1393
+ 2015-07-09 14:41:34 | INFO | 404-6935773-1349949 | Generating Order
1394
+ 2015-07-09 14:41:34 | INFO | 404-6935773-1349949 | Adding 1 product/s with id 897 to order, with Beezup Price: 16
1395
+ 2015-07-09 14:41:34 | INFO | 404-6935773-1349949 | Adding Order Shipping Cost: 0
1396
+ 2015-07-09 14:41:34 | INFO | 404-6935773-1349949 | Adding Beezup Marketplace Information to Order
1397
+ 2015-07-09 14:41:34 | INFO | 404-6935773-1349949 | Sending Magento Order Id to Beezup, Magento Order Id: 115
1398
+ 2015-07-09 14:41:36 | INFO | 404-6935773-1349949 | Setting Order Status to Shipped
1399
+ 2015-07-09 14:41:36 | INFO | 404-6935773-1349949 | Generating Order Payment Invoice
1400
+ 2015-07-09 14:41:36 | INFO | 404-6935773-1349949 | Order Payment Invoice Generated Succesfully
1401
+ 2015-07-09 14:41:36 | INFO | 404-6935773-1349949 | Order imported succesfully, Magento Order Id: 115
1402
+ 2015-07-09 14:41:45 | INFO | 403-9647114-6730745 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D287A60982F5E2534213ce9e1e4914857b61381b80c046
1403
+ 2015-07-09 14:41:45 | INFO | 403-9647114-6730745 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1404
+ 2015-07-09 14:41:45 | ERROR | 403-9647114-6730745| No Product Matching, Product 12311 could not be found
1405
+ 2015-07-09 14:41:45 | INFO | 403-9647114-6730745 | Generating Order
1406
+ 2015-07-09 14:41:45 | INFO | 403-9647114-6730745 | Adding 1 product/s with id 898 to order, with Beezup Price: 14
1407
+ 2015-07-09 14:41:45 | INFO | 403-9647114-6730745 | Adding Order Shipping Cost: 0
1408
+ 2015-07-09 14:41:46 | INFO | 403-9647114-6730745 | Adding Beezup Marketplace Information to Order
1409
+ 2015-07-09 14:41:46 | INFO | 403-9647114-6730745 | Sending Magento Order Id to Beezup, Magento Order Id: 116
1410
+ 2015-07-09 14:41:48 | INFO | 403-9647114-6730745 | Setting Order Status to Shipped
1411
+ 2015-07-09 14:41:48 | INFO | 403-9647114-6730745 | Generating Order Payment Invoice
1412
+ 2015-07-09 14:41:48 | INFO | 403-9647114-6730745 | Order Payment Invoice Generated Succesfully
1413
+ 2015-07-09 14:41:48 | INFO | 403-9647114-6730745 | Order imported succesfully, Magento Order Id: 116
1414
+ 2015-07-09 14:41:50 | INFO | 403-2971412-0021959 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D287A6083082133cbccec13f3d4a73b94aa89564ad496b
1415
+ 2015-07-09 14:41:50 | INFO | 403-2971412-0021959 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1416
+ 2015-07-09 14:41:50 | INFO | 403-2971412-0021959 | Product Matching succesful, Beezup Imported Id: 15358 , Magento Product Id: 872
1417
+ 2015-07-09 14:41:50 | INFO | 403-2971412-0021959 | Generating Order
1418
+ 2015-07-09 14:41:50 | INFO | 403-2971412-0021959 | Adding 1 product/s with id 872 to order, with Beezup Price: 23
1419
+ 2015-07-09 14:41:50 | INFO | 403-2971412-0021959 | Product 872 Stock = 0, Updating to 1 to generate Order
1420
+ 2015-07-09 14:41:51 | INFO | 403-2971412-0021959 | Adding Order Shipping Cost: 0
1421
+ 2015-07-09 14:41:52 | INFO | 403-2971412-0021959 | Adding Beezup Marketplace Information to Order
1422
+ 2015-07-09 14:41:52 | INFO | 403-2971412-0021959 | Sending Magento Order Id to Beezup, Magento Order Id: 117
1423
+ 2015-07-09 14:41:53 | INFO | 403-2971412-0021959 | Setting Order Status to Shipped
1424
+ 2015-07-09 14:41:53 | INFO | 403-2971412-0021959 | Generating Order Payment Invoice
1425
+ 2015-07-09 14:41:53 | INFO | 403-2971412-0021959 | Order Payment Invoice Generated Succesfully
1426
+ 2015-07-09 14:41:53 | INFO | 403-2971412-0021959 | Order imported succesfully, Magento Order Id: 117
1427
+ 2015-07-09 14:41:57 | INFO | 402-4119764-6276347 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D287A6070004A231171d801bcb4a50adbd0bbbf0f3a798
1428
+ 2015-07-09 14:41:57 | INFO | 402-4119764-6276347 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1429
+ 2015-07-09 14:41:57 | ERROR | 402-4119764-6276347| No Product Matching, Product 15760 could not be found
1430
+ 2015-07-09 14:41:57 | INFO | 402-4119764-6276347 | Generating Order
1431
+ 2015-07-09 14:41:57 | INFO | 402-4119764-6276347 | Adding 1 product/s with id 899 to order, with Beezup Price: 23
1432
+ 2015-07-09 14:41:57 | INFO | 402-4119764-6276347 | Adding Order Shipping Cost: 0
1433
+ 2015-07-09 14:41:58 | INFO | 402-4119764-6276347 | Adding Beezup Marketplace Information to Order
1434
+ 2015-07-09 14:41:58 | INFO | 402-4119764-6276347 | Sending Magento Order Id to Beezup, Magento Order Id: 118
1435
+ 2015-07-09 14:42:00 | INFO | 402-4119764-6276347 | Setting Order Status to Shipped
1436
+ 2015-07-09 14:42:00 | INFO | 402-4119764-6276347 | Generating Order Payment Invoice
1437
+ 2015-07-09 14:42:00 | INFO | 402-4119764-6276347 | Order Payment Invoice Generated Succesfully
1438
+ 2015-07-09 14:42:00 | INFO | 402-4119764-6276347 | Order imported succesfully, Magento Order Id: 118
1439
+ 2015-07-09 14:42:03 | INFO | 403-5331444-5271529 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D2879D9DBAB65Fea34ac5c3b954c1bbe5f34a0d6378975
1440
+ 2015-07-09 14:42:03 | INFO | 403-5331444-5271529 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1441
+ 2015-07-09 14:42:03 | ERROR | 403-5331444-5271529| No Product Matching, Product 15089 could not be found
1442
+ 2015-07-09 14:42:04 | INFO | 403-5331444-5271529 | Generating Order
1443
+ 2015-07-09 14:42:04 | INFO | 403-5331444-5271529 | Adding 1 product/s with id 900 to order, with Beezup Price: 25
1444
+ 2015-07-09 14:42:04 | INFO | 403-5331444-5271529 | Adding Order Shipping Cost: 2.27
1445
+ 2015-07-09 14:42:05 | INFO | 403-5331444-5271529 | Adding Beezup Marketplace Information to Order
1446
+ 2015-07-09 14:42:05 | INFO | 403-5331444-5271529 | Sending Magento Order Id to Beezup, Magento Order Id: 119
1447
+ 2015-07-09 14:42:06 | INFO | 403-5331444-5271529 | Setting Order Status to Shipped
1448
+ 2015-07-09 14:42:06 | INFO | 403-5331444-5271529 | Generating Order Payment Invoice
1449
+ 2015-07-09 14:42:06 | INFO | 403-5331444-5271529 | Order Payment Invoice Generated Succesfully
1450
+ 2015-07-09 14:42:07 | INFO | 403-5331444-5271529 | Order imported succesfully, Magento Order Id: 119
1451
+ 2015-07-09 14:42:09 | INFO | 404-2435886-3201123 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D2879538F6240902f003bd5a3046cba006719c843da063
1452
+ 2015-07-09 14:42:09 | INFO | 404-2435886-3201123 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1453
+ 2015-07-09 14:42:09 | ERROR | 404-2435886-3201123| No Product Matching, Product 15318 could not be found
1454
+ 2015-07-09 14:42:09 | INFO | 404-2435886-3201123 | Generating Order
1455
+ 2015-07-09 14:42:09 | INFO | 404-2435886-3201123 | Adding 2 product/s with id 901 to order, with Beezup Price: 15
1456
+ 2015-07-09 14:42:09 | INFO | 404-2435886-3201123 | Product 901 Stock = 0, Updating to 2 to generate Order
1457
+ 2015-07-09 14:42:10 | INFO | 404-2435886-3201123 | Adding Order Shipping Cost: 9.99
1458
+ 2015-07-09 14:42:10 | INFO | 404-2435886-3201123 | Adding Beezup Marketplace Information to Order
1459
+ 2015-07-09 14:42:10 | INFO | 404-2435886-3201123 | Sending Magento Order Id to Beezup, Magento Order Id: 120
1460
+ 2015-07-09 14:42:12 | INFO | 404-2435886-3201123 | Setting Order Status to Shipped
1461
+ 2015-07-09 14:42:12 | INFO | 404-2435886-3201123 | Generating Order Payment Invoice
1462
+ 2015-07-09 14:42:12 | INFO | 404-2435886-3201123 | Order Payment Invoice Generated Succesfully
1463
+ 2015-07-09 14:42:12 | INFO | 404-2435886-3201123 | Order imported succesfully, Magento Order Id: 120
1464
+ 2015-07-09 14:42:15 | INFO | 402-2739036-2055553 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D28795379F79648aae17d45a1f422d8dd5ee71184030e9
1465
+ 2015-07-09 14:42:15 | INFO | 402-2739036-2055553 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1466
+ 2015-07-09 14:42:15 | ERROR | 402-2739036-2055553| No Product Matching, Product 15989 could not be found
1467
+ 2015-07-09 14:42:16 | INFO | 402-2739036-2055553 | Generating Order
1468
+ 2015-07-09 14:42:16 | INFO | 402-2739036-2055553 | Adding 1 product/s with id 902 to order, with Beezup Price: 18
1469
+ 2015-07-09 14:42:16 | INFO | 402-2739036-2055553 | Adding Order Shipping Cost: 0
1470
+ 2015-07-09 14:42:17 | INFO | 402-2739036-2055553 | Adding Beezup Marketplace Information to Order
1471
+ 2015-07-09 14:42:17 | INFO | 402-2739036-2055553 | Sending Magento Order Id to Beezup, Magento Order Id: 121
1472
+ 2015-07-09 14:42:18 | INFO | 402-2739036-2055553 | Setting Order Status to Shipped
1473
+ 2015-07-09 14:42:18 | INFO | 402-2739036-2055553 | Generating Order Payment Invoice
1474
+ 2015-07-09 14:42:18 | INFO | 402-2739036-2055553 | Order Payment Invoice Generated Succesfully
1475
+ 2015-07-09 14:42:18 | INFO | 402-2739036-2055553 | Order imported succesfully, Magento Order Id: 121
1476
+ 2015-07-09 14:42:21 | INFO | 171-8787746-3299541 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D2877C271FB865099f7650b5ae4053a5d13a84145d87ce
1477
+ 2015-07-09 14:42:21 | INFO | 171-8787746-3299541 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1478
+ 2015-07-09 14:42:21 | ERROR | 171-8787746-3299541| No Product Matching, Product 15570 could not be found
1479
+ 2015-07-09 14:42:21 | INFO | 171-8787746-3299541 | Generating Order
1480
+ 2015-07-09 14:42:21 | INFO | 171-8787746-3299541 | Adding 1 product/s with id 903 to order, with Beezup Price: 18
1481
+ 2015-07-09 14:42:21 | INFO | 171-8787746-3299541 | Adding Order Shipping Cost: 0
1482
+ 2015-07-09 14:42:22 | INFO | 171-8787746-3299541 | Adding Beezup Marketplace Information to Order
1483
+ 2015-07-09 14:42:22 | INFO | 171-8787746-3299541 | Sending Magento Order Id to Beezup, Magento Order Id: 122
1484
+ 2015-07-09 14:42:23 | INFO | 171-8787746-3299541 | Setting Order Status to Shipped
1485
+ 2015-07-09 14:42:23 | INFO | 171-8787746-3299541 | Generating Order Payment Invoice
1486
+ 2015-07-09 14:42:23 | INFO | 171-8787746-3299541 | Order Payment Invoice Generated Succesfully
1487
+ 2015-07-09 14:42:23 | INFO | 171-8787746-3299541 | Order imported succesfully, Magento Order Id: 122
1488
+ 2015-07-09 14:42:27 | INFO | 403-0140507-2900376 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D28773C52270EE4bc6256b3d184834a4b7effc4f68d2cf
1489
+ 2015-07-09 14:42:27 | INFO | 403-0140507-2900376 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1490
+ 2015-07-09 14:42:27 | INFO | 403-0140507-2900376 | Product Matching succesful, Beezup Imported Id: 14701 , Magento Product Id: 773
1491
+ 2015-07-09 14:42:27 | INFO | 403-0140507-2900376 | Generating Order
1492
+ 2015-07-09 14:42:27 | INFO | 403-0140507-2900376 | Adding 1 product/s with id 773 to order, with Beezup Price: 19
1493
+ 2015-07-09 14:42:27 | INFO | 403-0140507-2900376 | Product 773 Stock = 0, Updating to 1 to generate Order
1494
+ 2015-07-09 14:42:27 | INFO | 403-0140507-2900376 | Adding Order Shipping Cost: 0
1495
+ 2015-07-09 14:42:28 | INFO | 403-0140507-2900376 | Adding Beezup Marketplace Information to Order
1496
+ 2015-07-09 14:42:28 | INFO | 403-0140507-2900376 | Sending Magento Order Id to Beezup, Magento Order Id: 123
1497
+ 2015-07-09 14:42:29 | INFO | 403-0140507-2900376 | Setting Order Status to Shipped
1498
+ 2015-07-09 14:42:29 | INFO | 403-0140507-2900376 | Generating Order Payment Invoice
1499
+ 2015-07-09 14:42:29 | INFO | 403-0140507-2900376 | Order Payment Invoice Generated Succesfully
1500
+ 2015-07-09 14:42:30 | INFO | 403-0140507-2900376 | Order imported succesfully, Magento Order Id: 123
1501
+ 2015-07-09 14:42:32 | INFO | 402-8039111-1070757 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D28773C4792BB695666d3326c14102b82ed1bddd3d386a
1502
+ 2015-07-09 14:42:32 | INFO | 402-8039111-1070757 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1503
+ 2015-07-09 14:42:32 | INFO | 402-8039111-1070757 | Product Matching succesful, Beezup Imported Id: 15453 , Magento Product Id: 834
1504
+ 2015-07-09 14:42:32 | INFO | 402-8039111-1070757 | Generating Order
1505
+ 2015-07-09 14:42:32 | INFO | 402-8039111-1070757 | Adding 1 product/s with id 834 to order, with Beezup Price: 27
1506
+ 2015-07-09 14:42:32 | INFO | 402-8039111-1070757 | Product 834 Stock = 0, Updating to 1 to generate Order
1507
+ 2015-07-09 14:42:33 | INFO | 402-8039111-1070757 | Adding Order Shipping Cost: 0
1508
+ 2015-07-09 14:42:33 | INFO | 402-8039111-1070757 | Adding Beezup Marketplace Information to Order
1509
+ 2015-07-09 14:42:33 | INFO | 402-8039111-1070757 | Sending Magento Order Id to Beezup, Magento Order Id: 124
1510
+ 2015-07-09 14:42:34 | INFO | 402-8039111-1070757 | Setting Order Status to Shipped
1511
+ 2015-07-09 14:42:34 | INFO | 402-8039111-1070757 | Generating Order Payment Invoice
1512
+ 2015-07-09 14:42:34 | INFO | 402-8039111-1070757 | Order Payment Invoice Generated Succesfully
1513
+ 2015-07-09 14:42:35 | INFO | 402-8039111-1070757 | Order imported succesfully, Magento Order Id: 124
1514
+ 2015-07-09 14:42:37 | INFO | 203986286 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/PriceMinister/1456/8D27FE3A4A93191904ec30efb7f4768b0d0f7ad61572093
1515
+ 2015-07-09 14:42:37 | INFO | 203986286 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1516
+ 2015-07-09 14:42:37 | ERROR | 203986286| No Product Matching, Product 16113 could not be found
1517
+ 2015-07-09 14:42:37 | INFO | 203986286 | Generating Order
1518
+ 2015-07-09 14:42:37 | INFO | 203986286 | Adding 1 product/s with id 904 to order, with Beezup Price: 24
1519
+ 2015-07-09 14:42:37 | INFO | 203986286 | Adding Order Shipping Cost: 2.7
1520
+ 2015-07-09 14:42:38 | INFO | 203986286 | Adding Beezup Marketplace Information to Order
1521
+ 2015-07-09 14:42:38 | INFO | 203986286 | Sending Magento Order Id to Beezup, Magento Order Id: 125
1522
+ 2015-07-09 14:42:39 | INFO | 203986286 | Setting Order Status to Shipped
1523
+ 2015-07-09 14:42:39 | INFO | 203986286 | Generating Order Payment Invoice
1524
+ 2015-07-09 14:42:39 | INFO | 203986286 | Order Payment Invoice Generated Succesfully
1525
+ 2015-07-09 14:42:40 | INFO | 203986286 | Order imported succesfully, Magento Order Id: 125
1526
+ 2015-07-09 14:42:42 | INFO | 404-7383653-9326712 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D2876B620C83552d70c5db580b4d9b85e9115f89628e7b
1527
+ 2015-07-09 14:42:42 | INFO | 404-7383653-9326712 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1528
+ 2015-07-09 14:42:42 | ERROR | 404-7383653-9326712| No Product Matching, Product 13266 could not be found
1529
+ 2015-07-09 14:42:42 | INFO | 404-7383653-9326712 | Generating Order
1530
+ 2015-07-09 14:42:42 | INFO | 404-7383653-9326712 | Adding 1 product/s with id 905 to order, with Beezup Price: 21
1531
+ 2015-07-09 14:42:42 | INFO | 404-7383653-9326712 | Adding Order Shipping Cost: 2.79
1532
+ 2015-07-09 14:42:43 | INFO | 404-7383653-9326712 | Adding Beezup Marketplace Information to Order
1533
+ 2015-07-09 14:42:43 | INFO | 404-7383653-9326712 | Sending Magento Order Id to Beezup, Magento Order Id: 126
1534
+ 2015-07-09 14:42:44 | INFO | 404-7383653-9326712 | Setting Order Status to Shipped
1535
+ 2015-07-09 14:42:44 | INFO | 404-7383653-9326712 | Generating Order Payment Invoice
1536
+ 2015-07-09 14:42:44 | INFO | 404-7383653-9326712 | Order Payment Invoice Generated Succesfully
1537
+ 2015-07-09 14:42:45 | INFO | 404-7383653-9326712 | Order imported succesfully, Magento Order Id: 126
1538
+ 2015-07-09 14:42:48 | INFO | 171-0312535-4166734 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D28762F56214D621aadca5526c4f4dac2feead6f09a2ac
1539
+ 2015-07-09 14:42:48 | INFO | 171-0312535-4166734 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1540
+ 2015-07-09 14:42:48 | INFO | 171-0312535-4166734 | Product Matching succesful, Beezup Imported Id: 15358 , Magento Product Id: 872
1541
+ 2015-07-09 14:42:48 | INFO | 171-0312535-4166734 | Generating Order
1542
+ 2015-07-09 14:42:48 | INFO | 171-0312535-4166734 | Adding 1 product/s with id 872 to order, with Beezup Price: 23
1543
+ 2015-07-09 14:42:48 | INFO | 171-0312535-4166734 | Product 872 Stock = 0, Updating to 1 to generate Order
1544
+ 2015-07-09 14:42:48 | INFO | 171-0312535-4166734 | Adding Order Shipping Cost: 0
1545
+ 2015-07-09 14:42:49 | INFO | 171-0312535-4166734 | Adding Beezup Marketplace Information to Order
1546
+ 2015-07-09 14:42:49 | INFO | 171-0312535-4166734 | Sending Magento Order Id to Beezup, Magento Order Id: 127
1547
+ 2015-07-09 14:42:50 | INFO | 171-0312535-4166734 | Setting Order Status to Shipped
1548
+ 2015-07-09 14:42:50 | INFO | 171-0312535-4166734 | Generating Order Payment Invoice
1549
+ 2015-07-09 14:42:51 | INFO | 171-0312535-4166734 | Order Payment Invoice Generated Succesfully
1550
+ 2015-07-09 14:42:51 | INFO | 171-0312535-4166734 | Order imported succesfully, Magento Order Id: 127
1551
+ 2015-07-09 14:42:54 | INFO | 404-3730094-7521162 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D271C6F0683E68b3c2a1eb23da427cbac21a3fa1277342
1552
+ 2015-07-09 14:42:54 | INFO | 404-3730094-7521162 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1553
+ 2015-07-09 14:42:54 | ERROR | 404-3730094-7521162| No Product Matching, Product 15418 could not be found
1554
+ 2015-07-09 14:42:55 | INFO | 404-3730094-7521162 | Generating Order
1555
+ 2015-07-09 14:42:55 | INFO | 404-3730094-7521162 | Adding 1 product/s with id 906 to order, with Beezup Price: 24
1556
+ 2015-07-09 14:42:55 | INFO | 404-3730094-7521162 | Adding Order Shipping Cost: 0
1557
+ 2015-07-09 14:42:55 | INFO | 404-3730094-7521162 | Adding Beezup Marketplace Information to Order
1558
+ 2015-07-09 14:42:55 | INFO | 404-3730094-7521162 | Sending Magento Order Id to Beezup, Magento Order Id: 128
1559
+ 2015-07-09 14:42:57 | INFO | 404-3730094-7521162 | Setting Order Status to Shipped
1560
+ 2015-07-09 14:42:57 | INFO | 404-3730094-7521162 | Generating Order Payment Invoice
1561
+ 2015-07-09 14:42:57 | INFO | 404-3730094-7521162 | Order Payment Invoice Generated Succesfully
1562
+ 2015-07-09 14:42:57 | INFO | 404-3730094-7521162 | Order imported succesfully, Magento Order Id: 128
1563
+ 2015-07-09 14:42:59 | INFO | 404-7798027-7969152 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D28749E0500F9E5e416d62976a4892ba4d969e0af9a13b
1564
+ 2015-07-09 14:42:59 | INFO | 404-7798027-7969152 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1565
+ 2015-07-09 14:42:59 | ERROR | 404-7798027-7969152| No Product Matching, Product 12476 could not be found
1566
+ 2015-07-09 14:43:00 | INFO | 404-7798027-7969152 | Generating Order
1567
+ 2015-07-09 14:43:00 | INFO | 404-7798027-7969152 | Adding 1 product/s with id 907 to order, with Beezup Price: 14
1568
+ 2015-07-09 14:43:00 | INFO | 404-7798027-7969152 | Adding Order Shipping Cost: 5
1569
+ 2015-07-09 14:43:00 | INFO | 404-7798027-7969152 | Adding Beezup Marketplace Information to Order
1570
+ 2015-07-09 14:43:00 | INFO | 404-7798027-7969152 | Sending Magento Order Id to Beezup, Magento Order Id: 129
1571
+ 2015-07-09 14:43:02 | INFO | 404-7798027-7969152 | Setting Order Status to Shipped
1572
+ 2015-07-09 14:43:02 | INFO | 404-7798027-7969152 | Generating Order Payment Invoice
1573
+ 2015-07-09 14:43:02 | INFO | 404-7798027-7969152 | Order Payment Invoice Generated Succesfully
1574
+ 2015-07-09 14:43:02 | INFO | 404-7798027-7969152 | Order imported succesfully, Magento Order Id: 129
1575
+ 2015-07-09 14:43:05 | INFO | 402-1920380-5696334 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D28749DFDB3B67ee3934b708b74467a3041c23bf3b49bb
1576
+ 2015-07-09 14:43:05 | INFO | 402-1920380-5696334 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1577
+ 2015-07-09 14:43:05 | ERROR | 402-1920380-5696334| No Product Matching, Product 12737 could not be found
1578
+ 2015-07-09 14:43:06 | INFO | 402-1920380-5696334 | Generating Order
1579
+ 2015-07-09 14:43:06 | INFO | 402-1920380-5696334 | Adding 1 product/s with id 908 to order, with Beezup Price: 33
1580
+ 2015-07-09 14:43:06 | INFO | 402-1920380-5696334 | Adding Order Shipping Cost: 0
1581
+ 2015-07-09 14:43:06 | INFO | 402-1920380-5696334 | Adding Beezup Marketplace Information to Order
1582
+ 2015-07-09 14:43:06 | INFO | 402-1920380-5696334 | Sending Magento Order Id to Beezup, Magento Order Id: 130
1583
+ 2015-07-09 14:43:08 | INFO | 402-1920380-5696334 | Setting Order Status to Shipped
1584
+ 2015-07-09 14:43:08 | INFO | 402-1920380-5696334 | Generating Order Payment Invoice
1585
+ 2015-07-09 14:43:08 | INFO | 402-1920380-5696334 | Order Payment Invoice Generated Succesfully
1586
+ 2015-07-09 14:43:08 | INFO | 402-1920380-5696334 | Order imported succesfully, Magento Order Id: 130
1587
+ 2015-07-09 14:43:12 | INFO | 404-8602297-2774740 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D2870F3CB9E0AC55a6df59d9ec41289f33715cdf17b894
1588
+ 2015-07-09 14:43:12 | INFO | 404-8602297-2774740 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1589
+ 2015-07-09 14:43:12 | INFO | 404-8602297-2774740 | Product Matching succesful, Beezup Imported Id: 15418 , Magento Product Id: 906
1590
+ 2015-07-09 14:43:12 | INFO | 404-8602297-2774740 | Generating Order
1591
+ 2015-07-09 14:43:12 | INFO | 404-8602297-2774740 | Adding 1 product/s with id 906 to order, with Beezup Price: InvocationTechnicalCodePropertyExpressionException;Input string was not in a correct format.
1592
+ 2015-07-09 14:43:12 | INFO | 404-8602297-2774740 | Product 906 Stock = 0, Updating to 1 to generate Order
1593
+ 2015-07-09 14:43:12 | INFO | 404-8602297-2774740 | Adding Order Shipping Cost: 0
1594
+ 2015-07-09 14:43:13 | INFO | 404-8602297-2774740 | Adding Beezup Marketplace Information to Order
1595
+ 2015-07-09 14:43:13 | INFO | 404-8602297-2774740 | Sending Magento Order Id to Beezup, Magento Order Id: 131
1596
+ 2015-07-09 14:43:14 | INFO | 404-8602297-2774740 | Setting Order Status to Cancelled
1597
+ 2015-07-09 14:43:15 | INFO | 404-8602297-2774740 | Order imported succesfully, Magento Order Id: 131
1598
+ 2015-07-09 14:43:17 | INFO | 404-1881843-3373911 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D286FE7C70F45461da940caf5f47c99c536a070ecf6779
1599
+ 2015-07-09 14:43:17 | INFO | 404-1881843-3373911 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1600
+ 2015-07-09 14:43:17 | INFO | 404-1881843-3373911 | Product Matching succesful, Beezup Imported Id: 15358 , Magento Product Id: 872
1601
+ 2015-07-09 14:43:17 | INFO | 404-1881843-3373911 | Generating Order
1602
+ 2015-07-09 14:43:17 | INFO | 404-1881843-3373911 | Adding 1 product/s with id 872 to order, with Beezup Price: 23
1603
+ 2015-07-09 14:43:17 | INFO | 404-1881843-3373911 | Product 872 Stock = 0, Updating to 1 to generate Order
1604
+ 2015-07-09 14:43:17 | INFO | 404-1881843-3373911 | Adding Order Shipping Cost: 2.79
1605
+ 2015-07-09 14:43:18 | INFO | 404-1881843-3373911 | Adding Beezup Marketplace Information to Order
1606
+ 2015-07-09 14:43:18 | INFO | 404-1881843-3373911 | Sending Magento Order Id to Beezup, Magento Order Id: 132
1607
+ 2015-07-09 14:43:19 | INFO | 404-1881843-3373911 | Setting Order Status to Shipped
1608
+ 2015-07-09 14:43:19 | INFO | 404-1881843-3373911 | Generating Order Payment Invoice
1609
+ 2015-07-09 14:43:19 | INFO | 404-1881843-3373911 | Order Payment Invoice Generated Succesfully
1610
+ 2015-07-09 14:43:19 | INFO | 404-1881843-3373911 | Order imported succesfully, Magento Order Id: 132
1611
+ 2015-07-09 14:43:22 | INFO | 171-0390858-9574731 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D276327E758505c99f6bdd41d3475a8c57a2a149b0c585
1612
+ 2015-07-09 14:43:22 | INFO | 171-0390858-9574731 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1613
+ 2015-07-09 14:43:22 | ERROR | 171-0390858-9574731| No Product Matching, Product 14409 could not be found
1614
+ 2015-07-09 14:43:23 | INFO | 171-0390858-9574731 | Generating Order
1615
+ 2015-07-09 14:43:23 | INFO | 171-0390858-9574731 | Adding 1 product/s with id 909 to order, with Beezup Price: 37
1616
+ 2015-07-09 14:43:23 | INFO | 171-0390858-9574731 | Adding Order Shipping Cost: 0
1617
+ 2015-07-09 14:43:23 | INFO | 171-0390858-9574731 | Adding Beezup Marketplace Information to Order
1618
+ 2015-07-09 14:43:23 | INFO | 171-0390858-9574731 | Sending Magento Order Id to Beezup, Magento Order Id: 133
1619
+ 2015-07-09 14:43:25 | INFO | 171-0390858-9574731 | Setting Order Status to Shipped
1620
+ 2015-07-09 14:43:25 | INFO | 171-0390858-9574731 | Generating Order Payment Invoice
1621
+ 2015-07-09 14:43:25 | INFO | 171-0390858-9574731 | Order Payment Invoice Generated Succesfully
1622
+ 2015-07-09 14:43:25 | INFO | 171-0390858-9574731 | Order imported succesfully, Magento Order Id: 133
1623
+ 2015-07-09 14:43:29 | INFO | 171-3993219-9242752 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D286F615CBDC45575bd309edf542f2ae090b7a460b2a62
1624
+ 2015-07-09 14:43:29 | INFO | 171-3993219-9242752 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1625
+ 2015-07-09 14:43:29 | INFO | 171-3993219-9242752 | Product Matching succesful, Beezup Imported Id: 15570 , Magento Product Id: 903
1626
+ 2015-07-09 14:43:29 | INFO | 171-3993219-9242752 | Generating Order
1627
+ 2015-07-09 14:43:29 | INFO | 171-3993219-9242752 | Adding 1 product/s with id 903 to order, with Beezup Price: 18
1628
+ 2015-07-09 14:43:29 | INFO | 171-3993219-9242752 | Product 903 Stock = 0, Updating to 1 to generate Order
1629
+ 2015-07-09 14:43:30 | INFO | 171-3993219-9242752 | Adding Order Shipping Cost: 2.79
1630
+ 2015-07-09 14:43:30 | INFO | 171-3993219-9242752 | Adding Beezup Marketplace Information to Order
1631
+ 2015-07-09 14:43:30 | INFO | 171-3993219-9242752 | Sending Magento Order Id to Beezup, Magento Order Id: 134
1632
+ 2015-07-09 14:43:31 | INFO | 171-3993219-9242752 | Setting Order Status to Shipped
1633
+ 2015-07-09 14:43:31 | INFO | 171-3993219-9242752 | Generating Order Payment Invoice
1634
+ 2015-07-09 14:43:32 | INFO | 171-3993219-9242752 | Order Payment Invoice Generated Succesfully
1635
+ 2015-07-09 14:43:32 | INFO | 171-3993219-9242752 | Order imported succesfully, Magento Order Id: 134
1636
+ 2015-07-09 14:43:34 | INFO | 403-0781059-5937912 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D286A22D3CF382b24aa7857f394bf0a36d6bb77fc4a673
1637
+ 2015-07-09 14:43:34 | INFO | 403-0781059-5937912 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1638
+ 2015-07-09 14:43:34 | ERROR | 403-0781059-5937912| No Product Matching, Product 12257 could not be found
1639
+ 2015-07-09 14:43:34 | INFO | 403-0781059-5937912 | Generating Order
1640
+ 2015-07-09 14:43:34 | INFO | 403-0781059-5937912 | Adding 1 product/s with id 910 to order, with Beezup Price: 39
1641
+ 2015-07-09 14:43:34 | INFO | 403-0781059-5937912 | Adding Order Shipping Cost: 3
1642
+ 2015-07-09 14:43:35 | INFO | 403-0781059-5937912 | Adding Beezup Marketplace Information to Order
1643
+ 2015-07-09 14:43:35 | INFO | 403-0781059-5937912 | Sending Magento Order Id to Beezup, Magento Order Id: 135
1644
+ 2015-07-09 14:43:36 | INFO | 403-0781059-5937912 | Setting Order Status to Shipped
1645
+ 2015-07-09 14:43:36 | INFO | 403-0781059-5937912 | Generating Order Payment Invoice
1646
+ 2015-07-09 14:43:37 | INFO | 403-0781059-5937912 | Order Payment Invoice Generated Succesfully
1647
+ 2015-07-09 14:43:37 | INFO | 403-0781059-5937912 | Order imported succesfully, Magento Order Id: 135
1648
+ 2015-07-09 14:43:40 | INFO | 171-2211776-9905904 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D286F61397367168e5442f0e2a4ff98ea32b3dc9dda7d0
1649
+ 2015-07-09 14:43:40 | INFO | 171-2211776-9905904 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1650
+ 2015-07-09 14:43:40 | ERROR | 171-2211776-9905904| No Product Matching, Product 15388 could not be found
1651
+ 2015-07-09 14:43:40 | INFO | 171-2211776-9905904 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1652
+ 2015-07-09 14:43:40 | INFO | 171-2211776-9905904 | Product Matching succesful, Beezup Imported Id: 14701 , Magento Product Id: 773
1653
+ 2015-07-09 14:43:40 | INFO | 171-2211776-9905904 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1654
+ 2015-07-09 14:43:41 | INFO | 171-2211776-9905904 | Product Matching succesful, Beezup Imported Id: 13266 , Magento Product Id: 905
1655
+ 2015-07-09 14:43:41 | INFO | 171-2211776-9905904 | Generating Order
1656
+ 2015-07-09 14:43:41 | INFO | 171-2211776-9905904 | Adding 1 product/s with id 911 to order, with Beezup Price: 27
1657
+ 2015-07-09 14:43:41 | INFO | 171-2211776-9905904 | Adding 1 product/s with id 773 to order, with Beezup Price: 19
1658
+ 2015-07-09 14:43:41 | INFO | 171-2211776-9905904 | Product 773 Stock = 0, Updating to 1 to generate Order
1659
+ 2015-07-09 14:43:41 | INFO | 171-2211776-9905904 | Adding 1 product/s with id 905 to order, with Beezup Price: 21
1660
+ 2015-07-09 14:43:41 | INFO | 171-2211776-9905904 | Product 905 Stock = 0, Updating to 1 to generate Order
1661
+ 2015-07-09 14:43:42 | INFO | 171-2211776-9905904 | Adding Order Shipping Cost: 0
1662
+ 2015-07-09 14:43:43 | INFO | 171-2211776-9905904 | Adding Beezup Marketplace Information to Order
1663
+ 2015-07-09 14:43:43 | INFO | 171-2211776-9905904 | Sending Magento Order Id to Beezup, Magento Order Id: 136
1664
+ 2015-07-09 14:43:44 | INFO | 171-2211776-9905904 | Setting Order Status to Shipped
1665
+ 2015-07-09 14:43:44 | INFO | 171-2211776-9905904 | Generating Order Payment Invoice
1666
+ 2015-07-09 14:43:44 | INFO | 171-2211776-9905904 | Order Payment Invoice Generated Succesfully
1667
+ 2015-07-09 14:43:45 | INFO | 171-2211776-9905904 | Order imported succesfully, Magento Order Id: 136
1668
+ 2015-07-09 14:43:47 | INFO | 171-0488660-0149108 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D286F6114C80B55df6aa28379245daa43b1bae1fbe36f7
1669
+ 2015-07-09 14:43:47 | INFO | 171-0488660-0149108 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1670
+ 2015-07-09 14:43:47 | ERROR | 171-0488660-0149108| No Product Matching, Product 15441 could not be found
1671
+ 2015-07-09 14:43:47 | INFO | 171-0488660-0149108 | Generating Order
1672
+ 2015-07-09 14:43:47 | INFO | 171-0488660-0149108 | Adding 1 product/s with id 912 to order, with Beezup Price: 26
1673
+ 2015-07-09 14:43:47 | INFO | 171-0488660-0149108 | Adding Order Shipping Cost: 0
1674
+ 2015-07-09 14:43:48 | INFO | 171-0488660-0149108 | Adding Beezup Marketplace Information to Order
1675
+ 2015-07-09 14:43:48 | INFO | 171-0488660-0149108 | Sending Magento Order Id to Beezup, Magento Order Id: 137
1676
+ 2015-07-09 14:43:49 | INFO | 171-0488660-0149108 | Setting Order Status to Shipped
1677
+ 2015-07-09 14:43:49 | INFO | 171-0488660-0149108 | Generating Order Payment Invoice
1678
+ 2015-07-09 14:43:50 | INFO | 171-0488660-0149108 | Order Payment Invoice Generated Succesfully
1679
+ 2015-07-09 14:43:50 | INFO | 171-0488660-0149108 | Order imported succesfully, Magento Order Id: 137
1680
+ 2015-07-09 14:43:52 | INFO | 150707174459JQ8 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/CDiscount/1111/8D286EDA07332AA60836ac057524359a2d7c62cb4d6e153
1681
+ 2015-07-09 14:43:52 | INFO | 150707174459JQ8 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1682
+ 2015-07-09 14:43:52 | ERROR | 150707174459JQ8| No Product Matching, Product 15636 could not be found
1683
+ 2015-07-09 14:43:52 | INFO | 150707174459JQ8 | Generating Order
1684
+ 2015-07-09 14:43:52 | INFO | 150707174459JQ8 | Adding 2 product/s with id 913 to order, with Beezup Price: 16
1685
+ 2015-07-09 14:43:52 | INFO | 150707174459JQ8 | Product 913 Stock = 0, Updating to 2 to generate Order
1686
+ 2015-07-09 14:43:53 | INFO | 150707174459JQ8 | Adding Order Shipping Cost: 0
1687
+ 2015-07-09 14:43:54 | INFO | 150707174459JQ8 | Adding Beezup Marketplace Information to Order
1688
+ 2015-07-09 14:43:54 | INFO | 150707174459JQ8 | Sending Magento Order Id to Beezup, Magento Order Id: 138
1689
+ 2015-07-09 14:43:55 | INFO | 150707174459JQ8 | Setting Order Status to New
1690
+ 2015-07-09 14:43:55 | INFO | 150707174459JQ8 | Order imported succesfully, Magento Order Id: 138
1691
+ 2015-07-09 14:43:57 | INFO | 404-6652894-7627543 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D286CC1EBC25D78f9008afb7ec4a2894a228132157d256
1692
+ 2015-07-09 14:43:57 | INFO | 404-6652894-7627543 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1693
+ 2015-07-09 14:43:57 | INFO | 404-6652894-7627543 | Product Matching succesful, Beezup Imported Id: 11725 , Magento Product Id: 870
1694
+ 2015-07-09 14:43:57 | INFO | 404-6652894-7627543 | Updating Etag
1695
+ 2015-07-09 14:43:57 | INFO | 404-6652894-7627543 | Order Already exists Mage Order ID: 82
1696
+ 2015-07-09 14:43:59 | INFO | 15070314214B4OC | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/CDiscount/1111/8D283A78FF4274Ce28392aafbe84cc58f759f0a2b64357b
1697
+ 2015-07-09 14:43:59 | INFO | 15070314214B4OC | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1698
+ 2015-07-09 14:43:59 | INFO | 15070314214B4OC | Product Matching succesful, Beezup Imported Id: 15453 , Magento Product Id: 834
1699
+ 2015-07-09 14:43:59 | INFO | 15070314214B4OC | Updating Etag
1700
+ 2015-07-09 14:43:59 | INFO | 15070314214B4OC | Order Already exists Mage Order ID: 50
1701
+ 2015-07-09 14:44:01 | INFO | 402-0232215-0449106 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D286ED98E6E5889067d35164fc4716a5e881c46ee3c44a
1702
+ 2015-07-09 14:44:01 | INFO | 402-0232215-0449106 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1703
+ 2015-07-09 14:44:01 | INFO | 402-0232215-0449106 | Product Matching succesful, Beezup Imported Id: 15326 , Magento Product Id: 885
1704
+ 2015-07-09 14:44:01 | INFO | 402-0232215-0449106 | Generating Order
1705
+ 2015-07-09 14:44:01 | INFO | 402-0232215-0449106 | Adding 1 product/s with id 885 to order, with Beezup Price: 21
1706
+ 2015-07-09 14:44:01 | INFO | 402-0232215-0449106 | Product 885 Stock = 0, Updating to 1 to generate Order
1707
+ 2015-07-09 14:44:01 | INFO | 402-0232215-0449106 | Adding Order Shipping Cost: 0
1708
+ 2015-07-09 14:44:02 | INFO | 402-0232215-0449106 | Adding Beezup Marketplace Information to Order
1709
+ 2015-07-09 14:44:02 | INFO | 402-0232215-0449106 | Sending Magento Order Id to Beezup, Magento Order Id: 139
1710
+ 2015-07-09 14:44:03 | INFO | 402-0232215-0449106 | Setting Order Status to Shipped
1711
+ 2015-07-09 14:44:03 | INFO | 402-0232215-0449106 | Generating Order Payment Invoice
1712
+ 2015-07-09 14:44:04 | INFO | 402-0232215-0449106 | Order Payment Invoice Generated Succesfully
1713
+ 2015-07-09 14:44:04 | INFO | 402-0232215-0449106 | Order imported succesfully, Magento Order Id: 139
1714
+ 2015-07-09 14:44:06 | INFO | 402-3393927-6221105 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D286ED9873C60D776ae67582314d18be1266f408027489
1715
+ 2015-07-09 14:44:06 | INFO | 402-3393927-6221105 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1716
+ 2015-07-09 14:44:06 | ERROR | 402-3393927-6221105| No Product Matching, Product 15445 could not be found
1717
+ 2015-07-09 14:44:06 | INFO | 402-3393927-6221105 | Generating Order
1718
+ 2015-07-09 14:44:06 | INFO | 402-3393927-6221105 | Adding 1 product/s with id 914 to order, with Beezup Price: 27
1719
+ 2015-07-09 14:44:06 | INFO | 402-3393927-6221105 | Adding Order Shipping Cost: 0
1720
+ 2015-07-09 14:44:07 | INFO | 402-3393927-6221105 | Adding Beezup Marketplace Information to Order
1721
+ 2015-07-09 14:44:07 | INFO | 402-3393927-6221105 | Sending Magento Order Id to Beezup, Magento Order Id: 140
1722
+ 2015-07-09 14:44:08 | INFO | 402-3393927-6221105 | Setting Order Status to Shipped
1723
+ 2015-07-09 14:44:08 | INFO | 402-3393927-6221105 | Generating Order Payment Invoice
1724
+ 2015-07-09 14:44:09 | INFO | 402-3393927-6221105 | Order Payment Invoice Generated Succesfully
1725
+ 2015-07-09 14:44:09 | INFO | 402-3393927-6221105 | Order imported succesfully, Magento Order Id: 140
1726
+ 2015-07-09 14:44:11 | INFO | 171-6301647-8151536 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D286CC1E265AECac392ae852464e669b7c330de9815c79
1727
+ 2015-07-09 14:44:11 | INFO | 171-6301647-8151536 | Order Etag has not changed
1728
+ 2015-07-09 14:44:13 | INFO | MOR-BAC96M20741228 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/RueDuCo/1973/8D286DCED684B3C7710814d652d47bea42e403d9aad67ae
1729
+ 2015-07-09 14:44:13 | INFO | MOR-BAC96M20741228 | Order Etag has not changed
1730
+ 2015-07-09 14:44:14 | INFO | MOR-96201M20746686 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/RueDuCo/1973/8D286DCED5EC1D8d3c9415f06da4a1cb6fe620332ceaaf6
1731
+ 2015-07-09 14:44:14 | INFO | MOR-96201M20746686 | Order Etag has not changed
1732
+ 2015-07-09 14:44:15 | INFO | MOR-7A3C4M20753684 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/RueDuCo/1973/8D286DCED4E113F4b71a7031ee74f33aa590ac72314e76f
1733
+ 2015-07-09 14:44:15 | INFO | MOR-7A3C4M20753684 | Order Etag has not changed
1734
+ 2015-07-09 14:44:16 | INFO | MOR-70E0EM20768788 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/RueDuCo/1973/8D286DCED199E0141289e632a2a4ef1894d4c66f4acd255
1735
+ 2015-07-09 14:44:16 | INFO | MOR-70E0EM20768788 | Order Etag has not changed
1736
+ 2015-07-09 14:44:17 | INFO | MOR-81119M20758974 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/RueDuCo/1973/8D286DCED404D29b93f638188c24a23ad96bc8c522c01e2
1737
+ 2015-07-09 14:44:17 | INFO | MOR-81119M20758974 | Order Etag has not changed
1738
+ 2015-07-09 14:44:18 | INFO | MOR-3F77BM20760212 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/RueDuCo/1973/8D286DCED2F235623ef497535ff4bd2adfbee69db505dbf
1739
+ 2015-07-09 14:44:18 | INFO | MOR-3F77BM20760212 | Order Etag has not changed
1740
+ 2015-07-09 14:44:19 | INFO | MOR-82C74M20779944 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/RueDuCo/1973/8D286DCECFB2F900e41cf1907e04d47a3727c3972e1f559
1741
+ 2015-07-09 14:44:19 | INFO | MOR-82C74M20779944 | Order Etag has not changed
1742
+ 2015-07-09 14:44:21 | INFO | MOR-717FBM20785546 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/RueDuCo/1973/8D286DCECE7E129d1746298b149418592b0c3c541fcc599
1743
+ 2015-07-09 14:44:21 | INFO | MOR-717FBM20785546 | Order Etag has not changed
1744
+ 2015-07-09 14:44:22 | INFO | MOR-602F7M20798630 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/RueDuCo/1973/8D286DCECD93F68b9226c6a18c948a3aba312a13201b037
1745
+ 2015-07-09 14:44:22 | INFO | MOR-602F7M20798630 | Order Etag has not changed
1746
+ 2015-07-09 14:44:26 | INFO | MOR-4235BM20809432 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/RueDuCo/1973/8D286DCECCFB5BE3d297d2b61c84e30a91680a415c8698a
1747
+ 2015-07-09 14:44:26 | INFO | MOR-4235BM20809432 | Order Etag has not changed
1748
+ 2015-07-09 14:44:28 | INFO | MOR-4B184M20815794 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/RueDuCo/1973/8D286DCECC6347062e91d3071bf45da88dd8d355a6677ab
1749
+ 2015-07-09 14:44:28 | INFO | MOR-4B184M20815794 | Order Etag has not changed
1750
+ 2015-07-09 14:44:29 | INFO | MOR-F543DM20822570 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/RueDuCo/1973/8D286DCECBCA35097561fc1d5af44029424977b1c900865
1751
+ 2015-07-09 14:44:29 | INFO | MOR-F543DM20822570 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1752
+ 2015-07-09 14:44:29 | INFO | MOR-F543DM20822570 | Product Matching succesful, Beezup Imported Id: SDU-BRA-05-00-442-12372 , Magento Product Id: 847
1753
+ 2015-07-09 14:44:29 | INFO | MOR-F543DM20822570 | Generating Order
1754
+ 2015-07-09 14:44:29 | INFO | MOR-F543DM20822570 | Adding 3 product/s with id 847 to order, with Beezup Price: 16
1755
+ 2015-07-09 14:44:29 | INFO | MOR-F543DM20822570 | Adding Order Shipping Cost: 0
1756
+ 2015-07-09 14:44:29 | INFO | MOR-F543DM20822570 | Order Import failed, Trying to import Order Again
1757
+ 2015-07-09 14:44:29 | INFO | MOR-F543DM20822570 | Adding 3 product/s with id 847 to order, with Beezup Price: 16
1758
+ 2015-07-09 14:44:29 | INFO | MOR-F543DM20822570 | Adding Order Shipping Cost: 0
1759
+ 2015-07-09 14:44:29 | ERROR | MOR-F543DM20822570| Order could not be imported, error: Not all products are available in the requested quantity
1760
+ 2015-07-09 14:44:30 | INFO | MOR-02DB5M20918160 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/RueDuCo/1973/8D286DCEC91B9AD0599b9626dc845e1a90f9db8c8391c42
1761
+ 2015-07-09 14:44:30 | INFO | MOR-02DB5M20918160 | Order Etag has not changed
1762
+ 2015-07-09 14:44:32 | INFO | MOR-3CB76M20855718 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/RueDuCo/1973/8D286DCECB319D5205281bf79804bdbb981fcdf23b7cc43
1763
+ 2015-07-09 14:44:32 | INFO | MOR-3CB76M20855718 | Order Etag has not changed
1764
+ 2015-07-09 14:44:33 | INFO | MOR-56374M20867754 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/RueDuCo/1973/8D286DCECA9E6431f33653826c5488eb92a21dc77259b13
1765
+ 2015-07-09 14:44:33 | INFO | MOR-56374M20867754 | Order Etag has not changed
1766
+ 2015-07-09 14:44:35 | INFO | MOR-68C9BM20919324 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/RueDuCo/1973/8D286DCEC2E35B43df2fdd763c24500a95f6d36d0a4ad4f
1767
+ 2015-07-09 14:44:35 | INFO | MOR-68C9BM20919324 | Order Etag has not changed
1768
+ 2015-07-09 14:44:36 | INFO | MOR-DCD20M20971104 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/RueDuCo/1973/8D286DCEBD863FB158e3e48f7934991a5b7b208e4d9e343
1769
+ 2015-07-09 14:44:36 | INFO | MOR-DCD20M20971104 | Order Etag has not changed
1770
+ 2015-07-09 14:44:38 | INFO | MOR-80A92M20921178 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/RueDuCo/1973/8D286DCEC0771DE29973867dc264d24b269d6d9abf93723
1771
+ 2015-07-09 14:44:38 | INFO | MOR-80A92M20921178 | Order Etag has not changed
1772
+ 2015-07-09 14:44:39 | INFO | MOR-70EF5M20924630 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/RueDuCo/1973/8D286DCEBF9B2CE5d92c493db954c1fb3b43b8785e4111c
1773
+ 2015-07-09 14:44:39 | INFO | MOR-70EF5M20924630 | Order Etag has not changed
1774
+ 2015-07-09 14:44:41 | INFO | MOR-A9DA9M21012464 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/RueDuCo/1973/8D286DCEBBE4DA0e0f9d7f6dc2c4cf68bb3582414ee4f30
1775
+ 2015-07-09 14:44:41 | INFO | MOR-A9DA9M21012464 | Order Etag has not changed
1776
+ 2015-07-09 14:44:42 | INFO | MOR-BDBC9M20942764 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/RueDuCo/1973/8D286DCEBE6113115f395cafaa545b2b655db62c477c759
1777
+ 2015-07-09 14:44:42 | INFO | MOR-BDBC9M20942764 | Order Etag has not changed
1778
+ 2015-07-09 14:44:44 | INFO | MOR-CADC4M21054678 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/RueDuCo/1973/8D286DCEB9CED4Db27abef51dc94be5b18a03d5100c1f80
1779
+ 2015-07-09 14:44:44 | INFO | MOR-CADC4M21054678 | Order Etag has not changed
1780
+ 2015-07-09 14:44:45 | INFO | MOR-95DA4M21062770 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/RueDuCo/1973/8D286DCEB63AE054081f79dfb84426ea202b77580b88c21
1781
+ 2015-07-09 14:44:45 | INFO | MOR-95DA4M21062770 | Order Etag has not changed
1782
+ 2015-07-09 14:44:46 | INFO | MOR-3A9D9M21088116 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/RueDuCo/1973/8D286DCEB085888b06d16c41d6b46ab9010b99022fea21d
1783
+ 2015-07-09 14:44:46 | INFO | MOR-3A9D9M21088116 | Order Etag has not changed
1784
+ 2015-07-09 14:44:47 | INFO | MOR-DC800M21070886 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/RueDuCo/1973/8D286DCEB3CD56Ffbc0f87b9e624d3cbcce0bb0fe199681
1785
+ 2015-07-09 14:44:47 | INFO | MOR-DC800M21070886 | Order Etag has not changed
1786
+ 2015-07-09 14:44:48 | INFO | MOR-53473M21073396 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/RueDuCo/1973/8D286DCEB1BD9684b49bc6f4cb34ac28776e833fccef787
1787
+ 2015-07-09 14:44:48 | INFO | MOR-53473M21073396 | Order Etag has not changed
1788
+ 2015-07-09 14:44:49 | INFO | MOR-2148FM20784702 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/RueDuCo/1973/8D286DCEA0BD8C9030da0dd79b54b8cb2b293ad21444c0d
1789
+ 2015-07-09 14:44:49 | INFO | MOR-2148FM20784702 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1790
+ 2015-07-09 14:44:49 | INFO | MOR-2148FM20784702 | Product Matching succesful, Beezup Imported Id: SDU-BAG-05-52-098-11483 , Magento Product Id: 863
1791
+ 2015-07-09 14:44:49 | INFO | MOR-2148FM20784702 | Generating Order
1792
+ 2015-07-09 14:44:49 | ERROR | MOR-2148FM20784702| Order could not be imported, error: Stock from Beezup product = 0
1793
+ 2015-07-09 14:44:51 | INFO | 404-5774407-9236304 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D28613C1BDCDB6bc64f2ab8f134f32877a0825ccdd89e8
1794
+ 2015-07-09 14:44:51 | INFO | 404-5774407-9236304 | Order Etag has not changed
1795
+ 2015-07-09 14:44:54 | INFO | 402-5594906-6071532 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D2860B56AE6055aaf3bc1eca224c96b255f5fbf347c50e
1796
+ 2015-07-09 14:44:54 | INFO | 402-5594906-6071532 | Order Etag has not changed
1797
+ 2015-07-09 14:44:57 | INFO | 404-1301343-2734710 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D28680B1D693667a11370dfd46431e9a936d0a87828441
1798
+ 2015-07-09 14:44:57 | INFO | 404-1301343-2734710 | Order Etag has not changed
1799
+ 2015-07-09 14:45:01 | INFO | 404-6042050-5212332 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D28680B0FED25Fa59a54f3d0f14feca8c33cc1c1769591
1800
+ 2015-07-09 14:45:01 | INFO | 404-6042050-5212332 | Order Etag has not changed
1801
+ 2015-07-09 14:45:04 | INFO | 171-5288429-0213158 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D2863DB750BCAEd9a1501aff024ed782854e91d8917614
1802
+ 2015-07-09 14:45:04 | INFO | 171-5288429-0213158 | Order Etag has not changed
1803
+ 2015-07-09 14:45:08 | INFO | 171-8213117-5029142 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D286CC1E2CF0C27cf86044c72042fa802dfa9c7bbce59b
1804
+ 2015-07-09 14:45:08 | INFO | 171-8213117-5029142 | Order Etag has not changed
1805
+ 2015-07-09 14:45:11 | INFO | 403-7220196-3163565 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D286D48E0EA9129c15fd1a39d44429935ce197ae228600
1806
+ 2015-07-09 14:45:11 | INFO | 403-7220196-3163565 | Order Etag has not changed
1807
+ 2015-07-09 14:45:14 | INFO | 171-1999038-3097117 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D286DCE3C2397Bb6b301c18c174f7da528441096c154ed
1808
+ 2015-07-09 14:45:14 | INFO | 171-1999038-3097117 | Order Etag has not changed
1809
+ 2015-07-09 14:45:14 | INFO | OM Importation finalized succesfully
1810
+ 2015-07-10 10:58:30 | INFO | Initializing OM Importation
1811
+ 2015-07-10 10:58:39 | INFO | 150707174459JQ8 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/CDiscount/1111/8D286EDA07332AA60836ac057524359a2d7c62cb4d6e153
1812
+ 2015-07-10 10:58:39 | INFO | 150707174459JQ8 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1813
+ 2015-07-10 10:58:39 | INFO | 150707174459JQ8 | Product Matching succesful, Beezup Imported Id: 15636 , Magento Product Id: 913
1814
+ 2015-07-10 10:58:39 | INFO | 150707174459JQ8 | Updating Etag
1815
+ 2015-07-10 10:58:39 | INFO | 150707174459JQ8 | Order Already exists Mage Order ID: 138
1816
+ 2015-07-10 10:58:43 | INFO | 404-1030190-0977957 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D2890E769368D16a19d7c8b38c4c60af3868d2b560022c
1817
+ 2015-07-10 10:58:43 | INFO | 404-1030190-0977957 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1818
+ 2015-07-10 10:58:43 | ERROR | 404-1030190-0977957| No Product Matching, Product 15216 could not be found
1819
+ 2015-07-10 10:58:45 | INFO | 404-1030190-0977957 | Generating Order
1820
+ 2015-07-10 10:58:45 | INFO | 404-1030190-0977957 | Adding 1 product/s with id 915 to order, with Beezup Price: 66
1821
+ 2015-07-10 10:58:45 | INFO | 404-1030190-0977957 | Adding Order Shipping Cost: 0
1822
+ 2015-07-10 10:58:47 | INFO | 404-1030190-0977957 | Adding Beezup Marketplace Information to Order
1823
+ 2015-07-10 10:58:47 | INFO | 404-1030190-0977957 | Sending Magento Order Id to Beezup, Magento Order Id: 141
1824
+ 2015-07-10 10:58:48 | INFO | 404-1030190-0977957 | Setting Order Status to InProgress
1825
+ 2015-07-10 10:58:48 | INFO | 404-1030190-0977957 | Generating Order Payment Invoice
1826
+ 2015-07-10 10:58:49 | INFO | 404-1030190-0977957 | Order Payment Invoice Generated Succesfully
1827
+ 2015-07-10 10:58:49 | INFO | 404-1030190-0977957 | Order imported succesfully, Magento Order Id: 141
1828
+ 2015-07-10 10:58:52 | INFO | 402-5290563-2521144 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D2890616568E03a61fc43b464d4e5c932cde0a1418c0ac
1829
+ 2015-07-10 10:58:52 | INFO | 402-5290563-2521144 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1830
+ 2015-07-10 10:58:52 | INFO | 402-5290563-2521144 | Product Matching succesful, Beezup Imported Id: 13943 , Magento Product Id: 886
1831
+ 2015-07-10 10:58:52 | INFO | 402-5290563-2521144 | Generating Order
1832
+ 2015-07-10 10:58:52 | INFO | 402-5290563-2521144 | Adding 1 product/s with id 886 to order, with Beezup Price: 21
1833
+ 2015-07-10 10:58:52 | INFO | 402-5290563-2521144 | Product 886 Stock = 0, Updating to 1 to generate Order
1834
+ 2015-07-10 10:58:53 | INFO | 402-5290563-2521144 | Adding Order Shipping Cost: 0
1835
+ 2015-07-10 10:58:54 | INFO | 402-5290563-2521144 | Adding Beezup Marketplace Information to Order
1836
+ 2015-07-10 10:58:54 | INFO | 402-5290563-2521144 | Sending Magento Order Id to Beezup, Magento Order Id: 142
1837
+ 2015-07-10 10:58:55 | INFO | 402-5290563-2521144 | Setting Order Status to Shipped
1838
+ 2015-07-10 10:58:55 | INFO | 402-5290563-2521144 | Generating Order Payment Invoice
1839
+ 2015-07-10 10:58:56 | INFO | 402-5290563-2521144 | Order Payment Invoice Generated Succesfully
1840
+ 2015-07-10 10:58:56 | INFO | 402-5290563-2521144 | Order imported succesfully, Magento Order Id: 142
1841
+ 2015-07-10 10:59:00 | INFO | 171-7515634-6973108 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D288E489138C5Ef1d766d5b9174b38a466e3f86c0c6e67
1842
+ 2015-07-10 10:59:00 | INFO | 171-7515634-6973108 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1843
+ 2015-07-10 10:59:00 | ERROR | 171-7515634-6973108| No Product Matching, Product 12474 could not be found
1844
+ 2015-07-10 10:59:01 | INFO | 171-7515634-6973108 | Generating Order
1845
+ 2015-07-10 10:59:01 | ERROR | 171-7515634-6973108| Order could not be imported, error: Stock from Beezup product = 0
1846
+ 2015-07-10 10:59:04 | INFO | 171-0714027-0976320 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D2763B02F8FCE5e79efc38270c4619b263f493cb6b21e2
1847
+ 2015-07-10 10:59:04 | INFO | 171-0714027-0976320 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1848
+ 2015-07-10 10:59:04 | INFO | 171-0714027-0976320 | Product Matching succesful, Beezup Imported Id: 12478 , Magento Product Id: 880
1849
+ 2015-07-10 10:59:04 | INFO | 171-0714027-0976320 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1850
+ 2015-07-10 10:59:04 | INFO | 171-0714027-0976320 | Product Matching succesful, Beezup Imported Id: 12475 , Magento Product Id: 881
1851
+ 2015-07-10 10:59:04 | INFO | 171-0714027-0976320 | Generating Order
1852
+ 2015-07-10 10:59:04 | INFO | 171-0714027-0976320 | Adding 5 product/s with id 880 to order, with Beezup Price: 14
1853
+ 2015-07-10 10:59:04 | INFO | 171-0714027-0976320 | Adding 3 product/s with id 881 to order, with Beezup Price: 14
1854
+ 2015-07-10 10:59:04 | INFO | 171-0714027-0976320 | Adding Order Shipping Cost: 0
1855
+ 2015-07-10 10:59:05 | INFO | 171-0714027-0976320 | Order Import failed, Trying to import Order Again
1856
+ 2015-07-10 10:59:05 | INFO | 171-0714027-0976320 | Adding 5 product/s with id 880 to order, with Beezup Price: 14
1857
+ 2015-07-10 10:59:05 | INFO | 171-0714027-0976320 | Adding 3 product/s with id 881 to order, with Beezup Price: 14
1858
+ 2015-07-10 10:59:05 | INFO | 171-0714027-0976320 | Adding Order Shipping Cost: 0
1859
+ 2015-07-10 10:59:05 | ERROR | 171-0714027-0976320| Order could not be imported, error: Not all products are available in the requested quantity
1860
+ 2015-07-10 10:59:09 | INFO | 171-6606521-2736312 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D288DC3154D283905852e9dc8940b193f5ce87a04281d2
1861
+ 2015-07-10 10:59:09 | INFO | 171-6606521-2736312 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1862
+ 2015-07-10 10:59:09 | ERROR | 171-6606521-2736312| No Product Matching, Product 12990 could not be found
1863
+ 2015-07-10 10:59:09 | INFO | 171-6606521-2736312 | Generating Order
1864
+ 2015-07-10 10:59:09 | INFO | 171-6606521-2736312 | Adding 1 product/s with id 917 to order, with Beezup Price: 12
1865
+ 2015-07-10 10:59:09 | INFO | 171-6606521-2736312 | Adding Order Shipping Cost: 3
1866
+ 2015-07-10 10:59:10 | INFO | 171-6606521-2736312 | Adding Beezup Marketplace Information to Order
1867
+ 2015-07-10 10:59:10 | INFO | 171-6606521-2736312 | Sending Magento Order Id to Beezup, Magento Order Id: 143
1868
+ 2015-07-10 10:59:11 | INFO | 171-6606521-2736312 | Setting Order Status to InProgress
1869
+ 2015-07-10 10:59:11 | INFO | 171-6606521-2736312 | Generating Order Payment Invoice
1870
+ 2015-07-10 10:59:11 | INFO | 171-6606521-2736312 | Order Payment Invoice Generated Succesfully
1871
+ 2015-07-10 10:59:11 | INFO | 171-6606521-2736312 | Order imported succesfully, Magento Order Id: 143
1872
+ 2015-07-10 10:59:15 | INFO | 402-0786905-1801965 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D288993CB94C53a5b2b85f722448528e871d1e1f1e59ce
1873
+ 2015-07-10 10:59:15 | INFO | 402-0786905-1801965 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1874
+ 2015-07-10 10:59:15 | INFO | 402-0786905-1801965 | Product Matching succesful, Beezup Imported Id: 15360 , Magento Product Id: 867
1875
+ 2015-07-10 10:59:15 | INFO | 402-0786905-1801965 | Generating Order
1876
+ 2015-07-10 10:59:15 | INFO | 402-0786905-1801965 | Adding 1 product/s with id 867 to order, with Beezup Price: 36
1877
+ 2015-07-10 10:59:15 | INFO | 402-0786905-1801965 | Product 867 Stock = 0, Updating to 1 to generate Order
1878
+ 2015-07-10 10:59:15 | INFO | 402-0786905-1801965 | Adding Order Shipping Cost: 3
1879
+ 2015-07-10 10:59:16 | INFO | 402-0786905-1801965 | Adding Beezup Marketplace Information to Order
1880
+ 2015-07-10 10:59:16 | INFO | 402-0786905-1801965 | Sending Magento Order Id to Beezup, Magento Order Id: 144
1881
+ 2015-07-10 10:59:18 | INFO | 402-0786905-1801965 | Setting Order Status to InProgress
1882
+ 2015-07-10 10:59:18 | INFO | 402-0786905-1801965 | Generating Order Payment Invoice
1883
+ 2015-07-10 10:59:18 | INFO | 402-0786905-1801965 | Order Payment Invoice Generated Succesfully
1884
+ 2015-07-10 10:59:18 | INFO | 402-0786905-1801965 | Order imported succesfully, Magento Order Id: 144
1885
+ 2015-07-10 10:59:22 | INFO | 402-5524047-5217910 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D288993C16EA8Dfa3760eacb9b4e97afc2b34ae020cd77
1886
+ 2015-07-10 10:59:22 | INFO | 402-5524047-5217910 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1887
+ 2015-07-10 10:59:22 | INFO | 402-5524047-5217910 | Product Matching succesful, Beezup Imported Id: 13463 , Magento Product Id: 770
1888
+ 2015-07-10 10:59:22 | INFO | 402-5524047-5217910 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1889
+ 2015-07-10 10:59:22 | ERROR | 402-5524047-5217910| No Product Matching, Product 11939 could not be found
1890
+ 2015-07-10 10:59:23 | INFO | 402-5524047-5217910 | Generating Order
1891
+ 2015-07-10 10:59:23 | INFO | 402-5524047-5217910 | Adding 1 product/s with id 770 to order, with Beezup Price: 16
1892
+ 2015-07-10 10:59:23 | INFO | 402-5524047-5217910 | Product 770 Stock = 0, Updating to 1 to generate Order
1893
+ 2015-07-10 10:59:24 | INFO | 402-5524047-5217910 | Adding 1 product/s with id 918 to order, with Beezup Price: 16
1894
+ 2015-07-10 10:59:24 | INFO | 402-5524047-5217910 | Adding Order Shipping Cost: 0
1895
+ 2015-07-10 10:59:25 | INFO | 402-5524047-5217910 | Adding Beezup Marketplace Information to Order
1896
+ 2015-07-10 10:59:25 | INFO | 402-5524047-5217910 | Sending Magento Order Id to Beezup, Magento Order Id: 145
1897
+ 2015-07-10 10:59:26 | INFO | 402-5524047-5217910 | Setting Order Status to Shipped
1898
+ 2015-07-10 10:59:26 | INFO | 402-5524047-5217910 | Generating Order Payment Invoice
1899
+ 2015-07-10 10:59:26 | INFO | 402-5524047-5217910 | Order Payment Invoice Generated Succesfully
1900
+ 2015-07-10 10:59:26 | INFO | 402-5524047-5217910 | Order imported succesfully, Magento Order Id: 145
1901
+ 2015-07-10 10:59:31 | INFO | 171-2524616-2692314 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D288993B80727605c8c02633d0442896a0ca9c104b658d
1902
+ 2015-07-10 10:59:31 | INFO | 171-2524616-2692314 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1903
+ 2015-07-10 10:59:31 | ERROR | 171-2524616-2692314| No Product Matching, Product 15756 could not be found
1904
+ 2015-07-10 10:59:31 | INFO | 171-2524616-2692314 | Generating Order
1905
+ 2015-07-10 10:59:31 | INFO | 171-2524616-2692314 | Adding 1 product/s with id 919 to order, with Beezup Price: 23
1906
+ 2015-07-10 10:59:31 | INFO | 171-2524616-2692314 | Adding Order Shipping Cost: 0
1907
+ 2015-07-10 10:59:32 | INFO | 171-2524616-2692314 | Adding Beezup Marketplace Information to Order
1908
+ 2015-07-10 10:59:32 | INFO | 171-2524616-2692314 | Sending Magento Order Id to Beezup, Magento Order Id: 146
1909
+ 2015-07-10 10:59:34 | INFO | 171-2524616-2692314 | Setting Order Status to Shipped
1910
+ 2015-07-10 10:59:34 | INFO | 171-2524616-2692314 | Generating Order Payment Invoice
1911
+ 2015-07-10 10:59:34 | INFO | 171-2524616-2692314 | Order Payment Invoice Generated Succesfully
1912
+ 2015-07-10 10:59:34 | INFO | 171-2524616-2692314 | Order imported succesfully, Magento Order Id: 146
1913
+ 2015-07-10 10:59:38 | INFO | 171-3321502-8268354 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D288885A48280F40b454545745432d97cd06609a04db08
1914
+ 2015-07-10 10:59:38 | INFO | 171-3321502-8268354 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1915
+ 2015-07-10 10:59:38 | ERROR | 171-3321502-8268354| No Product Matching, Product 12730 could not be found
1916
+ 2015-07-10 10:59:39 | INFO | 171-3321502-8268354 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1917
+ 2015-07-10 10:59:39 | ERROR | 171-3321502-8268354| No Product Matching, Product 12500 could not be found
1918
+ 2015-07-10 10:59:39 | INFO | 171-3321502-8268354 | Generating Order
1919
+ 2015-07-10 10:59:39 | INFO | 171-3321502-8268354 | Adding 1 product/s with id 920 to order, with Beezup Price: 22
1920
+ 2015-07-10 10:59:39 | INFO | 171-3321502-8268354 | Adding 1 product/s with id 921 to order, with Beezup Price: 22
1921
+ 2015-07-10 10:59:39 | INFO | 171-3321502-8268354 | Adding Order Shipping Cost: 0
1922
+ 2015-07-10 10:59:40 | INFO | 171-3321502-8268354 | Adding Beezup Marketplace Information to Order
1923
+ 2015-07-10 10:59:40 | INFO | 171-3321502-8268354 | Sending Magento Order Id to Beezup, Magento Order Id: 147
1924
+ 2015-07-10 10:59:42 | INFO | 171-3321502-8268354 | Setting Order Status to Shipped
1925
+ 2015-07-10 10:59:42 | INFO | 171-3321502-8268354 | Generating Order Payment Invoice
1926
+ 2015-07-10 10:59:42 | INFO | 171-3321502-8268354 | Order Payment Invoice Generated Succesfully
1927
+ 2015-07-10 10:59:42 | INFO | 171-3321502-8268354 | Order imported succesfully, Magento Order Id: 147
1928
+ 2015-07-10 10:59:46 | INFO | 403-0768337-5449130 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D2887FF510CE345c4cd076dcc9459b98e1d8ae97a7def4
1929
+ 2015-07-10 10:59:46 | INFO | 403-0768337-5449130 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1930
+ 2015-07-10 10:59:46 | ERROR | 403-0768337-5449130| No Product Matching, Product 15302 could not be found
1931
+ 2015-07-10 10:59:46 | INFO | 403-0768337-5449130 | Generating Order
1932
+ 2015-07-10 10:59:46 | INFO | 403-0768337-5449130 | Adding 1 product/s with id 922 to order, with Beezup Price: 16
1933
+ 2015-07-10 10:59:46 | INFO | 403-0768337-5449130 | Adding Order Shipping Cost: 3
1934
+ 2015-07-10 10:59:47 | INFO | 403-0768337-5449130 | Adding Beezup Marketplace Information to Order
1935
+ 2015-07-10 10:59:47 | INFO | 403-0768337-5449130 | Sending Magento Order Id to Beezup, Magento Order Id: 148
1936
+ 2015-07-10 10:59:50 | INFO | 403-0768337-5449130 | Setting Order Status to InProgress
1937
+ 2015-07-10 10:59:50 | INFO | 403-0768337-5449130 | Generating Order Payment Invoice
1938
+ 2015-07-10 10:59:50 | INFO | 403-0768337-5449130 | Order Payment Invoice Generated Succesfully
1939
+ 2015-07-10 10:59:50 | INFO | 403-0768337-5449130 | Order imported succesfully, Magento Order Id: 148
1940
+ 2015-07-10 10:59:53 | INFO | 402-1492220-3105951 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D2881328921936900324d0a1d04371b821b58dd5aca36f
1941
+ 2015-07-10 10:59:53 | INFO | 402-1492220-3105951 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1942
+ 2015-07-10 10:59:53 | INFO | 402-1492220-3105951 | Product Matching succesful, Beezup Imported Id: 16285 , Magento Product Id: 882
1943
+ 2015-07-10 10:59:53 | INFO | 402-1492220-3105951 | Updating Etag
1944
+ 2015-07-10 10:59:53 | INFO | 402-1492220-3105951 | Order Already exists Mage Order ID: 96
1945
+ 2015-07-10 10:59:53 | INFO | 402-1492220-3105951 | Updating Order Status from: Processing to: Shipped
1946
+ 2015-07-10 10:59:53 | INFO | 402-1492220-3105951 | Setting Order Status to Shipped
1947
+ 2015-07-10 10:59:53 | INFO | 402-1492220-3105951 | Generating Order Payment Invoice
1948
+ 2015-07-10 10:59:58 | INFO | 403-8665330-2179511 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D2886F33C5807919b18b8548e34681adbc47fce41605af
1949
+ 2015-07-10 10:59:58 | INFO | 403-8665330-2179511 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1950
+ 2015-07-10 10:59:58 | ERROR | 403-8665330-2179511| No Product Matching, Product 15335 could not be found
1951
+ 2015-07-10 10:59:58 | INFO | 403-8665330-2179511 | Generating Order
1952
+ 2015-07-10 10:59:58 | INFO | 403-8665330-2179511 | Adding 1 product/s with id 923 to order, with Beezup Price: 41
1953
+ 2015-07-10 10:59:58 | INFO | 403-8665330-2179511 | Adding Order Shipping Cost: 0
1954
+ 2015-07-10 10:59:59 | INFO | 403-8665330-2179511 | Adding Beezup Marketplace Information to Order
1955
+ 2015-07-10 10:59:59 | INFO | 403-8665330-2179511 | Sending Magento Order Id to Beezup, Magento Order Id: 149
1956
+ 2015-07-10 11:00:04 | INFO | 403-8665330-2179511 | Setting Order Status to Shipped
1957
+ 2015-07-10 11:00:04 | INFO | 403-8665330-2179511 | Generating Order Payment Invoice
1958
+ 2015-07-10 11:00:04 | INFO | 403-8665330-2179511 | Order Payment Invoice Generated Succesfully
1959
+ 2015-07-10 11:00:04 | INFO | 403-8665330-2179511 | Order imported succesfully, Magento Order Id: 149
1960
+ 2015-07-10 11:00:10 | INFO | 403-7793325-0259549 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D2886F31C97219960c24ed11834a54b5ef21b26e91ee09
1961
+ 2015-07-10 11:00:10 | INFO | 403-7793325-0259549 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1962
+ 2015-07-10 11:00:10 | ERROR | 403-7793325-0259549| No Product Matching, Product 15309 could not be found
1963
+ 2015-07-10 11:00:11 | INFO | 403-7793325-0259549 | Generating Order
1964
+ 2015-07-10 11:00:11 | INFO | 403-7793325-0259549 | Adding 1 product/s with id 924 to order, with Beezup Price: 17
1965
+ 2015-07-10 11:00:11 | INFO | 403-7793325-0259549 | Adding Order Shipping Cost: 2.79
1966
+ 2015-07-10 11:00:12 | INFO | 403-7793325-0259549 | Adding Beezup Marketplace Information to Order
1967
+ 2015-07-10 11:00:12 | INFO | 403-7793325-0259549 | Sending Magento Order Id to Beezup, Magento Order Id: 150
1968
+ 2015-07-10 11:00:15 | INFO | 403-7793325-0259549 | Setting Order Status to Shipped
1969
+ 2015-07-10 11:00:15 | INFO | 403-7793325-0259549 | Generating Order Payment Invoice
1970
+ 2015-07-10 11:00:16 | INFO | 403-7793325-0259549 | Order Payment Invoice Generated Succesfully
1971
+ 2015-07-10 11:00:16 | INFO | 403-7793325-0259549 | Order imported succesfully, Magento Order Id: 150
1972
+ 2015-07-10 11:00:21 | INFO | 171-1662534-3233943 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D2886F2F53484F8e71fa892d254ec5a7b3f0d1a8444e20
1973
+ 2015-07-10 11:00:21 | INFO | 171-1662534-3233943 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1974
+ 2015-07-10 11:00:21 | ERROR | 171-1662534-3233943| No Product Matching, Product 15571 could not be found
1975
+ 2015-07-10 11:00:22 | INFO | 171-1662534-3233943 | Generating Order
1976
+ 2015-07-10 11:00:22 | INFO | 171-1662534-3233943 | Adding 1 product/s with id 925 to order, with Beezup Price: 20
1977
+ 2015-07-10 11:00:22 | INFO | 171-1662534-3233943 | Adding Order Shipping Cost: 9.99
1978
+ 2015-07-10 11:00:22 | INFO | 171-1662534-3233943 | Adding Beezup Marketplace Information to Order
1979
+ 2015-07-10 11:00:22 | INFO | 171-1662534-3233943 | Sending Magento Order Id to Beezup, Magento Order Id: 151
1980
+ 2015-07-10 11:00:25 | INFO | 171-1662534-3233943 | Setting Order Status to Shipped
1981
+ 2015-07-10 11:00:25 | INFO | 171-1662534-3233943 | Generating Order Payment Invoice
1982
+ 2015-07-10 11:00:25 | INFO | 171-1662534-3233943 | Order Payment Invoice Generated Succesfully
1983
+ 2015-07-10 11:00:25 | INFO | 171-1662534-3233943 | Order imported succesfully, Magento Order Id: 151
1984
+ 2015-07-10 11:00:29 | INFO | 171-3451958-8119536 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D2886F2F4E8392ce1e385bfd744ac4a476839155ed5a4d
1985
+ 2015-07-10 11:00:29 | INFO | 171-3451958-8119536 | Store Matching succesful, Beezup Store: bdd7b7cf-558c-48a1-984b-00303aecdc34 , Magento Store Id: 1
1986
+ 2015-07-10 11:00:29 | INFO | 171-3451958-8119536 | Product Matching succesful, Beezup Imported Id: 12752 , Magento Product Id: 825
1987
+ 2015-07-10 11:00:29 | INFO | 171-3451958-8119536 | Generating Order
1988
+ 2015-07-10 11:00:29 | INFO | 171-3451958-8119536 | Adding 1 product/s with id 825 to order, with Beezup Price: 21
1989
+ 2015-07-10 11:00:29 | INFO | 171-3451958-8119536 | Product 825 Stock = 0, Updating to 1 to generate Order
1990
+ 2015-07-10 11:00:30 | INFO | 171-3451958-8119536 | Adding Order Shipping Cost: 3
1991
+ 2015-07-10 11:00:30 | INFO | 171-3451958-8119536 | Adding Beezup Marketplace Information to Order
1992
+ 2015-07-10 11:00:30 | INFO | 171-3451958-8119536 | Sending Magento Order Id to Beezup, Magento Order Id: 152
1993
+ 2015-07-10 11:00:32 | INFO | 171-3451958-8119536 | Setting Order Status to InProgress
1994
+ 2015-07-10 11:00:32 | INFO | 171-3451958-8119536 | Generating Order Payment Invoice
1995
+ 2015-07-10 11:00:32 | INFO | 171-3451958-8119536 | Order Payment Invoice Generated Succesfully
1996
+ 2015-07-10 11:00:33 | INFO | 171-3451958-8119536 | Order imported succesfully, Magento Order Id: 152
1997
+ 2015-07-10 11:00:37 | INFO | 171-7338053-7935500 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D28866C6E9C383ff89395de4d5499e810770cf497e5372
1998
+ 2015-07-10 11:00:37 | INFO | 171-7338053-7935500 | Order Etag has not changed
1999
+ 2015-07-10 11:00:41 | INFO | 403-9215093-4697103 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D28866C6E75FC9d501b999219a41b397e0033916ee749e
2000
+ 2015-07-10 11:00:41 | INFO | 403-9215093-4697103 | Order Etag has not changed
2001
+ 2015-07-10 11:00:45 | INFO | 403-5202817-0269955 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D2885E656022D2e496af1f4175493892784ce7c3d14335
2002
+ 2015-07-10 11:00:45 | INFO | 403-5202817-0269955 | Order Etag has not changed
2003
+ 2015-07-10 11:00:48 | INFO | 402-0140620-3913169 | Initializing Order - Link: /orders/v1/174e676e-71dc-4951-80f8-24450e15bfb4/Amazon/901/8D2885E638C64E35a71db3041024ef79729267d5c434070
2004
+ 2015-07-10 11:00:48 | INFO | 402-0140620-3913169 | Order Etag has not changed
2005
+ 2015-07-10 11:00:49 | INFO | OM Importation finalized succesfully
2006
+ 2015-07-10 11:13:23 | INFO | Initializing OM Importation
2007
+ 2015-07-10 11:13:29 | INFO | 08AY20YPOCKM4 | Initializing Order - Link: /orders/v1/bf6ddb95-d8b0-4fe5-8d15-06ee88414e38/Fnac/1678/8D2890E8C4ACB70e41a85ddc16443e4a1e24537f139a856
2008
+ 2015-07-10 11:13:29 | INFO | 08AY20YPOCKM4 | Store Matching succesful, Beezup Store: 7f577605-fcc8-4550-be3a-15391d375ad7 , Magento Store Id: 1
2009
+ 2015-07-10 11:13:30 | ERROR | 08AY20YPOCKM4| No Product Matching, Product 77850 could not be found
2010
+ 2015-07-10 11:13:31 | INFO | 08AY20YPOCKM4 | Generating Order
2011
+ 2015-07-10 11:13:31 | INFO | 08AY20YPOCKM4 | Adding 1 product/s with id 926 to order, with Beezup Price: 16.74
2012
+ 2015-07-10 11:13:31 | INFO | 08AY20YPOCKM4 | Adding Order Shipping Cost: 0
2013
+ 2015-07-10 11:13:32 | INFO | 08AY20YPOCKM4 | Adding Beezup Marketplace Information to Order
2014
+ 2015-07-10 11:13:32 | INFO | 08AY20YPOCKM4 | Sending Magento Order Id to Beezup, Magento Order Id: 153
2015
+ 2015-07-10 11:13:34 | INFO | 08AY20YPOCKM4 | Setting Order Status to InProgress
2016
+ 2015-07-10 11:13:34 | INFO | 08AY20YPOCKM4 | Generating Order Payment Invoice
2017
+ 2015-07-10 11:13:34 | INFO | 08AY20YPOCKM4 | Order Payment Invoice Generated Succesfully
2018
+ 2015-07-10 11:13:35 | INFO | 08AY20YPOCKM4 | Order imported succesfully, Magento Order Id: 153
2019
+ 2015-07-10 11:13:36 | INFO | 0FFXS6Z3VF38S | Initializing Order - Link: /orders/v1/bf6ddb95-d8b0-4fe5-8d15-06ee88414e38/Fnac/1678/8D288ECF3848E778a1060490ddb4f3988089f4f6b2b14e9
2020
+ 2015-07-10 11:13:36 | INFO | 0FFXS6Z3VF38S | Store Matching succesful, Beezup Store: 7f577605-fcc8-4550-be3a-15391d375ad7 , Magento Store Id: 1
2021
+ 2015-07-10 11:13:36 | ERROR | 0FFXS6Z3VF38S| No Product Matching, Product 122127 could not be found
2022
+ 2015-07-10 11:13:37 | INFO | 0FFXS6Z3VF38S | Generating Order
2023
+ 2015-07-10 11:13:37 | INFO | 0FFXS6Z3VF38S | Adding 1 product/s with id 927 to order, with Beezup Price: 46.03
2024
+ 2015-07-10 11:13:37 | INFO | 0FFXS6Z3VF38S | Adding Order Shipping Cost: 0
2025
+ 2015-07-10 11:13:38 | INFO | 0FFXS6Z3VF38S | Adding Beezup Marketplace Information to Order
2026
+ 2015-07-10 11:13:38 | INFO | 0FFXS6Z3VF38S | Sending Magento Order Id to Beezup, Magento Order Id: 154
2027
+ 2015-07-10 11:13:39 | INFO | 0FFXS6Z3VF38S | Setting Order Status to InProgress
2028
+ 2015-07-10 11:13:39 | INFO | 0FFXS6Z3VF38S | Generating Order Payment Invoice
2029
+ 2015-07-10 11:13:39 | INFO | 0FFXS6Z3VF38S | Order Payment Invoice Generated Succesfully
2030
+ 2015-07-10 11:13:39 | INFO | 0FFXS6Z3VF38S | Order imported succesfully, Magento Order Id: 154
2031
+ 2015-07-10 11:13:41 | INFO | 0MSK0KYIOKN6U | Initializing Order - Link: /orders/v1/bf6ddb95-d8b0-4fe5-8d15-06ee88414e38/Fnac/1678/8D288DC422AA76Ca4dd389191534b97895c2db96bb9dc50
2032
+ 2015-07-10 11:13:41 | INFO | 0MSK0KYIOKN6U | Store Matching succesful, Beezup Store: 7f577605-fcc8-4550-be3a-15391d375ad7 , Magento Store Id: 1
2033
+ 2015-07-10 11:13:41 | ERROR | 0MSK0KYIOKN6U| No Product Matching, Product 125430 could not be found
2034
+ 2015-07-10 11:13:41 | INFO | 0MSK0KYIOKN6U | Generating Order
2035
+ 2015-07-10 11:13:41 | INFO | 0MSK0KYIOKN6U | Adding 1 product/s with id 928 to order, with Beezup Price: 103.51
2036
+ 2015-07-10 11:13:41 | INFO | 0MSK0KYIOKN6U | Adding Order Shipping Cost: 0
2037
+ 2015-07-10 11:13:42 | INFO | 0MSK0KYIOKN6U | Adding Beezup Marketplace Information to Order
2038
+ 2015-07-10 11:13:42 | INFO | 0MSK0KYIOKN6U | Sending Magento Order Id to Beezup, Magento Order Id: 155
2039
+ 2015-07-10 11:13:44 | INFO | 0MSK0KYIOKN6U | Setting Order Status to InProgress
2040
+ 2015-07-10 11:13:44 | INFO | 0MSK0KYIOKN6U | Generating Order Payment Invoice
2041
+ 2015-07-10 11:13:44 | INFO | 0MSK0KYIOKN6U | Order Payment Invoice Generated Succesfully
2042
+ 2015-07-10 11:13:44 | INFO | 0MSK0KYIOKN6U | Order imported succesfully, Magento Order Id: 155
2043
+ 2015-07-10 11:13:45 | INFO | 0N9329CQWH1D8 | Initializing Order - Link: /orders/v1/bf6ddb95-d8b0-4fe5-8d15-06ee88414e38/Fnac/1678/8D288DC417185E1a2711dd1634b46f98da3d8484220255b
2044
+ 2015-07-10 11:13:45 | INFO | 0N9329CQWH1D8 | Store Matching succesful, Beezup Store: 7f577605-fcc8-4550-be3a-15391d375ad7 , Magento Store Id: 1
2045
+ 2015-07-10 11:13:45 | ERROR | 0N9329CQWH1D8| No Product Matching, Product 74587 could not be found
2046
+ 2015-07-10 11:13:46 | INFO | 0N9329CQWH1D8 | Generating Order
2047
+ 2015-07-10 11:13:46 | INFO | 0N9329CQWH1D8 | Adding 1 product/s with id 929 to order, with Beezup Price: 34.15
2048
+ 2015-07-10 11:13:46 | INFO | 0N9329CQWH1D8 | Adding Order Shipping Cost: 0
2049
+ 2015-07-10 11:13:47 | INFO | 0N9329CQWH1D8 | Adding Beezup Marketplace Information to Order
2050
+ 2015-07-10 11:13:47 | INFO | 0N9329CQWH1D8 | Sending Magento Order Id to Beezup, Magento Order Id: 156
2051
+ 2015-07-10 11:13:48 | INFO | 0N9329CQWH1D8 | Setting Order Status to InProgress
2052
+ 2015-07-10 11:13:48 | INFO | 0N9329CQWH1D8 | Generating Order Payment Invoice
2053
+ 2015-07-10 11:13:48 | INFO | 0N9329CQWH1D8 | Order Payment Invoice Generated Succesfully
2054
+ 2015-07-10 11:13:48 | INFO | 0N9329CQWH1D8 | Order imported succesfully, Magento Order Id: 156
2055
+ 2015-07-10 11:13:50 | INFO | 0MVPS5VGQHBF8 | Initializing Order - Link: /orders/v1/bf6ddb95-d8b0-4fe5-8d15-06ee88414e38/Fnac/1678/8D2886F47228C588df0668745e245599dc6bd2908557e4b
2056
+ 2015-07-10 11:13:50 | INFO | 0MVPS5VGQHBF8 | Store Matching succesful, Beezup Store: 7f577605-fcc8-4550-be3a-15391d375ad7 , Magento Store Id: 1
2057
+ 2015-07-10 11:13:50 | INFO | 0MVPS5VGQHBF8 | Product Matching succesful, Beezup Imported Id: 125430 , Magento Product Id: 928
2058
+ 2015-07-10 11:13:50 | INFO | 0MVPS5VGQHBF8 | Generating Order
2059
+ 2015-07-10 11:13:50 | INFO | 0MVPS5VGQHBF8 | Adding 1 product/s with id 928 to order, with Beezup Price: 103.51
2060
+ 2015-07-10 11:13:50 | INFO | 0MVPS5VGQHBF8 | Product 928 Stock = 0, Updating to 1 to generate Order
2061
+ 2015-07-10 11:13:50 | INFO | 0MVPS5VGQHBF8 | Adding Order Shipping Cost: 0
2062
+ 2015-07-10 11:13:51 | INFO | 0MVPS5VGQHBF8 | Adding Beezup Marketplace Information to Order
2063
+ 2015-07-10 11:13:51 | INFO | 0MVPS5VGQHBF8 | Sending Magento Order Id to Beezup, Magento Order Id: 157
2064
+ 2015-07-10 11:13:53 | INFO | 0MVPS5VGQHBF8 | Setting Order Status to InProgress
2065
+ 2015-07-10 11:13:53 | INFO | 0MVPS5VGQHBF8 | Generating Order Payment Invoice
2066
+ 2015-07-10 11:13:54 | INFO | 0MVPS5VGQHBF8 | Order Payment Invoice Generated Succesfully
2067
+ 2015-07-10 11:13:54 | INFO | 0MVPS5VGQHBF8 | Order imported succesfully, Magento Order Id: 157
2068
+ 2015-07-10 11:13:55 | INFO | 0UXY68DKCM3HW | Initializing Order - Link: /orders/v1/bf6ddb95-d8b0-4fe5-8d15-06ee88414e38/Fnac/1678/8D288F5580DE9095214923c9a2b473db15087d3b7bd7080
2069
+ 2015-07-10 11:13:55 | INFO | 0UXY68DKCM3HW | Store Matching succesful, Beezup Store: 7f577605-fcc8-4550-be3a-15391d375ad7 , Magento Store Id: 1
2070
+ 2015-07-10 11:13:55 | ERROR | 0UXY68DKCM3HW| No Product Matching, Product 135164 could not be found
2071
+ 2015-07-10 11:13:56 | INFO | 0UXY68DKCM3HW | Generating Order
2072
+ 2015-07-10 11:13:56 | INFO | 0UXY68DKCM3HW | Adding 1 product/s with id 930 to order, with Beezup Price: 192.74
2073
+ 2015-07-10 11:13:56 | INFO | 0UXY68DKCM3HW | Adding Order Shipping Cost: 0
2074
+ 2015-07-10 11:13:57 | INFO | 0UXY68DKCM3HW | Adding Beezup Marketplace Information to Order
2075
+ 2015-07-10 11:13:57 | INFO | 0UXY68DKCM3HW | Sending Magento Order Id to Beezup, Magento Order Id: 158
2076
+ 2015-07-10 11:13:58 | INFO | 0UXY68DKCM3HW | Setting Order Status to New
2077
+ 2015-07-10 11:13:58 | INFO | 0UXY68DKCM3HW | Order imported succesfully, Magento Order Id: 158
2078
+ 2015-07-10 11:14:00 | INFO | 1PHHUQZH8Y3UW | Initializing Order - Link: /orders/v1/bf6ddb95-d8b0-4fe5-8d15-06ee88414e38/Fnac/1678/8D282EF3FFA9DA812d18fbcc45545b29f201eab42b620e7
2079
+ 2015-07-10 11:14:00 | INFO | 1PHHUQZH8Y3UW | Store Matching succesful, Beezup Store: 7f577605-fcc8-4550-be3a-15391d375ad7 , Magento Store Id: 1
2080
+ 2015-07-10 11:14:00 | ERROR | 1PHHUQZH8Y3UW| No Product Matching, Product 6583 could not be found
2081
+ 2015-07-10 11:14:00 | INFO | 1PHHUQZH8Y3UW | Generating Order
2082
+ 2015-07-10 11:14:00 | INFO | 1PHHUQZH8Y3UW | Adding 1 product/s with id 931 to order, with Beezup Price: 129.55
2083
+ 2015-07-10 11:14:00 | INFO | 1PHHUQZH8Y3UW | Adding Order Shipping Cost: 0
2084
+ 2015-07-10 11:14:01 | INFO | 1PHHUQZH8Y3UW | Adding Beezup Marketplace Information to Order
2085
+ 2015-07-10 11:14:01 | INFO | 1PHHUQZH8Y3UW | Sending Magento Order Id to Beezup, Magento Order Id: 159
2086
+ 2015-07-10 11:14:03 | INFO | 1PHHUQZH8Y3UW | Setting Order Status to Closed
2087
+ 2015-07-10 11:14:03 | INFO | 1PHHUQZH8Y3UW | Generating Order Payment Invoice
2088
+ 2015-07-10 11:14:03 | INFO | 1PHHUQZH8Y3UW | Order Payment Invoice Generated Succesfully
2089
+ 2015-07-10 11:14:03 | INFO | 1PHHUQZH8Y3UW | Order imported succesfully, Magento Order Id: 159
2090
+ 2015-07-10 11:14:05 | INFO | 1WUM12DDVT344 | Initializing Order - Link: /orders/v1/bf6ddb95-d8b0-4fe5-8d15-06ee88414e38/Fnac/1678/8D2886F4751B5653b522768d27e432688cb8fa508727290
2091
+ 2015-07-10 11:14:05 | INFO | 1WUM12DDVT344 | Store Matching succesful, Beezup Store: 7f577605-fcc8-4550-be3a-15391d375ad7 , Magento Store Id: 1
2092
+ 2015-07-10 11:14:05 | ERROR | 1WUM12DDVT344| No Product Matching, Product 90509 could not be found
2093
+ 2015-07-10 11:14:06 | INFO | 1WUM12DDVT344 | Generating Order
2094
+ 2015-07-10 11:14:06 | INFO | 1WUM12DDVT344 | Adding 1 product/s with id 932 to order, with Beezup Price: 56.12
2095
+ 2015-07-10 11:14:06 | INFO | 1WUM12DDVT344 | Adding Order Shipping Cost: 0
2096
+ 2015-07-10 11:14:07 | INFO | 1WUM12DDVT344 | Adding Beezup Marketplace Information to Order
2097
+ 2015-07-10 11:14:07 | INFO | 1WUM12DDVT344 | Sending Magento Order Id to Beezup, Magento Order Id: 160
2098
+ 2015-07-10 11:14:08 | INFO | 1WUM12DDVT344 | Setting Order Status to New
2099
+ 2015-07-10 11:14:08 | INFO | 1WUM12DDVT344 | Order imported succesfully, Magento Order Id: 160
2100
+ 2015-07-10 11:14:09 | INFO | 12529XIEPXNGE | Initializing Order - Link: /orders/v1/bf6ddb95-d8b0-4fe5-8d15-06ee88414e38/Fnac/1678/8D282C4ED4C4FD438267313f28a4665b3ded1b92d78cd12
2101
+ 2015-07-10 11:14:09 | INFO | 12529XIEPXNGE | Store Matching succesful, Beezup Store: 7f577605-fcc8-4550-be3a-15391d375ad7 , Magento Store Id: 1
2102
+ 2015-07-10 11:14:09 | ERROR | 12529XIEPXNGE| No Product Matching, Product 67823 could not be found
2103
+ 2015-07-10 11:14:10 | INFO | 12529XIEPXNGE | Generating Order
2104
+ 2015-07-10 11:14:10 | INFO | 12529XIEPXNGE | Adding 1 product/s with id 933 to order, with Beezup Price: 13.56
2105
+ 2015-07-10 11:14:10 | INFO | 12529XIEPXNGE | Adding Order Shipping Cost: 0
2106
+ 2015-07-10 11:14:11 | INFO | 12529XIEPXNGE | Adding Beezup Marketplace Information to Order
2107
+ 2015-07-10 11:14:11 | INFO | 12529XIEPXNGE | Sending Magento Order Id to Beezup, Magento Order Id: 161
2108
+ 2015-07-10 11:14:12 | INFO | 12529XIEPXNGE | Setting Order Status to Closed
2109
+ 2015-07-10 11:14:12 | INFO | 12529XIEPXNGE | Generating Order Payment Invoice
2110
+ 2015-07-10 11:14:13 | INFO | 12529XIEPXNGE | Order Payment Invoice Generated Succesfully
2111
+ 2015-07-10 11:14:13 | INFO | 12529XIEPXNGE | Order imported succesfully, Magento Order Id: 161
2112
+ 2015-07-10 11:14:14 | INFO | 07M8O2VI20UEW | Initializing Order - Link: /orders/v1/bf6ddb95-d8b0-4fe5-8d15-06ee88414e38/Fnac/1678/8D281E2DC1D29AF183191b7c0f84c138270aaef95be633c
2113
+ 2015-07-10 11:14:14 | INFO | 07M8O2VI20UEW | Store Matching succesful, Beezup Store: 7f577605-fcc8-4550-be3a-15391d375ad7 , Magento Store Id: 1
2114
+ 2015-07-10 11:14:14 | ERROR | 07M8O2VI20UEW| No Product Matching, Product 113931 could not be found
2115
+ 2015-07-10 11:14:15 | INFO | 07M8O2VI20UEW | Generating Order
2116
+ 2015-07-10 11:14:15 | INFO | 07M8O2VI20UEW | Adding 2 product/s with id 934 to order, with Beezup Price: 51.91
2117
+ 2015-07-10 11:14:15 | INFO | 07M8O2VI20UEW | Product 934 Stock = 0, Updating to 2 to generate Order
2118
+ 2015-07-10 11:14:15 | INFO | 07M8O2VI20UEW | Adding Order Shipping Cost: 0
2119
+ 2015-07-10 11:14:16 | INFO | 07M8O2VI20UEW | Adding Beezup Marketplace Information to Order
2120
+ 2015-07-10 11:14:16 | INFO | 07M8O2VI20UEW | Sending Magento Order Id to Beezup, Magento Order Id: 162
2121
+ 2015-07-10 11:14:17 | INFO | 07M8O2VI20UEW | Setting Order Status to Closed
2122
+ 2015-07-10 11:14:17 | INFO | 07M8O2VI20UEW | Generating Order Payment Invoice
2123
+ 2015-07-10 11:14:18 | INFO | 07M8O2VI20UEW | Order Payment Invoice Generated Succesfully
2124
+ 2015-07-10 11:14:18 | INFO | 07M8O2VI20UEW | Order imported succesfully, Magento Order Id: 162
2125
+ 2015-07-10 11:14:19 | INFO | 0N1ERXNGKDE4W | Initializing Order - Link: /orders/v1/bf6ddb95-d8b0-4fe5-8d15-06ee88414e38/Fnac/1678/8D2856C39C3FA9042664801bb8249aabe0d5ddfc8e0caaf
2126
+ 2015-07-10 11:14:19 | INFO | 0N1ERXNGKDE4W | Store Matching succesful, Beezup Store: 7f577605-fcc8-4550-be3a-15391d375ad7 , Magento Store Id: 1
2127
+ 2015-07-10 11:14:19 | ERROR | 0N1ERXNGKDE4W| No Product Matching, Product 133283 could not be found
2128
+ 2015-07-10 11:14:20 | INFO | 0N1ERXNGKDE4W | Generating Order
2129
+ 2015-07-10 11:14:20 | INFO | 0N1ERXNGKDE4W | Adding 1 product/s with id 935 to order, with Beezup Price: 40.13
2130
+ 2015-07-10 11:14:20 | INFO | 0N1ERXNGKDE4W | Adding Order Shipping Cost: 0
2131
+ 2015-07-10 11:14:21 | INFO | 0N1ERXNGKDE4W | Adding Beezup Marketplace Information to Order
2132
+ 2015-07-10 11:14:21 | INFO | 0N1ERXNGKDE4W | Sending Magento Order Id to Beezup, Magento Order Id: 163
2133
+ 2015-07-10 11:14:22 | INFO | 0N1ERXNGKDE4W | Setting Order Status to Shipped
2134
+ 2015-07-10 11:14:22 | INFO | 0N1ERXNGKDE4W | Generating Order Payment Invoice
2135
+ 2015-07-10 11:14:22 | INFO | 0N1ERXNGKDE4W | Order Payment Invoice Generated Succesfully
2136
+ 2015-07-10 11:14:23 | INFO | 0N1ERXNGKDE4W | Order imported succesfully, Magento Order Id: 163
2137
+ 2015-07-10 11:14:23 | INFO | OM Importation finalized succesfully
2138
+ 2015-07-10 11:27:08 | INFO | Initializing OM Importation
2139
+ 2015-07-10 11:27:16 | INFO | 321713416169-1471698439011 | Initializing Order - Link: /orders/v1/065f94c5-5a4a-42ab-8b0a-f675de229841/Ebay/1065/8D2886F209F395929872aa1a7a24286811e8ec8ebb26dac
2140
+ 2015-07-10 11:27:16 | INFO | 321713416169-1471698439011 | Store Matching succesful, Beezup Store: 1e5a89de-f525-4f86-8444-730c3cec6399 , Magento Store Id: 1
2141
+ 2015-07-10 11:27:16 | ERROR | 321713416169-1471698439011| No Product Matching, Product 2144 could not be found
2142
+ 2015-07-10 11:27:17 | INFO | 321713416169-1471698439011 | Generating Order
2143
+ 2015-07-10 11:27:17 | INFO | 321713416169-1471698439011 | Adding 1 product/s with id 936 to order, with Beezup Price: 39.58
2144
+ 2015-07-10 11:27:17 | INFO | 321713416169-1471698439011 | Adding Order Shipping Cost: 0
2145
+ 2015-07-10 11:27:18 | INFO | 321713416169-1471698439011 | Adding Beezup Marketplace Information to Order
2146
+ 2015-07-10 11:27:18 | INFO | 321713416169-1471698439011 | Sending Magento Order Id to Beezup, Magento Order Id: 164
2147
+ 2015-07-10 11:27:19 | INFO | 321713416169-1471698439011 | Setting Order Status to InProgress
2148
+ 2015-07-10 11:27:19 | INFO | 321713416169-1471698439011 | Generating Order Payment Invoice
2149
+ 2015-07-10 11:27:20 | INFO | 321713416169-1471698439011 | Order Payment Invoice Generated Succesfully
2150
+ 2015-07-10 11:27:20 | INFO | 321713416169-1471698439011 | Order imported succesfully, Magento Order Id: 164
2151
+ 2015-07-10 11:27:21 | INFO | 206724319 | Initializing Order - Link: /orders/v1/065f94c5-5a4a-42ab-8b0a-f675de229841/PriceMinister/1494/8D28813BEA9797534d087932d474529b0df30bc035a1ea9
2152
+ 2015-07-10 11:27:21 | INFO | 206724319 | Store Matching succesful, Beezup Store: 1e5a89de-f525-4f86-8444-730c3cec6399 , Magento Store Id: 1
2153
+ 2015-07-10 11:27:21 | ERROR | 206724319| No Product Matching, Product 1217 could not be found
2154
+ 2015-07-10 11:27:21 | INFO | 206724319 | Store Matching succesful, Beezup Store: 1e5a89de-f525-4f86-8444-730c3cec6399 , Magento Store Id: 1
2155
+ 2015-07-10 11:27:22 | INFO | 206724319 | Product Matching succesful, Beezup Imported Id: 728 , Magento Product Id: 728
2156
+ 2015-07-10 11:27:22 | INFO | 206724319 | Generating Order
2157
+ 2015-07-10 11:27:22 | INFO | 206724319 | Adding 1 product/s with id 937 to order, with Beezup Price: 5.99
2158
+ 2015-07-10 11:27:22 | INFO | 206724319 | Adding 1 product/s with id 728 to order, with Beezup Price: 4.99
2159
+ 2015-07-10 11:27:22 | INFO | 206724319 | Product 728 Stock = 0, Updating to 1 to generate Order
2160
+ 2015-07-10 11:27:22 | INFO | 206724319 | Adding Order Shipping Cost: 3.8
2161
+ 2015-07-10 11:27:23 | INFO | 206724319 | Adding Beezup Marketplace Information to Order
2162
+ 2015-07-10 11:27:23 | INFO | 206724319 | Sending Magento Order Id to Beezup, Magento Order Id: 165
2163
+ 2015-07-10 11:27:24 | INFO | 206724319 | Setting Order Status to InProgress
2164
+ 2015-07-10 11:27:24 | INFO | 206724319 | Generating Order Payment Invoice
2165
+ 2015-07-10 11:27:25 | INFO | 206724319 | Order Payment Invoice Generated Succesfully
2166
+ 2015-07-10 11:27:25 | INFO | 206724319 | Order imported succesfully, Magento Order Id: 165
2167
+ 2015-07-10 11:27:26 | INFO | 206656466 | Initializing Order - Link: /orders/v1/065f94c5-5a4a-42ab-8b0a-f675de229841/PriceMinister/1494/8D286F6957FA7298866f53835454a66b7e42aa7cbc59ce0
2168
+ 2015-07-10 11:27:26 | INFO | 206656466 | Store Matching succesful, Beezup Store: 1e5a89de-f525-4f86-8444-730c3cec6399 , Magento Store Id: 1
2169
+ 2015-07-10 11:27:27 | ERROR | 206656466| No Product Matching, Product 5683 could not be found
2170
+ 2015-07-10 11:27:27 | INFO | 206656466 | Generating Order
2171
+ 2015-07-10 11:27:27 | INFO | 206656466 | Adding 1 product/s with id 938 to order, with Beezup Price: 6.99
2172
+ 2015-07-10 11:27:27 | INFO | 206656466 | Adding Order Shipping Cost: 2.7
2173
+ 2015-07-10 11:27:28 | INFO | 206656466 | Adding Beezup Marketplace Information to Order
2174
+ 2015-07-10 11:27:28 | INFO | 206656466 | Sending Magento Order Id to Beezup, Magento Order Id: 166
2175
+ 2015-07-10 11:27:29 | INFO | 206656466 | Setting Order Status to Shipped
2176
+ 2015-07-10 11:27:29 | INFO | 206656466 | Generating Order Payment Invoice
2177
+ 2015-07-10 11:27:30 | INFO | 206656466 | Order Payment Invoice Generated Succesfully
2178
+ 2015-07-10 11:27:30 | INFO | 206656466 | Order imported succesfully, Magento Order Id: 166
2179
+ 2015-07-10 11:27:31 | INFO | 206672885 | Initializing Order - Link: /orders/v1/065f94c5-5a4a-42ab-8b0a-f675de229841/PriceMinister/1494/8D2874A75526C6Ae41e492874be46988c1aab55cd3fc895
2180
+ 2015-07-10 11:27:31 | INFO | 206672885 | Store Matching succesful, Beezup Store: 1e5a89de-f525-4f86-8444-730c3cec6399 , Magento Store Id: 1
2181
+ 2015-07-10 11:27:31 | ERROR | 206672885| No Product Matching, Product 2776 could not be found
2182
+ 2015-07-10 11:27:32 | INFO | 206672885 | Store Matching succesful, Beezup Store: 1e5a89de-f525-4f86-8444-730c3cec6399 , Magento Store Id: 1
2183
+ 2015-07-10 11:27:32 | ERROR | 206672885| No Product Matching, Product 1386 could not be found
2184
+ 2015-07-10 11:27:32 | INFO | 206672885 | Store Matching succesful, Beezup Store: 1e5a89de-f525-4f86-8444-730c3cec6399 , Magento Store Id: 1
2185
+ 2015-07-10 11:27:32 | ERROR | 206672885| No Product Matching, Product 4383 could not be found
2186
+ 2015-07-10 11:27:33 | INFO | 206672885 | Generating Order
2187
+ 2015-07-10 11:27:33 | INFO | 206672885 | Adding 1 product/s with id 939 to order, with Beezup Price: 6.99
2188
+ 2015-07-10 11:27:33 | INFO | 206672885 | Adding 1 product/s with id 940 to order, with Beezup Price: 4.99
2189
+ 2015-07-10 11:27:33 | INFO | 206672885 | Adding 1 product/s with id 941 to order, with Beezup Price: 6.99
2190
+ 2015-07-10 11:27:33 | INFO | 206672885 | Adding Order Shipping Cost: 6.8
2191
+ 2015-07-10 11:27:34 | INFO | 206672885 | Adding Beezup Marketplace Information to Order
2192
+ 2015-07-10 11:27:34 | INFO | 206672885 | Sending Magento Order Id to Beezup, Magento Order Id: 167
2193
+ 2015-07-10 11:27:36 | INFO | 206672885 | Setting Order Status to Shipped
2194
+ 2015-07-10 11:27:36 | INFO | 206672885 | Generating Order Payment Invoice
2195
+ 2015-07-10 11:27:36 | INFO | 206672885 | Order Payment Invoice Generated Succesfully
2196
+ 2015-07-10 11:27:36 | INFO | 206672885 | Order imported succesfully, Magento Order Id: 167
2197
+ 2015-07-10 11:27:37 | INFO | 203328488 | Initializing Order - Link: /orders/v1/065f94c5-5a4a-42ab-8b0a-f675de229841/PriceMinister/1494/8D285427E3B0F9Fb31546de60484b9bb188e596a0583cf4
2198
+ 2015-07-10 11:27:37 | INFO | 203328488 | Store Matching succesful, Beezup Store: 1e5a89de-f525-4f86-8444-730c3cec6399 , Magento Store Id: 1
2199
+ 2015-07-10 11:27:37 | ERROR | 203328488| No Product Matching, Product 5678 could not be found
2200
+ 2015-07-10 11:27:38 | INFO | 203328488 | Generating Order
2201
+ 2015-07-10 11:27:38 | INFO | 203328488 | Adding 1 product/s with id 942 to order, with Beezup Price: 9.99
2202
+ 2015-07-10 11:27:38 | INFO | 203328488 | Adding Order Shipping Cost: 2.7
2203
+ 2015-07-10 11:27:39 | INFO | 203328488 | Adding Beezup Marketplace Information to Order
2204
+ 2015-07-10 11:27:39 | INFO | 203328488 | Sending Magento Order Id to Beezup, Magento Order Id: 168
2205
+ 2015-07-10 11:27:40 | INFO | 203328488 | Setting Order Status to Shipped
2206
+ 2015-07-10 11:27:40 | INFO | 203328488 | Generating Order Payment Invoice
2207
+ 2015-07-10 11:27:41 | INFO | 203328488 | Order Payment Invoice Generated Succesfully
2208
+ 2015-07-10 11:27:41 | INFO | 203328488 | Order imported succesfully, Magento Order Id: 168
2209
+ 2015-07-10 11:27:42 | INFO | 206498446 | Initializing Order - Link: /orders/v1/065f94c5-5a4a-42ab-8b0a-f675de229841/PriceMinister/1494/8D285EAAD18D5E9b0d76988c8084ac2b7c14c2f95ed2cec
2210
+ 2015-07-10 11:27:42 | INFO | 206498446 | Store Matching succesful, Beezup Store: 1e5a89de-f525-4f86-8444-730c3cec6399 , Magento Store Id: 1
2211
+ 2015-07-10 11:27:42 | ERROR | 206498446| No Product Matching, Product 1028 could not be found
2212
+ 2015-07-10 11:27:42 | INFO | 206498446 | Generating Order
2213
+ 2015-07-10 11:27:42 | INFO | 206498446 | Adding 1 product/s with id 943 to order, with Beezup Price: 7.99
2214
+ 2015-07-10 11:27:42 | INFO | 206498446 | Adding Order Shipping Cost: 2.7
2215
+ 2015-07-10 11:27:43 | INFO | 206498446 | Adding Beezup Marketplace Information to Order
2216
+ 2015-07-10 11:27:43 | INFO | 206498446 | Sending Magento Order Id to Beezup, Magento Order Id: 169
2217
+ 2015-07-10 11:27:45 | INFO | 206498446 | Setting Order Status to Shipped
2218
+ 2015-07-10 11:27:45 | INFO | 206498446 | Generating Order Payment Invoice
2219
+ 2015-07-10 11:27:45 | INFO | 206498446 | Order Payment Invoice Generated Succesfully
2220
+ 2015-07-10 11:27:45 | INFO | 206498446 | Order imported succesfully, Magento Order Id: 169
2221
+ 2015-07-10 11:27:47 | INFO | 206340456 | Initializing Order - Link: /orders/v1/065f94c5-5a4a-42ab-8b0a-f675de229841/PriceMinister/1494/8D2854AC6DC4DA84f5ea9a5c19d435d9ee2bf64daab8b53
2222
+ 2015-07-10 11:27:47 | INFO | 206340456 | Store Matching succesful, Beezup Store: 1e5a89de-f525-4f86-8444-730c3cec6399 , Magento Store Id: 1
2223
+ 2015-07-10 11:27:47 | ERROR | 206340456| No Product Matching, Product 1746 could not be found
2224
+ 2015-07-10 11:27:48 | INFO | 206340456 | Generating Order
2225
+ 2015-07-10 11:27:48 | INFO | 206340456 | Adding 1 product/s with id 944 to order, with Beezup Price: 7.99
2226
+ 2015-07-10 11:27:48 | INFO | 206340456 | Adding Order Shipping Cost: 2.7
2227
+ 2015-07-10 11:27:49 | INFO | 206340456 | Adding Beezup Marketplace Information to Order
2228
+ 2015-07-10 11:27:49 | INFO | 206340456 | Sending Magento Order Id to Beezup, Magento Order Id: 170
2229
+ 2015-07-10 11:27:51 | INFO | 206340456 | Setting Order Status to Shipped
2230
+ 2015-07-10 11:27:51 | INFO | 206340456 | Generating Order Payment Invoice
2231
+ 2015-07-10 11:27:51 | INFO | 206340456 | Order Payment Invoice Generated Succesfully
2232
+ 2015-07-10 11:27:51 | INFO | 206340456 | Order imported succesfully, Magento Order Id: 170
2233
+ 2015-07-10 11:27:53 | INFO | 206430931 | Initializing Order - Link: /orders/v1/065f94c5-5a4a-42ab-8b0a-f675de229841/PriceMinister/1494/8D285538E4E587E0bcb4c19654f472da31a0b9c286c9c3a
2234
+ 2015-07-10 11:27:53 | INFO | 206430931 | Store Matching succesful, Beezup Store: 1e5a89de-f525-4f86-8444-730c3cec6399 , Magento Store Id: 1
2235
+ 2015-07-10 11:27:53 | ERROR | 206430931| No Product Matching, Product 2592 could not be found
2236
+ 2015-07-10 11:27:54 | INFO | 206430931 | Store Matching succesful, Beezup Store: 1e5a89de-f525-4f86-8444-730c3cec6399 , Magento Store Id: 1
2237
+ 2015-07-10 11:27:54 | ERROR | 206430931| No Product Matching, Product 2804 could not be found
2238
+ 2015-07-10 11:27:54 | INFO | 206430931 | Store Matching succesful, Beezup Store: 1e5a89de-f525-4f86-8444-730c3cec6399 , Magento Store Id: 1
2239
+ 2015-07-10 11:27:54 | ERROR | 206430931| No Product Matching, Product 3266 could not be found
2240
+ 2015-07-10 11:27:55 | INFO | 206430931 | Generating Order
2241
+ 2015-07-10 11:27:55 | INFO | 206430931 | Adding 1 product/s with id 945 to order, with Beezup Price: 6.99
2242
+ 2015-07-10 11:27:55 | INFO | 206430931 | Adding 1 product/s with id 946 to order, with Beezup Price: 6.99
2243
+ 2015-07-10 11:27:55 | INFO | 206430931 | Adding 1 product/s with id 947 to order, with Beezup Price: 14.99
2244
+ 2015-07-10 11:27:55 | INFO | 206430931 | Adding Order Shipping Cost: 8.9
2245
+ 2015-07-10 11:27:56 | INFO | 206430931 | Adding Beezup Marketplace Information to Order
2246
+ 2015-07-10 11:27:56 | INFO | 206430931 | Sending Magento Order Id to Beezup, Magento Order Id: 171
2247
+ 2015-07-10 11:27:57 | INFO | 206430931 | Setting Order Status to Shipped
2248
+ 2015-07-10 11:27:57 | INFO | 206430931 | Generating Order Payment Invoice
2249
+ 2015-07-10 11:27:58 | INFO | 206430931 | Order Payment Invoice Generated Succesfully
2250
+ 2015-07-10 11:27:58 | INFO | 206430931 | Order imported succesfully, Magento Order Id: 171
2251
+ 2015-07-10 11:27:59 | INFO | 221732312688-1580802092012 | Initializing Order - Link: /orders/v1/065f94c5-5a4a-42ab-8b0a-f675de229841/Ebay/2588/8D28625396D34CBf3a3c89ff65549c781de7916675f1e34
2252
+ 2015-07-10 11:27:59 | ERROR | 221732312688-1580802092012 | No mapping for store 018009be-bf68-4d43-b5f8-f927de15d2ee
2253
+ 2015-07-10 11:28:01 | INFO | 321713415900-1464483626011 | Initializing Order - Link: /orders/v1/065f94c5-5a4a-42ab-8b0a-f675de229841/Ebay/2588/8D28468E1EBBAFEc272d5e372684b09ae9638e0aad5879b
2254
+ 2015-07-10 11:28:01 | ERROR | 321713415900-1464483626011 | No mapping for store 018009be-bf68-4d43-b5f8-f927de15d2ee
2255
+ 2015-07-10 11:28:03 | INFO | 221732312688-1580802092012 | Initializing Order - Link: /orders/v1/065f94c5-5a4a-42ab-8b0a-f675de229841/Ebay/1065/8D286245D9372287c5c8987c1734f40a7bd9f328298f590
2256
+ 2015-07-10 11:28:03 | INFO | 221732312688-1580802092012 | Store Matching succesful, Beezup Store: 1e5a89de-f525-4f86-8444-730c3cec6399 , Magento Store Id: 1
2257
+ 2015-07-10 11:28:03 | ERROR | 221732312688-1580802092012| No Product Matching, Product 1852 could not be found
2258
+ 2015-07-10 11:28:04 | INFO | 221732312688-1580802092012 | Generating Order
2259
+ 2015-07-10 11:28:04 | INFO | 221732312688-1580802092012 | Adding 1 product/s with id 948 to order, with Beezup Price: 6.99
2260
+ 2015-07-10 11:28:04 | INFO | 221732312688-1580802092012 | Adding Order Shipping Cost: 3.99
2261
+ 2015-07-10 11:28:05 | INFO | 221732312688-1580802092012 | Adding Beezup Marketplace Information to Order
2262
+ 2015-07-10 11:28:05 | INFO | 221732312688-1580802092012 | Sending Magento Order Id to Beezup, Magento Order Id: 172
2263
+ 2015-07-10 11:28:06 | INFO | 221732312688-1580802092012 | Setting Order Status to Shipped
2264
+ 2015-07-10 11:28:06 | INFO | 221732312688-1580802092012 | Generating Order Payment Invoice
2265
+ 2015-07-10 11:28:07 | INFO | 221732312688-1580802092012 | Order Payment Invoice Generated Succesfully
2266
+ 2015-07-10 11:28:07 | INFO | 221732312688-1580802092012 | Order imported succesfully, Magento Order Id: 172
2267
+ 2015-07-10 11:28:11 | INFO | 321713415900-1464483626011 | Initializing Order - Link: /orders/v1/065f94c5-5a4a-42ab-8b0a-f675de229841/Ebay/1065/8D284684AA9D3A1c90491ab08464299b235c97ae67a3437
2268
+ 2015-07-10 11:28:11 | INFO | 321713415900-1464483626011 | Store Matching succesful, Beezup Store: 1e5a89de-f525-4f86-8444-730c3cec6399 , Magento Store Id: 1
2269
+ 2015-07-10 11:28:11 | ERROR | 321713415900-1464483626011| No Product Matching, Product 1207 could not be found
2270
+ 2015-07-10 11:28:11 | INFO | 321713415900-1464483626011 | Generating Order
2271
+ 2015-07-10 11:28:11 | INFO | 321713415900-1464483626011 | Adding 1 product/s with id 949 to order, with Beezup Price: 4.99
2272
+ 2015-07-10 11:28:11 | INFO | 321713415900-1464483626011 | Adding Order Shipping Cost: 3.99
2273
+ 2015-07-10 11:28:12 | INFO | 321713415900-1464483626011 | Adding Beezup Marketplace Information to Order
2274
+ 2015-07-10 11:28:12 | INFO | 321713415900-1464483626011 | Sending Magento Order Id to Beezup, Magento Order Id: 173
2275
+ 2015-07-10 11:28:16 | INFO | 321713415900-1464483626011 | Setting Order Status to Shipped
2276
+ 2015-07-10 11:28:16 | INFO | 321713415900-1464483626011 | Generating Order Payment Invoice
2277
+ 2015-07-10 11:28:17 | INFO | 321713415900-1464483626011 | Order Payment Invoice Generated Succesfully
2278
+ 2015-07-10 11:28:17 | INFO | 321713415900-1464483626011 | Order imported succesfully, Magento Order Id: 173
2279
+ 2015-07-10 11:28:18 | INFO | 221731936448-1589528113012 | Initializing Order - Link: /orders/v1/065f94c5-5a4a-42ab-8b0a-f675de229841/Ebay/2588/8D286362CEEC5935891615714c545739aef82671d4c15a7
2280
+ 2015-07-10 11:28:18 | ERROR | 221731936448-1589528113012 | No mapping for store 018009be-bf68-4d43-b5f8-f927de15d2ee
2281
+ 2015-07-10 11:28:20 | INFO | 221731936448-1589528113012 | Initializing Order - Link: /orders/v1/065f94c5-5a4a-42ab-8b0a-f675de229841/Ebay/1065/8D286354C22B22Db766bd57ee9c41d88d63a3cb4ea9e652
2282
+ 2015-07-10 11:28:20 | INFO | 221731936448-1589528113012 | Store Matching succesful, Beezup Store: 1e5a89de-f525-4f86-8444-730c3cec6399 , Magento Store Id: 1
2283
+ 2015-07-10 11:28:20 | ERROR | 221731936448-1589528113012| No Product Matching, Product could not be found
2284
+ 2015-07-10 11:28:21 | INFO | 221731936448-1589528113012 | Generating Order
2285
+ 2015-07-10 11:28:21 | INFO | 221731936448-1589528113012 | Adding 1 product/s with id 950 to order, with Beezup Price: 45.99
2286
+ 2015-07-10 11:28:21 | INFO | 221731936448-1589528113012 | Adding Order Shipping Cost: 0
2287
+ 2015-07-10 11:28:22 | INFO | 221731936448-1589528113012 | Adding Beezup Marketplace Information to Order
2288
+ 2015-07-10 11:28:22 | INFO | 221731936448-1589528113012 | Sending Magento Order Id to Beezup, Magento Order Id: 174
2289
+ 2015-07-10 11:28:23 | INFO | 221731936448-1589528113012 | Setting Order Status to InProgress
2290
+ 2015-07-10 11:28:23 | INFO | 221731936448-1589528113012 | Generating Order Payment Invoice
2291
+ 2015-07-10 11:28:24 | INFO | 221731936448-1589528113012 | Order Payment Invoice Generated Succesfully
2292
+ 2015-07-10 11:28:24 | INFO | 221731936448-1589528113012 | Order imported succesfully, Magento Order Id: 174
2293
+ 2015-07-10 11:28:26 | INFO | 191043665018 | Initializing Order - Link: /orders/v1/065f94c5-5a4a-42ab-8b0a-f675de229841/Ebay/2588/8D268A64D3F9BF7496523f44e5d43d6bca1cd349c80e025
2294
+ 2015-07-10 11:28:26 | ERROR | 191043665018 | No mapping for store 018009be-bf68-4d43-b5f8-f927de15d2ee
2295
+ 2015-07-10 11:28:27 | INFO | 191043665018 | Initializing Order - Link: /orders/v1/065f94c5-5a4a-42ab-8b0a-f675de229841/Ebay/1065/8D268A49711B97Abb4ff07cdaa1464eb26a629a44b51476
2296
+ 2015-07-10 11:28:27 | INFO | 191043665018 | Store Matching succesful, Beezup Store: 1e5a89de-f525-4f86-8444-730c3cec6399 , Magento Store Id: 1
2297
+ 2015-07-10 11:28:27 | ERROR | 191043665018| No Product Matching, Product could not be found
2298
+ 2015-07-10 11:28:28 | INFO | 191043665018 | Store Matching succesful, Beezup Store: 1e5a89de-f525-4f86-8444-730c3cec6399 , Magento Store Id: 1
2299
+ 2015-07-10 11:28:28 | ERROR | 191043665018| No Product Matching, Product could not be found
2300
+ 2015-07-10 11:28:29 | INFO | 191043665018 | Generating Order
2301
+ 2015-07-10 11:28:29 | INFO | 191043665018 | Adding 1 product/s with id 951 to order, with Beezup Price: 39.99
2302
+ 2015-07-10 11:28:29 | INFO | 191043665018 | Adding 1 product/s with id 952 to order, with Beezup Price: 6.99
2303
+ 2015-07-10 11:28:29 | INFO | 191043665018 | Adding Order Shipping Cost: 10
2304
+ 2015-07-10 11:28:30 | INFO | 191043665018 | Adding Beezup Marketplace Information to Order
2305
+ 2015-07-10 11:28:30 | INFO | 191043665018 | Sending Magento Order Id to Beezup, Magento Order Id: 175
2306
+ 2015-07-10 11:28:31 | INFO | 191043665018 | Setting Order Status to Shipped
2307
+ 2015-07-10 11:28:31 | INFO | 191043665018 | Generating Order Payment Invoice
2308
+ 2015-07-10 11:28:31 | INFO | 191043665018 | Order Payment Invoice Generated Succesfully
2309
+ 2015-07-10 11:28:32 | INFO | 191043665018 | Order imported succesfully, Magento Order Id: 175
2310
+ 2015-07-10 11:28:33 | INFO | 321796189776-1468715361011 | Initializing Order - Link: /orders/v1/065f94c5-5a4a-42ab-8b0a-f675de229841/Ebay/2588/8D2821EA65B2C0A6c3425d3db174fe78230c9ae3765421e
2311
+ 2015-07-10 11:28:33 | ERROR | 321796189776-1468715361011 | No mapping for store 018009be-bf68-4d43-b5f8-f927de15d2ee
2312
+ 2015-07-10 11:28:34 | INFO | 321796189776-1468715361011 | Initializing Order - Link: /orders/v1/065f94c5-5a4a-42ab-8b0a-f675de229841/Ebay/1065/8D2821D8355986A35887fb94ab64d3793b88509657cbfed
2313
+ 2015-07-10 11:28:34 | INFO | 321796189776-1468715361011 | Store Matching succesful, Beezup Store: 1e5a89de-f525-4f86-8444-730c3cec6399 , Magento Store Id: 1
2314
+ 2015-07-10 11:28:34 | ERROR | 321796189776-1468715361011| No Product Matching, Product 5881 could not be found
2315
+ 2015-07-10 11:28:35 | INFO | 321796189776-1468715361011 | Generating Order
2316
+ 2015-07-10 11:28:35 | INFO | 321796189776-1468715361011 | Adding 1 product/s with id 953 to order, with Beezup Price: 15.98
2317
+ 2015-07-10 11:28:35 | INFO | 321796189776-1468715361011 | Adding Order Shipping Cost: 0
2318
+ 2015-07-10 11:28:35 | INFO | 321796189776-1468715361011 | Adding Beezup Marketplace Information to Order
2319
+ 2015-07-10 11:28:35 | INFO | 321796189776-1468715361011 | Sending Magento Order Id to Beezup, Magento Order Id: 176
2320
+ 2015-07-10 11:28:37 | INFO | 321796189776-1468715361011 | Setting Order Status to Shipped
2321
+ 2015-07-10 11:28:37 | INFO | 321796189776-1468715361011 | Generating Order Payment Invoice
2322
+ 2015-07-10 11:28:37 | INFO | 321796189776-1468715361011 | Order Payment Invoice Generated Succesfully
2323
+ 2015-07-10 11:28:38 | INFO | 321796189776-1468715361011 | Order imported succesfully, Magento Order Id: 176
2324
+ 2015-07-10 11:28:38 | INFO | OM Importation finalized succesfully
2325
+ 2015-07-10 11:39:57 | INFO | Initializing OM Importation
2326
+ 2015-07-10 11:40:02 | INFO | 15071009295TV47 | Initializing Order - Link: /orders/v1/7fa50176-b2e9-4570-9cce-20b2ff7bd6d0/CDiscount/1162/8D288FDD0458984142c7fa0065a498fa114eb1ff1db96b9
2327
+ 2015-07-10 11:40:02 | INFO | 15071009295TV47 | Store Matching succesful, Beezup Store: c466247e-aadf-443c-b8ed-dedce8b281b7 , Magento Store Id: 1
2328
+ 2015-07-10 11:40:02 | ERROR | 15071009295TV47| No Product Matching, Product 69803441 could not be found
2329
+ 2015-07-10 11:40:03 | INFO | 15071009295TV47 | Generating Order
2330
+ 2015-07-10 11:40:03 | INFO | 15071009295TV47 | Adding 1 product/s with id 954 to order, with Beezup Price: 1538.89
2331
+ 2015-07-10 11:40:03 | INFO | 15071009295TV47 | Adding Order Shipping Cost: 190
2332
+ 2015-07-10 11:40:04 | INFO | 15071009295TV47 | Adding Beezup Marketplace Information to Order
2333
+ 2015-07-10 11:40:04 | INFO | 15071009295TV47 | Sending Magento Order Id to Beezup, Magento Order Id: 177
2334
+ 2015-07-10 11:40:07 | INFO | 15071009295TV47 | Setting Order Status to InProgress
2335
+ 2015-07-10 11:40:07 | INFO | 15071009295TV47 | Generating Order Payment Invoice
2336
+ 2015-07-10 11:40:07 | INFO | 15071009295TV47 | Order Payment Invoice Generated Succesfully
2337
+ 2015-07-10 11:40:08 | INFO | 15071009295TV47 | Order imported succesfully, Magento Order Id: 177
2338
+ 2015-07-10 11:40:09 | INFO | MOR-3740EM21091342 | Initializing Order - Link: /orders/v1/7fa50176-b2e9-4570-9cce-20b2ff7bd6d0/RueDuCo/1910/8D285F230C81912f22ecd999eab4cc5a1b9fd4f00d0fca5
2339
+ 2015-07-10 11:40:09 | INFO | MOR-3740EM21091342 | Store Matching succesful, Beezup Store: c466247e-aadf-443c-b8ed-dedce8b281b7 , Magento Store Id: 1
2340
+ 2015-07-10 11:40:09 | ERROR | MOR-3740EM21091342| No Product Matching, Product 100000 could not be found
2341
+ 2015-07-10 11:40:09 | INFO | MOR-3740EM21091342 | Generating Order
2342
+ 2015-07-10 11:40:09 | INFO | MOR-3740EM21091342 | Adding 1 product/s with id 955 to order, with Beezup Price: 186
2343
+ 2015-07-10 11:40:09 | INFO | MOR-3740EM21091342 | Adding Order Shipping Cost: 50.16
2344
+ 2015-07-10 11:40:10 | INFO | MOR-3740EM21091342 | Adding Beezup Marketplace Information to Order
2345
+ 2015-07-10 11:40:10 | INFO | MOR-3740EM21091342 | Sending Magento Order Id to Beezup, Magento Order Id: 178
2346
+ 2015-07-10 11:40:12 | INFO | MOR-3740EM21091342 | Setting Order Status to New
2347
+ 2015-07-10 11:40:12 | INFO | MOR-3740EM21091342 | Order imported succesfully, Magento Order Id: 178
2348
+ 2015-07-10 11:40:14 | INFO | 15070600284UE2L | Initializing Order - Link: /orders/v1/7fa50176-b2e9-4570-9cce-20b2ff7bd6d0/CDiscount/1162/8D285B7BAE186BAbc8e056cd998481c872aa704f34c908c
2349
+ 2015-07-10 11:40:14 | INFO | 15070600284UE2L | Store Matching succesful, Beezup Store: c466247e-aadf-443c-b8ed-dedce8b281b7 , Magento Store Id: 1
2350
+ 2015-07-10 11:40:14 | ERROR | 15070600284UE2L| No Product Matching, Product 600000 could not be found
2351
+ 2015-07-10 11:40:15 | INFO | 15070600284UE2L | Store Matching succesful, Beezup Store: c466247e-aadf-443c-b8ed-dedce8b281b7 , Magento Store Id: 1
2352
+ 2015-07-10 11:40:15 | ERROR | 15070600284UE2L| No Product Matching, Product 1200000 could not be found
2353
+ 2015-07-10 11:40:15 | INFO | 15070600284UE2L | Generating Order
2354
+ 2015-07-10 11:40:15 | INFO | 15070600284UE2L | Adding 1 product/s with id 956 to order, with Beezup Price: 138.06
2355
+ 2015-07-10 11:40:15 | INFO | 15070600284UE2L | Adding 1 product/s with id 957 to order, with Beezup Price: 158.14
2356
+ 2015-07-10 11:40:15 | INFO | 15070600284UE2L | Adding Order Shipping Cost: 50.16
2357
+ 2015-07-10 11:40:17 | INFO | 15070600284UE2L | Adding Beezup Marketplace Information to Order
2358
+ 2015-07-10 11:40:17 | INFO | 15070600284UE2L | Sending Magento Order Id to Beezup, Magento Order Id: 179
2359
+ 2015-07-10 11:40:18 | INFO | 15070600284UE2L | Setting Order Status to InProgress
2360
+ 2015-07-10 11:40:18 | INFO | 15070600284UE2L | Generating Order Payment Invoice
2361
+ 2015-07-10 11:40:19 | INFO | 15070600284UE2L | Order Payment Invoice Generated Succesfully
2362
+ 2015-07-10 11:40:20 | INFO | 15070600284UE2L | Order imported succesfully, Magento Order Id: 179
2363
+ 2015-07-10 11:40:20 | INFO | OM Importation finalized succesfully
2364
+ 2015-07-10 11:41:45 | INFO | Initializing OM Importation
2365
+ 2015-07-10 11:43:29 | INFO | Initializing OM Importation
2366
+ 2015-07-10 11:46:14 | INFO | Initializing OM Importation
2367
+ 2015-07-10 11:46:19 | INFO | 15071009295TV47 | Initializing Order - Link: /orders/v1/7fa50176-b2e9-4570-9cce-20b2ff7bd6d0/CDiscount/1162/8D288FDD0458984142c7fa0065a498fa114eb1ff1db96b9
2368
+ 2015-07-10 11:46:19 | INFO | 15071009295TV47 | Order Etag has not changed
2369
+ 2015-07-10 11:46:20 | INFO | MOR-3740EM21091342 | Initializing Order - Link: /orders/v1/7fa50176-b2e9-4570-9cce-20b2ff7bd6d0/RueDuCo/1910/8D285F230C81912f22ecd999eab4cc5a1b9fd4f00d0fca5
2370
+ 2015-07-10 11:46:20 | INFO | MOR-3740EM21091342 | Order Etag has not changed
2371
+ 2015-07-10 11:46:22 | INFO | 15070600284UE2L | Initializing Order - Link: /orders/v1/7fa50176-b2e9-4570-9cce-20b2ff7bd6d0/CDiscount/1162/8D285B7BAE186BAbc8e056cd998481c872aa704f34c908c
2372
+ 2015-07-10 11:46:22 | INFO | 15070600284UE2L | Order Etag has not changed
2373
+ 2015-07-10 11:46:24 | INFO | 15062715352Y65U | Initializing Order - Link: /orders/v1/7fa50176-b2e9-4570-9cce-20b2ff7bd6d0/CDiscount/1162/8D27EF8E62ABB829fdfc504c2e540cbad182f93b3b33b99
2374
+ 2015-07-10 11:46:24 | INFO | 15062715352Y65U | Store Matching succesful, Beezup Store: c466247e-aadf-443c-b8ed-dedce8b281b7 , Magento Store Id: 1
2375
+ 2015-07-10 11:46:24 | ERROR | 15062715352Y65U| No Product Matching, Product 66800770 could not be found
2376
+ 2015-07-10 11:46:25 | INFO | 15062715352Y65U | Generating Order
2377
+ 2015-07-10 11:46:25 | INFO | 15062715352Y65U | Adding 1 product/s with id 958 to order, with Beezup Price: 418
2378
+ 2015-07-10 11:46:25 | INFO | 15062715352Y65U | Adding Order Shipping Cost: 60.19
2379
+ 2015-07-10 11:46:26 | INFO | 15062715352Y65U | Adding Beezup Marketplace Information to Order
2380
+ 2015-07-10 11:46:26 | INFO | 15062715352Y65U | Sending Magento Order Id to Beezup, Magento Order Id: 180
2381
+ 2015-07-10 11:46:28 | INFO | 15062715352Y65U | Setting Order Status to Shipped
2382
+ 2015-07-10 11:46:28 | INFO | 15062715352Y65U | Generating Order Payment Invoice
2383
+ 2015-07-10 11:46:28 | INFO | 15062715352Y65U | Order Payment Invoice Generated Succesfully
2384
+ 2015-07-10 11:46:28 | INFO | 15062715352Y65U | Order imported succesfully, Magento Order Id: 180
2385
+ 2015-07-10 11:46:30 | INFO | MOR-3D21CM20963352 | Initializing Order - Link: /orders/v1/7fa50176-b2e9-4570-9cce-20b2ff7bd6d0/RueDuCo/1910/8D27FCA834BD0D33f168511de2740e9a3f4b91b7342bc52
2386
+ 2015-07-10 11:46:30 | INFO | MOR-3D21CM20963352 | Store Matching succesful, Beezup Store: c466247e-aadf-443c-b8ed-dedce8b281b7 , Magento Store Id: 1
2387
+ 2015-07-10 11:46:30 | ERROR | MOR-3D21CM20963352| No Product Matching, Product 172104478 could not be found
2388
+ 2015-07-10 11:46:30 | INFO | MOR-3D21CM20963352 | Generating Order
2389
+ 2015-07-10 11:46:30 | INFO | MOR-3D21CM20963352 | Adding 2 product/s with id 959 to order, with Beezup Price: 30
2390
+ 2015-07-10 11:46:30 | INFO | MOR-3D21CM20963352 | Product 959 Stock = 0, Updating to 2 to generate Order
2391
+ 2015-07-10 11:46:31 | INFO | MOR-3D21CM20963352 | Adding Order Shipping Cost: 52.22
2392
+ 2015-07-10 11:46:32 | INFO | MOR-3D21CM20963352 | Adding Beezup Marketplace Information to Order
2393
+ 2015-07-10 11:46:32 | INFO | MOR-3D21CM20963352 | Sending Magento Order Id to Beezup, Magento Order Id: 181
2394
+ 2015-07-10 11:46:33 | INFO | MOR-3D21CM20963352 | Setting Order Status to Shipped
2395
+ 2015-07-10 11:46:33 | INFO | MOR-3D21CM20963352 | Generating Order Payment Invoice
2396
+ 2015-07-10 11:46:33 | INFO | MOR-3D21CM20963352 | Order Payment Invoice Generated Succesfully
2397
+ 2015-07-10 11:46:33 | INFO | MOR-3D21CM20963352 | Order imported succesfully, Magento Order Id: 181
2398
+ 2015-07-10 11:46:36 | INFO | 403-5121398-6893968 | Initializing Order - Link: /orders/v1/7fa50176-b2e9-4570-9cce-20b2ff7bd6d0/Amazon/827/8D27E2FA210AD89b6349f026ec744bb8549ff4506308b20
2399
+ 2015-07-10 11:46:36 | INFO | 403-5121398-6893968 | Store Matching succesful, Beezup Store: c466247e-aadf-443c-b8ed-dedce8b281b7 , Magento Store Id: 1
2400
+ 2015-07-10 11:46:36 | ERROR | 403-5121398-6893968| No Product Matching, Product 154700000 could not be found
2401
+ 2015-07-10 11:46:37 | INFO | 403-5121398-6893968 | Generating Order
2402
+ 2015-07-10 11:46:37 | INFO | 403-5121398-6893968 | Adding 1 product/s with id 960 to order, with Beezup Price: 550.8
2403
+ 2015-07-10 11:46:37 | INFO | 403-5121398-6893968 | Adding Order Shipping Cost: 2.05
2404
+ 2015-07-10 11:46:38 | INFO | 403-5121398-6893968 | Adding Beezup Marketplace Information to Order
2405
+ 2015-07-10 11:46:38 | INFO | 403-5121398-6893968 | Sending Magento Order Id to Beezup, Magento Order Id: 182
2406
+ 2015-07-10 11:46:39 | INFO | 403-5121398-6893968 | Setting Order Status to Shipped
2407
+ 2015-07-10 11:46:39 | INFO | 403-5121398-6893968 | Generating Order Payment Invoice
2408
+ 2015-07-10 11:46:40 | INFO | 403-5121398-6893968 | Order Payment Invoice Generated Succesfully
2409
+ 2015-07-10 11:46:40 | INFO | 403-5121398-6893968 | Order imported succesfully, Magento Order Id: 182
2410
+ 2015-07-10 11:46:41 | INFO | 171-1381755-2957937 | Initializing Order - Link: /orders/v1/7fa50176-b2e9-4570-9cce-20b2ff7bd6d0/Amazon/827/8D27FA8F00947EF689a24e839574a19939b038507f98a24
2411
+ 2015-07-10 11:46:41 | INFO | 171-1381755-2957937 | Store Matching succesful, Beezup Store: c466247e-aadf-443c-b8ed-dedce8b281b7 , Magento Store Id: 1
2412
+ 2015-07-10 11:46:41 | ERROR | 171-1381755-2957937| No Product Matching, Product 184700000 could not be found
2413
+ 2015-07-10 11:46:42 | INFO | 171-1381755-2957937 | Generating Order
2414
+ 2015-07-10 11:46:42 | INFO | 171-1381755-2957937 | Adding 1 product/s with id 961 to order, with Beezup Price: 154.8
2415
+ 2015-07-10 11:46:42 | INFO | 171-1381755-2957937 | Adding Order Shipping Cost: 2
2416
+ 2015-07-10 11:46:42 | INFO | 171-1381755-2957937 | Adding Beezup Marketplace Information to Order
2417
+ 2015-07-10 11:46:42 | INFO | 171-1381755-2957937 | Sending Magento Order Id to Beezup, Magento Order Id: 183
2418
+ 2015-07-10 11:46:44 | INFO | 171-1381755-2957937 | Setting Order Status to Shipped
2419
+ 2015-07-10 11:46:44 | INFO | 171-1381755-2957937 | Generating Order Payment Invoice
2420
+ 2015-07-10 11:46:44 | INFO | 171-1381755-2957937 | Order Payment Invoice Generated Succesfully
2421
+ 2015-07-10 11:46:45 | INFO | 171-1381755-2957937 | Order imported succesfully, Magento Order Id: 183
2422
+ 2015-07-10 11:46:46 | INFO | 404-5965747-4163562 | Initializing Order - Link: /orders/v1/7fa50176-b2e9-4570-9cce-20b2ff7bd6d0/Amazon/827/8D28037CF4B48E5d507815f7b264b1183247a9a6efb42af
2423
+ 2015-07-10 11:46:46 | INFO | 404-5965747-4163562 | Store Matching succesful, Beezup Store: c466247e-aadf-443c-b8ed-dedce8b281b7 , Magento Store Id: 1
2424
+ 2015-07-10 11:46:46 | INFO | 404-5965747-4163562 | Product Matching succesful, Beezup Imported Id: 1200000 , Magento Product Id: 957
2425
+ 2015-07-10 11:46:46 | INFO | 404-5965747-4163562 | Generating Order
2426
+ 2015-07-10 11:46:46 | INFO | 404-5965747-4163562 | Adding 1 product/s with id 957 to order, with Beezup Price: 160.8
2427
+ 2015-07-10 11:46:46 | INFO | 404-5965747-4163562 | Product 957 Stock = 0, Updating to 1 to generate Order
2428
+ 2015-07-10 11:46:46 | INFO | 404-5965747-4163562 | Adding Order Shipping Cost: 2.02
2429
+ 2015-07-10 11:46:47 | INFO | 404-5965747-4163562 | Adding Beezup Marketplace Information to Order
2430
+ 2015-07-10 11:46:47 | INFO | 404-5965747-4163562 | Sending Magento Order Id to Beezup, Magento Order Id: 184
2431
+ 2015-07-10 11:46:48 | INFO | 404-5965747-4163562 | Setting Order Status to Shipped
2432
+ 2015-07-10 11:46:48 | INFO | 404-5965747-4163562 | Generating Order Payment Invoice
2433
+ 2015-07-10 11:46:48 | INFO | 404-5965747-4163562 | Order Payment Invoice Generated Succesfully
2434
+ 2015-07-10 11:46:49 | INFO | 404-5965747-4163562 | Order imported succesfully, Magento Order Id: 184
2435
+ 2015-07-10 11:46:51 | INFO | 171-9038430-3959504 | Initializing Order - Link: /orders/v1/7fa50176-b2e9-4570-9cce-20b2ff7bd6d0/Amazon/827/8D27FEBF328840564da9071cb5346d1a58ba5f50e9b9bc5
2436
+ 2015-07-10 11:46:51 | INFO | 171-9038430-3959504 | Store Matching succesful, Beezup Store: c466247e-aadf-443c-b8ed-dedce8b281b7 , Magento Store Id: 1
2437
+ 2015-07-10 11:46:51 | INFO | 171-9038430-3959504 | Product Matching succesful, Beezup Imported Id: 1200000 , Magento Product Id: 957
2438
+ 2015-07-10 11:46:51 | INFO | 171-9038430-3959504 | Generating Order
2439
+ 2015-07-10 11:46:51 | ERROR | 171-9038430-3959504| Order could not be imported, error: Stock from Beezup product = 0
2440
+ 2015-07-10 11:46:52 | INFO | OM Importation finalized succesfully
2441
+ 2015-07-13 13:25:28 | INFO | Initializing OM Importation
2442
+ 2015-07-13 13:25:36 | INFO | 404-2250765-5229138 | Initializing Order - Link: /orders/v1/359975a4-3154-4236-bcd4-65032c3181c2/Amazon/1671/8D28B7BD4939142be8a73ad674649cc89eb79e692e48723
2443
+ 2015-07-13 13:25:36 | INFO | 404-2250765-5229138 | Store Matching succesful, Beezup Store: 4b223780-8139-4e72-a625-c1056f22ecdb , Magento Store Id: 1
2444
+ 2015-07-13 13:25:36 | ERROR | 404-2250765-5229138| No Product Matching, Product 15759 could not be found
2445
+ 2015-07-13 13:25:38 | INFO | 404-2250765-5229138 | Generating Order
2446
+ 2015-07-13 13:25:38 | INFO | 404-2250765-5229138 | Adding 1 product/s with id 962 to order, with Beezup Price: 23
2447
+ 2015-07-13 13:25:38 | INFO | 404-2250765-5229138 | Adding Order Shipping Cost: 0
2448
+ 2015-07-13 13:25:40 | INFO | 404-2250765-5229138 | Adding Beezup Marketplace Information to Order
2449
+ 2015-07-13 13:25:40 | INFO | 404-2250765-5229138 | Sending Magento Order Id to Beezup, Magento Order Id: 185
2450
+ 2015-07-13 13:25:42 | INFO | 404-2250765-5229138 | Setting Order Status to Shipped
2451
+ 2015-07-13 13:25:42 | INFO | 404-2250765-5229138 | Generating Order Payment Invoice
2452
+ 2015-07-13 13:25:42 | INFO | 404-2250765-5229138 | Order Payment Invoice Generated Succesfully
2453
+ 2015-07-13 13:25:42 | INFO | 404-2250765-5229138 | Order imported succesfully, Magento Order Id: 185
2454
+ 2015-07-13 13:25:44 | INFO | 403-5263753-2327520 | Initializing Order - Link: /orders/v1/359975a4-3154-4236-bcd4-65032c3181c2/Amazon/1671/8D28B5172E8B582d472b3df50ac4c6c8c148e454fa4046c
2455
+ 2015-07-13 13:25:44 | INFO | 403-5263753-2327520 | Store Matching succesful, Beezup Store: 4b223780-8139-4e72-a625-c1056f22ecdb , Magento Store Id: 1
2456
+ 2015-07-13 13:25:44 | ERROR | 403-5263753-2327520| No Product Matching, Product 14801 could not be found
2457
+ 2015-07-13 13:25:44 | INFO | 403-5263753-2327520 | Generating Order
2458
+ 2015-07-13 13:25:44 | INFO | 403-5263753-2327520 | Adding 1 product/s with id 963 to order, with Beezup Price: 12
2459
+ 2015-07-13 13:25:44 | INFO | 403-5263753-2327520 | Adding Order Shipping Cost: 3
2460
+ 2015-07-13 13:25:45 | INFO | 403-5263753-2327520 | Adding Beezup Marketplace Information to Order
2461
+ 2015-07-13 13:25:45 | INFO | 403-5263753-2327520 | Sending Magento Order Id to Beezup, Magento Order Id: 186
2462
+ 2015-07-13 13:25:46 | INFO | 403-5263753-2327520 | Setting Order Status to Shipped
2463
+ 2015-07-13 13:25:46 | INFO | 403-5263753-2327520 | Generating Order Payment Invoice
2464
+ 2015-07-13 13:25:46 | INFO | 403-5263753-2327520 | Order Payment Invoice Generated Succesfully
2465
+ 2015-07-13 13:25:46 | INFO | 403-5263753-2327520 | Order imported succesfully, Magento Order Id: 186
2466
+ 2015-07-13 13:25:49 | INFO | 171-4254877-6938727 | Initializing Order - Link: /orders/v1/359975a4-3154-4236-bcd4-65032c3181c2/Amazon/1671/8D289A6A7EF83F64e23f1e270824f40b7a3777046a839b0
2467
+ 2015-07-13 13:25:49 | INFO | 171-4254877-6938727 | Store Matching succesful, Beezup Store: 4b223780-8139-4e72-a625-c1056f22ecdb , Magento Store Id: 1
2468
+ 2015-07-13 13:25:49 | ERROR | 171-4254877-6938727| No Product Matching, Product 15879 could not be found
2469
+ 2015-07-13 13:25:49 | INFO | 171-4254877-6938727 | Generating Order
2470
+ 2015-07-13 13:25:49 | INFO | 171-4254877-6938727 | Adding 1 product/s with id 964 to order, with Beezup Price: 14
2471
+ 2015-07-13 13:25:49 | INFO | 171-4254877-6938727 | Adding Order Shipping Cost: 3
2472
+ 2015-07-13 13:25:50 | INFO | 171-4254877-6938727 | Adding Beezup Marketplace Information to Order
2473
+ 2015-07-13 13:25:50 | INFO | 171-4254877-6938727 | Sending Magento Order Id to Beezup, Magento Order Id: 187
2474
+ 2015-07-13 13:25:52 | INFO | 171-4254877-6938727 | Setting Order Status to Shipped
2475
+ 2015-07-13 13:25:52 | INFO | 171-4254877-6938727 | Generating Order Payment Invoice
2476
+ 2015-07-13 13:25:52 | INFO | 171-4254877-6938727 | Order Payment Invoice Generated Succesfully
2477
+ 2015-07-13 13:25:52 | INFO | 171-4254877-6938727 | Order imported succesfully, Magento Order Id: 187
2478
+ 2015-07-13 13:25:53 | INFO | 403-7857868-4051544 | Initializing Order - Link: /orders/v1/359975a4-3154-4236-bcd4-65032c3181c2/Amazon/1671/8D289F1B8D8E0E3d66d87b5ffcc4fe0a97a21664d695c5a
2479
+ 2015-07-13 13:25:53 | INFO | 403-7857868-4051544 | Store Matching succesful, Beezup Store: 4b223780-8139-4e72-a625-c1056f22ecdb , Magento Store Id: 1
2480
+ 2015-07-13 13:25:53 | ERROR | 403-7857868-4051544| No Product Matching, Product 14585 could not be found
2481
+ 2015-07-13 13:25:54 | INFO | 403-7857868-4051544 | Generating Order
2482
+ 2015-07-13 13:25:54 | INFO | 403-7857868-4051544 | Adding 1 product/s with id 965 to order, with Beezup Price: 14
2483
+ 2015-07-13 13:25:54 | INFO | 403-7857868-4051544 | Adding Order Shipping Cost: 3
2484
+ 2015-07-13 13:25:55 | INFO | 403-7857868-4051544 | Adding Beezup Marketplace Information to Order
2485
+ 2015-07-13 13:25:55 | INFO | 403-7857868-4051544 | Sending Magento Order Id to Beezup, Magento Order Id: 188
2486
+ 2015-07-13 13:25:56 | INFO | 403-7857868-4051544 | Setting Order Status to Shipped
2487
+ 2015-07-13 13:25:56 | INFO | 403-7857868-4051544 | Generating Order Payment Invoice
2488
+ 2015-07-13 13:25:57 | INFO | 403-7857868-4051544 | Order Payment Invoice Generated Succesfully
2489
+ 2015-07-13 13:25:57 | INFO | 403-7857868-4051544 | Order imported succesfully, Magento Order Id: 188
2490
+ 2015-07-13 13:25:59 | INFO | 171-6252312-5143533 | Initializing Order - Link: /orders/v1/359975a4-3154-4236-bcd4-65032c3181c2/Amazon/1671/8D28B517300811Ca782a61d684c4fd7892379ea7bd08e2e
2491
+ 2015-07-13 13:25:59 | INFO | 171-6252312-5143533 | Store Matching succesful, Beezup Store: 4b223780-8139-4e72-a625-c1056f22ecdb , Magento Store Id: 1
2492
+ 2015-07-13 13:25:59 | ERROR | 171-6252312-5143533| No Product Matching, Product 15532 could not be found
2493
+ 2015-07-13 13:25:59 | INFO | 171-6252312-5143533 | Generating Order
2494
+ 2015-07-13 13:25:59 | INFO | 171-6252312-5143533 | Adding 1 product/s with id 966 to order, with Beezup Price: 25
2495
+ 2015-07-13 13:25:59 | INFO | 171-6252312-5143533 | Adding Order Shipping Cost: 0
2496
+ 2015-07-13 13:26:00 | INFO | 171-6252312-5143533 | Adding Beezup Marketplace Information to Order
2497
+ 2015-07-13 13:26:00 | INFO | 171-6252312-5143533 | Sending Magento Order Id to Beezup, Magento Order Id: 189
2498
+ 2015-07-13 13:26:01 | INFO | 171-6252312-5143533 | Setting Order Status to Shipped
2499
+ 2015-07-13 13:26:01 | INFO | 171-6252312-5143533 | Generating Order Payment Invoice
2500
+ 2015-07-13 13:26:01 | INFO | 171-6252312-5143533 | Order Payment Invoice Generated Succesfully
2501
+ 2015-07-13 13:26:01 | INFO | 171-6252312-5143533 | Order imported succesfully, Magento Order Id: 189
2502
+ 2015-07-13 13:26:03 | INFO | 171-7511286-4306703 | Initializing Order - Link: /orders/v1/359975a4-3154-4236-bcd4-65032c3181c2/Amazon/1671/8D28B49398ABF284683c77a672142c2a5506abb96cf6297
2503
+ 2015-07-13 13:26:03 | INFO | 171-7511286-4306703 | Store Matching succesful, Beezup Store: 4b223780-8139-4e72-a625-c1056f22ecdb , Magento Store Id: 1
2504
+ 2015-07-13 13:26:03 | ERROR | 171-7511286-4306703| No Product Matching, Product 13037 could not be found
2505
+ 2015-07-13 13:26:03 | INFO | 171-7511286-4306703 | Generating Order
2506
+ 2015-07-13 13:26:03 | INFO | 171-7511286-4306703 | Adding 1 product/s with id 967 to order, with Beezup Price: 21
2507
+ 2015-07-13 13:26:03 | INFO | 171-7511286-4306703 | Adding Order Shipping Cost: 0
2508
+ 2015-07-13 13:26:04 | INFO | 171-7511286-4306703 | Adding Beezup Marketplace Information to Order
2509
+ 2015-07-13 13:26:04 | INFO | 171-7511286-4306703 | Sending Magento Order Id to Beezup, Magento Order Id: 190
2510
+ 2015-07-13 13:26:06 | INFO | 171-7511286-4306703 | Setting Order Status to Shipped
2511
+ 2015-07-13 13:26:06 | INFO | 171-7511286-4306703 | Generating Order Payment Invoice
2512
+ 2015-07-13 13:26:06 | INFO | 171-7511286-4306703 | Order Payment Invoice Generated Succesfully
2513
+ 2015-07-13 13:26:07 | INFO | 171-7511286-4306703 | Order imported succesfully, Magento Order Id: 190
2514
+ 2015-07-13 13:26:08 | INFO | 403-5143400-5472337 | Initializing Order - Link: /orders/v1/359975a4-3154-4236-bcd4-65032c3181c2/Amazon/1671/8D28AFDCC3D6A448e2510163da8409fa1009c2868305508
2515
+ 2015-07-13 13:26:08 | INFO | 403-5143400-5472337 | Store Matching succesful, Beezup Store: 4b223780-8139-4e72-a625-c1056f22ecdb , Magento Store Id: 1
2516
+ 2015-07-13 13:26:08 | INFO | 403-5143400-5472337 | Product Matching succesful, Beezup Imported Id: 15441 , Magento Product Id: 912
2517
+ 2015-07-13 13:26:08 | INFO | 403-5143400-5472337 | Generating Order
2518
+ 2015-07-13 13:26:08 | ERROR | 403-5143400-5472337| Order could not be imported, error: Stock from Beezup product = 0
2519
+ 2015-07-13 13:26:09 | INFO | 404-9024956-4052307 | Initializing Order - Link: /orders/v1/359975a4-3154-4236-bcd4-65032c3181c2/Amazon/1671/8D28AECE621FD19eb148185035f4e6fa5caa9d562943b32
2520
+ 2015-07-13 13:26:09 | INFO | 404-9024956-4052307 | Store Matching succesful, Beezup Store: 4b223780-8139-4e72-a625-c1056f22ecdb , Magento Store Id: 1
2521
+ 2015-07-13 13:26:09 | ERROR | 404-9024956-4052307| No Product Matching, Product 15010 could not be found
2522
+ 2015-07-13 13:26:09 | INFO | 404-9024956-4052307 | Generating Order
2523
+ 2015-07-13 13:26:09 | INFO | 404-9024956-4052307 | Adding 1 product/s with id 968 to order, with Beezup Price: 14
2524
+ 2015-07-13 13:26:09 | INFO | 404-9024956-4052307 | Adding Order Shipping Cost: 3
2525
+ 2015-07-13 13:26:10 | INFO | 404-9024956-4052307 | Adding Beezup Marketplace Information to Order
2526
+ 2015-07-13 13:26:10 | INFO | 404-9024956-4052307 | Sending Magento Order Id to Beezup, Magento Order Id: 191
2527
+ 2015-07-13 13:26:12 | INFO | 404-9024956-4052307 | Setting Order Status to InProgress
2528
+ 2015-07-13 13:26:12 | INFO | 404-9024956-4052307 | Generating Order Payment Invoice
2529
+ 2015-07-13 13:26:12 | INFO | 404-9024956-4052307 | Order Payment Invoice Generated Succesfully
2530
+ 2015-07-13 13:26:12 | INFO | 404-9024956-4052307 | Order imported succesfully, Magento Order Id: 191
2531
+ 2015-07-13 13:26:13 | INFO | OM Importation finalized succesfully
2532
+ 2015-07-13 13:54:46 | INFO | Initializing OM Importation
2533
+ 2015-07-13 13:54:51 | INFO | 302-5181594-9067530 | Initializing Order - Link: /orders/v1/733352e8-5a0b-496c-88a5-a3fadd15cdff/Amazon/1038/8D28B831A19AFE4427f74a56a244d37b4599395d469a597
2534
+ 2015-07-13 13:54:51 | INFO | 302-5181594-9067530 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
2535
+ 2015-07-13 13:54:51 | INFO | 302-5181594-9067530 | Product Matching succesful, Beezup Imported Id: 15570 , Magento Product Id: 903
2536
+ 2015-07-13 13:54:51 | INFO | 302-5181594-9067530 | Generating Order
2537
+ 2015-07-13 13:54:51 | INFO | 302-5181594-9067530 | Adding 1 product/s with id 903 to order, with Beezup Price: 18
2538
+ 2015-07-13 13:54:51 | INFO | 302-5181594-9067530 | Product 903 Stock = 0, Updating to 1 to generate Order
2539
+ 2015-07-13 13:54:52 | INFO | 302-5181594-9067530 | Adding Order Shipping Cost: 3
2540
+ 2015-07-13 13:54:53 | INFO | 302-5181594-9067530 | Adding Beezup Marketplace Information to Order
2541
+ 2015-07-13 13:54:53 | INFO | 302-5181594-9067530 | Sending Magento Order Id to Beezup, Magento Order Id: 192
2542
+ 2015-07-13 13:54:55 | INFO | 302-5181594-9067530 | Setting Order Status to Shipped
2543
+ 2015-07-13 13:54:55 | INFO | 302-5181594-9067530 | Generating Order Payment Invoice
2544
+ 2015-07-13 13:54:55 | INFO | 302-5181594-9067530 | Order Payment Invoice Generated Succesfully
2545
+ 2015-07-13 13:54:56 | INFO | 302-5181594-9067530 | Order imported succesfully, Magento Order Id: 192
2546
+ 2015-07-13 13:54:57 | INFO | 304-2376665-8448359 | Initializing Order - Link: /orders/v1/733352e8-5a0b-496c-88a5-a3fadd15cdff/Amazon/1038/8D28B7AC3AD72939e443da293f54257b7b273492fc505bf
2547
+ 2015-07-13 13:54:57 | INFO | 304-2376665-8448359 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
2548
+ 2015-07-13 13:54:57 | INFO | 304-2376665-8448359 | Product Matching succesful, Beezup Imported Id: 15759 , Magento Product Id: 962
2549
+ 2015-07-13 13:54:57 | INFO | 304-2376665-8448359 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
2550
+ 2015-07-13 13:54:57 | ERROR | 304-2376665-8448359| No Product Matching, Product 15758 could not be found
2551
+ 2015-07-13 13:54:58 | INFO | 304-2376665-8448359 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
2552
+ 2015-07-13 13:54:58 | INFO | 304-2376665-8448359 | Product Matching succesful, Beezup Imported Id: 15756 , Magento Product Id: 919
2553
+ 2015-07-13 13:54:58 | INFO | 304-2376665-8448359 | Generating Order
2554
+ 2015-07-13 13:54:58 | INFO | 304-2376665-8448359 | Adding 1 product/s with id 962 to order, with Beezup Price: 23
2555
+ 2015-07-13 13:54:58 | INFO | 304-2376665-8448359 | Product 962 Stock = 0, Updating to 1 to generate Order
2556
+ 2015-07-13 13:54:59 | INFO | 304-2376665-8448359 | Adding 1 product/s with id 969 to order, with Beezup Price: 23
2557
+ 2015-07-13 13:54:59 | INFO | 304-2376665-8448359 | Adding 1 product/s with id 919 to order, with Beezup Price: 23
2558
+ 2015-07-13 13:54:59 | INFO | 304-2376665-8448359 | Product 919 Stock = 0, Updating to 1 to generate Order
2559
+ 2015-07-13 13:54:59 | INFO | 304-2376665-8448359 | Adding Order Shipping Cost: 0
2560
+ 2015-07-13 13:55:00 | INFO | 304-2376665-8448359 | Adding Beezup Marketplace Information to Order
2561
+ 2015-07-13 13:55:00 | INFO | 304-2376665-8448359 | Sending Magento Order Id to Beezup, Magento Order Id: 193
2562
+ 2015-07-13 13:55:03 | INFO | 304-2376665-8448359 | Setting Order Status to Shipped
2563
+ 2015-07-13 13:55:03 | INFO | 304-2376665-8448359 | Generating Order Payment Invoice
2564
+ 2015-07-13 13:55:03 | INFO | 304-2376665-8448359 | Order Payment Invoice Generated Succesfully
2565
+ 2015-07-13 13:55:03 | INFO | 304-2376665-8448359 | Order imported succesfully, Magento Order Id: 193
2566
+ 2015-07-13 13:55:05 | INFO | 304-5814114-8544311 | Initializing Order - Link: /orders/v1/733352e8-5a0b-496c-88a5-a3fadd15cdff/Amazon/1038/8D28B7AC196264749802967119742ff868d287e5f6ccc05
2567
+ 2015-07-13 13:55:05 | INFO | 304-5814114-8544311 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
2568
+ 2015-07-13 13:55:05 | ERROR | 304-5814114-8544311| No Product Matching, Product 14887 could not be found
2569
+ 2015-07-13 13:55:06 | INFO | 304-5814114-8544311 | Generating Order
2570
+ 2015-07-13 13:55:06 | INFO | 304-5814114-8544311 | Adding 1 product/s with id 970 to order, with Beezup Price: 14
2571
+ 2015-07-13 13:55:06 | INFO | 304-5814114-8544311 | Adding Order Shipping Cost: 3
2572
+ 2015-07-13 13:55:07 | INFO | 304-5814114-8544311 | Adding Beezup Marketplace Information to Order
2573
+ 2015-07-13 13:55:07 | INFO | 304-5814114-8544311 | Sending Magento Order Id to Beezup, Magento Order Id: 194
2574
+ 2015-07-13 13:55:08 | INFO | 304-5814114-8544311 | Setting Order Status to InProgress
2575
+ 2015-07-13 13:55:08 | INFO | 304-5814114-8544311 | Generating Order Payment Invoice
2576
+ 2015-07-13 13:55:09 | INFO | 304-5814114-8544311 | Order Payment Invoice Generated Succesfully
2577
+ 2015-07-13 13:55:09 | INFO | 304-5814114-8544311 | Order imported succesfully, Magento Order Id: 194
2578
+ 2015-07-13 13:55:10 | INFO | 302-5145095-3261943 | Initializing Order - Link: /orders/v1/733352e8-5a0b-496c-88a5-a3fadd15cdff/Amazon/1038/8D28B7AC12DD365b5f418049f99412b8248561f3e78314e
2579
+ 2015-07-13 13:55:10 | INFO | 302-5145095-3261943 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
2580
+ 2015-07-13 13:55:10 | INFO | 302-5145095-3261943 | Product Matching succesful, Beezup Imported Id: 12826 , Magento Product Id: 887
2581
+ 2015-07-13 13:55:10 | INFO | 302-5145095-3261943 | Generating Order
2582
+ 2015-07-13 13:55:10 | INFO | 302-5145095-3261943 | Adding 1 product/s with id 887 to order, with Beezup Price: 21
2583
+ 2015-07-13 13:55:10 | INFO | 302-5145095-3261943 | Product 887 Stock = 0, Updating to 1 to generate Order
2584
+ 2015-07-13 13:55:11 | INFO | 302-5145095-3261943 | Adding Order Shipping Cost: 0
2585
+ 2015-07-13 13:55:12 | INFO | 302-5145095-3261943 | Adding Beezup Marketplace Information to Order
2586
+ 2015-07-13 13:55:12 | INFO | 302-5145095-3261943 | Sending Magento Order Id to Beezup, Magento Order Id: 195
2587
+ 2015-07-13 13:55:13 | INFO | 302-5145095-3261943 | Setting Order Status to Shipped
2588
+ 2015-07-13 13:55:13 | INFO | 302-5145095-3261943 | Generating Order Payment Invoice
2589
+ 2015-07-13 13:55:14 | INFO | 302-5145095-3261943 | Order Payment Invoice Generated Succesfully
2590
+ 2015-07-13 13:55:14 | INFO | 302-5145095-3261943 | Order imported succesfully, Magento Order Id: 195
2591
+ 2015-07-13 13:55:16 | INFO | 302-9646905-9362734 | Initializing Order - Link: /orders/v1/733352e8-5a0b-496c-88a5-a3fadd15cdff/Amazon/1038/8D28B7AC03F1155c391ad3362ca463fbe5c9a7a63c6076d
2592
+ 2015-07-13 13:55:16 | INFO | 302-9646905-9362734 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
2593
+ 2015-07-13 13:55:16 | INFO | 302-9646905-9362734 | Product Matching succesful, Beezup Imported Id: 12500 , Magento Product Id: 921
2594
+ 2015-07-13 13:55:16 | INFO | 302-9646905-9362734 | Generating Order
2595
+ 2015-07-13 13:55:16 | INFO | 302-9646905-9362734 | Adding 1 product/s with id 921 to order, with Beezup Price: 22
2596
+ 2015-07-13 13:55:16 | INFO | 302-9646905-9362734 | Product 921 Stock = 0, Updating to 1 to generate Order
2597
+ 2015-07-13 13:55:16 | INFO | 302-9646905-9362734 | Adding Order Shipping Cost: 0
2598
+ 2015-07-13 13:55:17 | INFO | 302-9646905-9362734 | Adding Beezup Marketplace Information to Order
2599
+ 2015-07-13 13:55:17 | INFO | 302-9646905-9362734 | Sending Magento Order Id to Beezup, Magento Order Id: 196
2600
+ 2015-07-13 13:55:19 | INFO | 302-9646905-9362734 | Setting Order Status to Shipped
2601
+ 2015-07-13 13:55:19 | INFO | 302-9646905-9362734 | Generating Order Payment Invoice
2602
+ 2015-07-13 13:55:19 | INFO | 302-9646905-9362734 | Order Payment Invoice Generated Succesfully
2603
+ 2015-07-13 13:55:19 | INFO | 302-9646905-9362734 | Order imported succesfully, Magento Order Id: 196
2604
+ 2015-07-13 13:55:22 | INFO | 303-6744558-1030729 | Initializing Order - Link: /orders/v1/733352e8-5a0b-496c-88a5-a3fadd15cdff/Amazon/1038/8D28B7ABFE53A6499ac2ea6abeb409bbc951ba8cd40c176
2605
+ 2015-07-13 13:55:22 | INFO | 303-6744558-1030729 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
2606
+ 2015-07-13 13:55:22 | ERROR | 303-6744558-1030729| No Product Matching, Product 12795 could not be found
2607
+ 2015-07-13 13:55:23 | INFO | 303-6744558-1030729 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
2608
+ 2015-07-13 13:55:23 | INFO | 303-6744558-1030729 | Product Matching succesful, Beezup Imported Id: 14938 , Magento Product Id: 729
2609
+ 2015-07-13 13:55:23 | INFO | 303-6744558-1030729 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
2610
+ 2015-07-13 13:55:23 | ERROR | 303-6744558-1030729| No Product Matching, Product 12469 could not be found
2611
+ 2015-07-13 13:55:23 | INFO | 303-6744558-1030729 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
2612
+ 2015-07-13 13:55:24 | INFO | 303-6744558-1030729 | Product Matching succesful, Beezup Imported Id: 13943 , Magento Product Id: 886
2613
+ 2015-07-13 13:55:24 | INFO | 303-6744558-1030729 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
2614
+ 2015-07-13 13:55:24 | ERROR | 303-6744558-1030729| No Product Matching, Product 13016 could not be found
2615
+ 2015-07-13 13:55:24 | INFO | 303-6744558-1030729 | Generating Order
2616
+ 2015-07-13 13:55:24 | INFO | 303-6744558-1030729 | Adding 1 product/s with id 971 to order, with Beezup Price: 21
2617
+ 2015-07-13 13:55:24 | INFO | 303-6744558-1030729 | Adding 1 product/s with id 729 to order, with Beezup Price: 25
2618
+ 2015-07-13 13:55:24 | INFO | 303-6744558-1030729 | Product 729 Stock = 0, Updating to 1 to generate Order
2619
+ 2015-07-13 13:55:26 | INFO | 303-6744558-1030729 | Adding 1 product/s with id 972 to order, with Beezup Price: 20
2620
+ 2015-07-13 13:55:27 | INFO | 303-6744558-1030729 | Adding 1 product/s with id 886 to order, with Beezup Price: 21
2621
+ 2015-07-13 13:55:27 | INFO | 303-6744558-1030729 | Product 886 Stock = 0, Updating to 1 to generate Order
2622
+ 2015-07-13 13:55:27 | INFO | 303-6744558-1030729 | Adding 1 product/s with id 973 to order, with Beezup Price: 22
2623
+ 2015-07-13 13:55:27 | INFO | 303-6744558-1030729 | Adding Order Shipping Cost: 0
2624
+ 2015-07-13 13:55:29 | INFO | 303-6744558-1030729 | Adding Beezup Marketplace Information to Order
2625
+ 2015-07-13 13:55:29 | INFO | 303-6744558-1030729 | Sending Magento Order Id to Beezup, Magento Order Id: 197
2626
+ 2015-07-13 13:55:30 | INFO | 303-6744558-1030729 | Setting Order Status to Shipped
2627
+ 2015-07-13 13:55:30 | INFO | 303-6744558-1030729 | Generating Order Payment Invoice
2628
+ 2015-07-13 13:55:31 | INFO | 303-6744558-1030729 | Order Payment Invoice Generated Succesfully
2629
+ 2015-07-13 13:55:31 | INFO | 303-6744558-1030729 | Order imported succesfully, Magento Order Id: 197
2630
+ 2015-07-13 13:55:32 | INFO | 305-6063282-1160342 | Initializing Order - Link: /orders/v1/733352e8-5a0b-496c-88a5-a3fadd15cdff/Amazon/1038/8D28B7ABF07C38Cce5bf3d52ab94abeb6e92c3dfbbf253b
2631
+ 2015-07-13 13:55:32 | INFO | 305-6063282-1160342 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
2632
+ 2015-07-13 13:55:32 | ERROR | 305-6063282-1160342| No Product Matching, Product 13360 could not be found
2633
+ 2015-07-13 13:55:33 | INFO | 305-6063282-1160342 | Generating Order
2634
+ 2015-07-13 13:55:33 | INFO | 305-6063282-1160342 | Adding 1 product/s with id 974 to order, with Beezup Price: 41
2635
+ 2015-07-13 13:55:33 | INFO | 305-6063282-1160342 | Adding Order Shipping Cost: 0
2636
+ 2015-07-13 13:55:34 | INFO | 305-6063282-1160342 | Adding Beezup Marketplace Information to Order
2637
+ 2015-07-13 13:55:34 | INFO | 305-6063282-1160342 | Sending Magento Order Id to Beezup, Magento Order Id: 198
2638
+ 2015-07-13 13:55:35 | INFO | 305-6063282-1160342 | Setting Order Status to Shipped
2639
+ 2015-07-13 13:55:35 | INFO | 305-6063282-1160342 | Generating Order Payment Invoice
2640
+ 2015-07-13 13:55:35 | INFO | 305-6063282-1160342 | Order Payment Invoice Generated Succesfully
2641
+ 2015-07-13 13:55:36 | INFO | 305-6063282-1160342 | Order imported succesfully, Magento Order Id: 198
2642
+ 2015-07-13 13:55:37 | INFO | 028-1886784-6472353 | Initializing Order - Link: /orders/v1/733352e8-5a0b-496c-88a5-a3fadd15cdff/Amazon/1038/8D28B7ABE00521335155e2c349f4210b0fa7a1d6ab7007e
2643
+ 2015-07-13 13:55:37 | INFO | 028-1886784-6472353 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
2644
+ 2015-07-13 13:55:37 | ERROR | 028-1886784-6472353| No Product Matching, Product 12379 could not be found
2645
+ 2015-07-13 13:55:38 | INFO | 028-1886784-6472353 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
2646
+ 2015-07-13 13:55:38 | ERROR | 028-1886784-6472353| No Product Matching, Product 13639 could not be found
2647
+ 2015-07-13 13:55:38 | INFO | 028-1886784-6472353 | Generating Order
2648
+ 2015-07-13 13:55:39 | INFO | 028-1886784-6472353 | Adding 1 product/s with id 975 to order, with Beezup Price: 25
2649
+ 2015-07-13 13:55:39 | INFO | 028-1886784-6472353 | Adding 1 product/s with id 976 to order, with Beezup Price: 33
2650
+ 2015-07-13 13:55:39 | INFO | 028-1886784-6472353 | Adding Order Shipping Cost: 0
2651
+ 2015-07-13 13:55:40 | INFO | 028-1886784-6472353 | Adding Beezup Marketplace Information to Order
2652
+ 2015-07-13 13:55:40 | INFO | 028-1886784-6472353 | Sending Magento Order Id to Beezup, Magento Order Id: 199
2653
+ 2015-07-13 13:55:41 | INFO | 028-1886784-6472353 | Setting Order Status to Shipped
2654
+ 2015-07-13 13:55:41 | INFO | 028-1886784-6472353 | Generating Order Payment Invoice
2655
+ 2015-07-13 13:55:42 | INFO | 028-1886784-6472353 | Order Payment Invoice Generated Succesfully
2656
+ 2015-07-13 13:55:42 | INFO | 028-1886784-6472353 | Order imported succesfully, Magento Order Id: 199
2657
+ 2015-07-13 13:55:44 | INFO | 028-7013115-2564300 | Initializing Order - Link: /orders/v1/733352e8-5a0b-496c-88a5-a3fadd15cdff/Amazon/1038/8D28B7ABDAEAF6C126ab95d15124ce8939380ce73845bba
2658
+ 2015-07-13 13:55:44 | INFO | 028-7013115-2564300 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
2659
+ 2015-07-13 13:55:44 | INFO | 028-7013115-2564300 | Product Matching succesful, Beezup Imported Id: 15570 , Magento Product Id: 903
2660
+ 2015-07-13 13:55:44 | INFO | 028-7013115-2564300 | Generating Order
2661
+ 2015-07-13 13:55:44 | INFO | 028-7013115-2564300 | Adding 1 product/s with id 903 to order, with Beezup Price: 18
2662
+ 2015-07-13 13:55:44 | INFO | 028-7013115-2564300 | Product 903 Stock = 0, Updating to 1 to generate Order
2663
+ 2015-07-13 13:55:45 | INFO | 028-7013115-2564300 | Adding Order Shipping Cost: 0
2664
+ 2015-07-13 13:55:45 | INFO | 028-7013115-2564300 | Adding Beezup Marketplace Information to Order
2665
+ 2015-07-13 13:55:45 | INFO | 028-7013115-2564300 | Sending Magento Order Id to Beezup, Magento Order Id: 200
2666
+ 2015-07-13 13:55:47 | INFO | 028-7013115-2564300 | Setting Order Status to Shipped
2667
+ 2015-07-13 13:55:47 | INFO | 028-7013115-2564300 | Generating Order Payment Invoice
2668
+ 2015-07-13 13:55:47 | INFO | 028-7013115-2564300 | Order Payment Invoice Generated Succesfully
2669
+ 2015-07-13 13:55:47 | INFO | 028-7013115-2564300 | Order imported succesfully, Magento Order Id: 200
2670
+ 2015-07-13 13:55:49 | INFO | 302-4228901-0641101 | Initializing Order - Link: /orders/v1/733352e8-5a0b-496c-88a5-a3fadd15cdff/Amazon/1038/8D28B7ABCD8619B5649e0495c7d47c1b707d8268f93b158
2671
+ 2015-07-13 13:55:49 | INFO | 302-4228901-0641101 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
2672
+ 2015-07-13 13:55:49 | INFO | 302-4228901-0641101 | Product Matching succesful, Beezup Imported Id: 15326 , Magento Product Id: 885
2673
+ 2015-07-13 13:55:49 | INFO | 302-4228901-0641101 | Generating Order
2674
+ 2015-07-13 13:55:49 | INFO | 302-4228901-0641101 | Adding 1 product/s with id 885 to order, with Beezup Price: 21
2675
+ 2015-07-13 13:55:49 | INFO | 302-4228901-0641101 | Product 885 Stock = 0, Updating to 1 to generate Order
2676
+ 2015-07-13 13:55:49 | INFO | 302-4228901-0641101 | Adding Order Shipping Cost: 0
2677
+ 2015-07-13 13:55:50 | INFO | 302-4228901-0641101 | Adding Beezup Marketplace Information to Order
2678
+ 2015-07-13 13:55:50 | INFO | 302-4228901-0641101 | Sending Magento Order Id to Beezup, Magento Order Id: 201
2679
+ 2015-07-13 13:55:52 | INFO | 302-4228901-0641101 | Setting Order Status to Shipped
2680
+ 2015-07-13 13:55:52 | INFO | 302-4228901-0641101 | Generating Order Payment Invoice
2681
+ 2015-07-13 13:55:52 | INFO | 302-4228901-0641101 | Order Payment Invoice Generated Succesfully
2682
+ 2015-07-13 13:55:52 | INFO | 302-4228901-0641101 | Order imported succesfully, Magento Order Id: 201
2683
+ 2015-07-13 13:55:54 | INFO | 028-2380641-8001166 | Initializing Order - Link: /orders/v1/733352e8-5a0b-496c-88a5-a3fadd15cdff/Amazon/1038/8D2896B5B088775251c3077de284b1fa1773338c213058d
2684
+ 2015-07-13 13:55:54 | INFO | 028-2380641-8001166 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
2685
+ 2015-07-13 13:55:54 | ERROR | 028-2380641-8001166| No Product Matching, Product 15932 could not be found
2686
+ 2015-07-13 13:55:55 | INFO | 028-2380641-8001166 | Generating Order
2687
+ 2015-07-13 13:55:55 | INFO | 028-2380641-8001166 | Adding 1 product/s with id 977 to order, with Beezup Price: 14
2688
+ 2015-07-13 13:55:55 | INFO | 028-2380641-8001166 | Adding Order Shipping Cost: 3
2689
+ 2015-07-13 13:55:55 | INFO | 028-2380641-8001166 | Adding Beezup Marketplace Information to Order
2690
+ 2015-07-13 13:55:55 | INFO | 028-2380641-8001166 | Sending Magento Order Id to Beezup, Magento Order Id: 202
2691
+ 2015-07-13 13:55:56 | INFO | 028-2380641-8001166 | Setting Order Status to Shipped
2692
+ 2015-07-13 13:55:56 | INFO | 028-2380641-8001166 | Generating Order Payment Invoice
2693
+ 2015-07-13 13:55:57 | INFO | 028-2380641-8001166 | Order Payment Invoice Generated Succesfully
2694
+ 2015-07-13 13:55:57 | INFO | 028-2380641-8001166 | Order imported succesfully, Magento Order Id: 202
2695
+ 2015-07-13 13:55:58 | INFO | 304-0835852-3391515 | Initializing Order - Link: /orders/v1/733352e8-5a0b-496c-88a5-a3fadd15cdff/Amazon/1038/8D285F235C84190b9e4bbef71ae410c81305e47b9283c6f
2696
+ 2015-07-13 13:55:58 | INFO | 304-0835852-3391515 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
2697
+ 2015-07-13 13:55:58 | ERROR | 304-0835852-3391515| No Product Matching, Product 15633 could not be found
2698
+ 2015-07-13 13:55:59 | INFO | 304-0835852-3391515 | Generating Order
2699
+ 2015-07-13 13:55:59 | INFO | 304-0835852-3391515 | Adding 2 product/s with id 978 to order, with Beezup Price: 13
2700
+ 2015-07-13 13:55:59 | INFO | 304-0835852-3391515 | Product 978 Stock = 0, Updating to 2 to generate Order
2701
+ 2015-07-13 13:55:59 | INFO | 304-0835852-3391515 | Adding Order Shipping Cost: 3
2702
+ 2015-07-13 13:56:00 | INFO | 304-0835852-3391515 | Adding Beezup Marketplace Information to Order
2703
+ 2015-07-13 13:56:00 | INFO | 304-0835852-3391515 | Sending Magento Order Id to Beezup, Magento Order Id: 203
2704
+ 2015-07-13 13:56:02 | INFO | 304-0835852-3391515 | Setting Order Status to Shipped
2705
+ 2015-07-13 13:56:02 | INFO | 304-0835852-3391515 | Generating Order Payment Invoice
2706
+ 2015-07-13 13:56:02 | INFO | 304-0835852-3391515 | Order Payment Invoice Generated Succesfully
2707
+ 2015-07-13 13:56:02 | INFO | 304-0835852-3391515 | Order imported succesfully, Magento Order Id: 203
2708
+ 2015-07-13 13:56:04 | INFO | 028-7350366-9657957 | Initializing Order - Link: /orders/v1/733352e8-5a0b-496c-88a5-a3fadd15cdff/Amazon/1038/8D28B7261F65E9704c47bc2d7a34f8f8131aa176714aa8f
2709
+ 2015-07-13 13:56:04 | INFO | 028-7350366-9657957 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
2710
+ 2015-07-13 13:56:04 | INFO | 028-7350366-9657957 | Product Matching succesful, Beezup Imported Id: 12311 , Magento Product Id: 898
2711
+ 2015-07-13 13:56:04 | INFO | 028-7350366-9657957 | Generating Order
2712
+ 2015-07-13 13:56:04 | INFO | 028-7350366-9657957 | Adding 1 product/s with id 898 to order, with Beezup Price: 14
2713
+ 2015-07-13 13:56:04 | INFO | 028-7350366-9657957 | Product 898 Stock = 0, Updating to 1 to generate Order
2714
+ 2015-07-13 13:56:05 | INFO | 028-7350366-9657957 | Adding Order Shipping Cost: 0
2715
+ 2015-07-13 13:56:05 | INFO | 028-7350366-9657957 | Adding Beezup Marketplace Information to Order
2716
+ 2015-07-13 13:56:05 | INFO | 028-7350366-9657957 | Sending Magento Order Id to Beezup, Magento Order Id: 204
2717
+ 2015-07-13 13:56:07 | INFO | 028-7350366-9657957 | Setting Order Status to Shipped
2718
+ 2015-07-13 13:56:07 | INFO | 028-7350366-9657957 | Generating Order Payment Invoice
2719
+ 2015-07-13 13:56:07 | INFO | 028-7350366-9657957 | Order Payment Invoice Generated Succesfully
2720
+ 2015-07-13 13:56:07 | INFO | 028-7350366-9657957 | Order imported succesfully, Magento Order Id: 204
2721
+ 2015-07-13 13:56:09 | INFO | 302-9775030-9253910 | Initializing Order - Link: /orders/v1/733352e8-5a0b-496c-88a5-a3fadd15cdff/Amazon/1038/8D28940B7768CFCb9cc44790c814403ab582fa315d42916
2722
+ 2015-07-13 13:56:09 | INFO | 302-9775030-9253910 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
2723
+ 2015-07-13 13:56:09 | ERROR | 302-9775030-9253910| No Product Matching, Product 16032 could not be found
2724
+ 2015-07-13 13:56:09 | INFO | 302-9775030-9253910 | Generating Order
2725
+ 2015-07-13 13:56:09 | INFO | 302-9775030-9253910 | Adding 1 product/s with id 979 to order, with Beezup Price: 75
2726
+ 2015-07-13 13:56:09 | INFO | 302-9775030-9253910 | Adding Order Shipping Cost: 0
2727
+ 2015-07-13 13:56:10 | INFO | 302-9775030-9253910 | Adding Beezup Marketplace Information to Order
2728
+ 2015-07-13 13:56:10 | INFO | 302-9775030-9253910 | Sending Magento Order Id to Beezup, Magento Order Id: 205
2729
+ 2015-07-13 13:56:11 | INFO | 302-9775030-9253910 | Setting Order Status to Shipped
2730
+ 2015-07-13 13:56:11 | INFO | 302-9775030-9253910 | Generating Order Payment Invoice
2731
+ 2015-07-13 13:56:11 | INFO | 302-9775030-9253910 | Order Payment Invoice Generated Succesfully
2732
+ 2015-07-13 13:56:12 | INFO | 302-9775030-9253910 | Order imported succesfully, Magento Order Id: 205
2733
+ 2015-07-13 13:56:14 | INFO | 304-0818285-4061961 | Initializing Order - Link: /orders/v1/733352e8-5a0b-496c-88a5-a3fadd15cdff/Amazon/1038/8D289F0E02F6FD87678cd4aa32a41a49bca3d5ac6e18e06
2734
+ 2015-07-13 13:56:14 | INFO | 304-0818285-4061961 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
2735
+ 2015-07-13 13:56:14 | ERROR | 304-0818285-4061961| No Product Matching, Product 16414 could not be found
2736
+ 2015-07-13 13:56:14 | INFO | 304-0818285-4061961 | Generating Order
2737
+ 2015-07-13 13:56:14 | INFO | 304-0818285-4061961 | Adding 1 product/s with id 980 to order, with Beezup Price: 12
2738
+ 2015-07-13 13:56:14 | INFO | 304-0818285-4061961 | Adding Order Shipping Cost: 3
2739
+ 2015-07-13 13:56:15 | INFO | 304-0818285-4061961 | Adding Beezup Marketplace Information to Order
2740
+ 2015-07-13 13:56:15 | INFO | 304-0818285-4061961 | Sending Magento Order Id to Beezup, Magento Order Id: 206
2741
+ 2015-07-13 13:56:16 | INFO | 304-0818285-4061961 | Setting Order Status to Shipped
2742
+ 2015-07-13 13:56:16 | INFO | 304-0818285-4061961 | Generating Order Payment Invoice
2743
+ 2015-07-13 13:56:17 | INFO | 304-0818285-4061961 | Order Payment Invoice Generated Succesfully
2744
+ 2015-07-13 13:56:17 | INFO | 304-0818285-4061961 | Order imported succesfully, Magento Order Id: 206
2745
+ 2015-07-13 13:56:18 | INFO | 305-8998703-1694714 | Initializing Order - Link: /orders/v1/733352e8-5a0b-496c-88a5-a3fadd15cdff/Amazon/1038/8D28AFD57118B927b64d6dbcaf245f0a488608cc06ad2fe
2746
+ 2015-07-13 13:56:18 | INFO | 305-8998703-1694714 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
2747
+ 2015-07-13 13:56:18 | ERROR | 305-8998703-1694714| No Product Matching, Product 13938 could not be found
2748
+ 2015-07-13 13:56:19 | INFO | 305-8998703-1694714 | Generating Order
2749
+ 2015-07-13 13:56:19 | INFO | 305-8998703-1694714 | Adding 1 product/s with id 981 to order, with Beezup Price: 19
2750
+ 2015-07-13 13:56:19 | INFO | 305-8998703-1694714 | Adding Order Shipping Cost: 3
2751
+ 2015-07-13 13:56:20 | INFO | 305-8998703-1694714 | Adding Beezup Marketplace Information to Order
2752
+ 2015-07-13 13:56:20 | INFO | 305-8998703-1694714 | Sending Magento Order Id to Beezup, Magento Order Id: 207
2753
+ 2015-07-13 13:56:22 | INFO | 305-8998703-1694714 | Setting Order Status to Shipped
2754
+ 2015-07-13 13:56:22 | INFO | 305-8998703-1694714 | Generating Order Payment Invoice
2755
+ 2015-07-13 13:56:22 | INFO | 305-8998703-1694714 | Order Payment Invoice Generated Succesfully
2756
+ 2015-07-13 13:56:22 | INFO | 305-8998703-1694714 | Order imported succesfully, Magento Order Id: 207
2757
+ 2015-07-13 13:56:24 | INFO | 304-2671239-1348360 | Initializing Order - Link: /orders/v1/733352e8-5a0b-496c-88a5-a3fadd15cdff/Amazon/1038/8D28AB9E5990C29b31ca8730bcb41c48256072d1a38b815
2758
+ 2015-07-13 13:56:24 | INFO | 304-2671239-1348360 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
2759
+ 2015-07-13 13:56:24 | ERROR | 304-2671239-1348360| No Product Matching, Product 14788 could not be found
2760
+ 2015-07-13 13:56:24 | INFO | 304-2671239-1348360 | Generating Order
2761
+ 2015-07-13 13:56:24 | INFO | 304-2671239-1348360 | Adding 1 product/s with id 982 to order, with Beezup Price: 12
2762
+ 2015-07-13 13:56:24 | INFO | 304-2671239-1348360 | Adding Order Shipping Cost: 3
2763
+ 2015-07-13 13:56:25 | INFO | 304-2671239-1348360 | Adding Beezup Marketplace Information to Order
2764
+ 2015-07-13 13:56:25 | INFO | 304-2671239-1348360 | Sending Magento Order Id to Beezup, Magento Order Id: 208
2765
+ 2015-07-13 13:56:26 | INFO | 304-2671239-1348360 | Setting Order Status to Shipped
2766
+ 2015-07-13 13:56:26 | INFO | 304-2671239-1348360 | Generating Order Payment Invoice
2767
+ 2015-07-13 13:56:27 | INFO | 304-2671239-1348360 | Order Payment Invoice Generated Succesfully
2768
+ 2015-07-13 13:56:27 | INFO | 304-2671239-1348360 | Order imported succesfully, Magento Order Id: 208
2769
+ 2015-07-13 13:56:28 | INFO | 028-9312952-5877127 | Initializing Order - Link: /orders/v1/733352e8-5a0b-496c-88a5-a3fadd15cdff/Amazon/1038/8D28B69F2E3AE0E24ed0de3fac644d99fccd082f689c468
2770
+ 2015-07-13 13:56:28 | INFO | 028-9312952-5877127 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
2771
+ 2015-07-13 13:56:28 | ERROR | 028-9312952-5877127| No Product Matching, Product 12145 could not be found
2772
+ 2015-07-13 13:56:29 | INFO | 028-9312952-5877127 | Generating Order
2773
+ 2015-07-13 13:56:29 | INFO | 028-9312952-5877127 | Adding 1 product/s with id 983 to order, with Beezup Price: 12
2774
+ 2015-07-13 13:56:29 | INFO | 028-9312952-5877127 | Adding Order Shipping Cost: 3
2775
+ 2015-07-13 13:56:30 | INFO | 028-9312952-5877127 | Adding Beezup Marketplace Information to Order
2776
+ 2015-07-13 13:56:30 | INFO | 028-9312952-5877127 | Sending Magento Order Id to Beezup, Magento Order Id: 209
2777
+ 2015-07-13 13:56:31 | INFO | 028-9312952-5877127 | Setting Order Status to Shipped
2778
+ 2015-07-13 13:56:31 | INFO | 028-9312952-5877127 | Generating Order Payment Invoice
2779
+ 2015-07-13 13:56:32 | INFO | 028-9312952-5877127 | Order Payment Invoice Generated Succesfully
2780
+ 2015-07-13 13:56:32 | INFO | 028-9312952-5877127 | Order imported succesfully, Magento Order Id: 209
2781
+ 2015-07-13 13:56:34 | INFO | 305-4954456-3347543 | Initializing Order - Link: /orders/v1/733352e8-5a0b-496c-88a5-a3fadd15cdff/Amazon/1038/8D28B69F1F07AF0c8821ea75f774bb7b32c34bb201ea995
2782
+ 2015-07-13 13:56:34 | INFO | 305-4954456-3347543 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
2783
+ 2015-07-13 13:56:34 | ERROR | 305-4954456-3347543| No Product Matching, Product 15840 could not be found
2784
+ 2015-07-13 13:56:34 | INFO | 305-4954456-3347543 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
2785
+ 2015-07-13 13:56:34 | ERROR | 305-4954456-3347543| No Product Matching, Product 13364 could not be found
2786
+ 2015-07-13 13:56:35 | INFO | 305-4954456-3347543 | Generating Order
2787
+ 2015-07-13 13:56:35 | INFO | 305-4954456-3347543 | Adding 1 product/s with id 984 to order, with Beezup Price: 41
2788
+ 2015-07-13 13:56:35 | INFO | 305-4954456-3347543 | Adding 1 product/s with id 985 to order, with Beezup Price: 41
2789
+ 2015-07-13 13:56:35 | INFO | 305-4954456-3347543 | Adding Order Shipping Cost: 0
2790
+ 2015-07-13 13:56:36 | INFO | 305-4954456-3347543 | Adding Beezup Marketplace Information to Order
2791
+ 2015-07-13 13:56:36 | INFO | 305-4954456-3347543 | Sending Magento Order Id to Beezup, Magento Order Id: 210
2792
+ 2015-07-13 13:56:37 | INFO | 305-4954456-3347543 | Setting Order Status to Shipped
2793
+ 2015-07-13 13:56:37 | INFO | 305-4954456-3347543 | Generating Order Payment Invoice
2794
+ 2015-07-13 13:56:38 | INFO | 305-4954456-3347543 | Order Payment Invoice Generated Succesfully
2795
+ 2015-07-13 13:56:38 | INFO | 305-4954456-3347543 | Order imported succesfully, Magento Order Id: 210
2796
+ 2015-07-13 13:56:39 | INFO | 302-2131418-6090743 | Initializing Order - Link: /orders/v1/733352e8-5a0b-496c-88a5-a3fadd15cdff/Amazon/1038/8D28B69F1257659d5c37d09e9ac4d4e91ff8bde91ab028e
2797
+ 2015-07-13 13:56:39 | INFO | 302-2131418-6090743 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
2798
+ 2015-07-13 13:56:39 | ERROR | 302-2131418-6090743| No Product Matching, Product 15247 could not be found
2799
+ 2015-07-13 13:56:40 | INFO | 302-2131418-6090743 | Generating Order
2800
+ 2015-07-13 13:56:40 | INFO | 302-2131418-6090743 | Adding 1 product/s with id 986 to order, with Beezup Price: 42
2801
+ 2015-07-13 13:56:40 | INFO | 302-2131418-6090743 | Adding Order Shipping Cost: 3
2802
+ 2015-07-13 13:56:41 | INFO | 302-2131418-6090743 | Adding Beezup Marketplace Information to Order
2803
+ 2015-07-13 13:56:41 | INFO | 302-2131418-6090743 | Sending Magento Order Id to Beezup, Magento Order Id: 211
2804
+ 2015-07-13 13:56:42 | INFO | 302-2131418-6090743 | Setting Order Status to InProgress
2805
+ 2015-07-13 13:56:42 | INFO | 302-2131418-6090743 | Generating Order Payment Invoice
2806
+ 2015-07-13 13:56:42 | INFO | 302-2131418-6090743 | Order Payment Invoice Generated Succesfully
2807
+ 2015-07-13 13:56:42 | INFO | 302-2131418-6090743 | Order imported succesfully, Magento Order Id: 211
2808
+ 2015-07-13 13:56:44 | INFO | 303-8775940-4287548 | Initializing Order - Link: /orders/v1/733352e8-5a0b-496c-88a5-a3fadd15cdff/Amazon/1038/8D28B61939D556Eaed5c15e3de643c8a2bda154aad31cd2
2809
+ 2015-07-13 13:56:44 | INFO | 303-8775940-4287548 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
2810
+ 2015-07-13 13:56:44 | ERROR | 303-8775940-4287548| No Product Matching, Product 14546 could not be found
2811
+ 2015-07-13 13:56:45 | INFO | 303-8775940-4287548 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
2812
+ 2015-07-13 13:56:45 | ERROR | 303-8775940-4287548| No Product Matching, Product 13349 could not be found
2813
+ 2015-07-13 13:56:45 | INFO | 303-8775940-4287548 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
2814
+ 2015-07-13 13:56:45 | INFO | 303-8775940-4287548 | Product Matching succesful, Beezup Imported Id: 14543 , Magento Product Id: 741
2815
+ 2015-07-13 13:56:45 | INFO | 303-8775940-4287548 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
2816
+ 2015-07-13 13:56:45 | ERROR | 303-8775940-4287548| No Product Matching, Product 16490 could not be found
2817
+ 2015-07-13 13:56:46 | INFO | 303-8775940-4287548 | Generating Order
2818
+ 2015-07-13 13:56:46 | INFO | 303-8775940-4287548 | Adding 1 product/s with id 987 to order, with Beezup Price: 41
2819
+ 2015-07-13 13:56:46 | INFO | 303-8775940-4287548 | Adding 1 product/s with id 988 to order, with Beezup Price: 41
2820
+ 2015-07-13 13:56:46 | INFO | 303-8775940-4287548 | Adding 1 product/s with id 741 to order, with Beezup Price: 41
2821
+ 2015-07-13 13:56:46 | INFO | 303-8775940-4287548 | Product 741 Stock = 0, Updating to 1 to generate Order
2822
+ 2015-07-13 13:56:46 | INFO | 303-8775940-4287548 | Adding 1 product/s with id 989 to order, with Beezup Price: 41
2823
+ 2015-07-13 13:56:46 | INFO | 303-8775940-4287548 | Adding Order Shipping Cost: 0
2824
+ 2015-07-13 13:56:48 | INFO | 303-8775940-4287548 | Adding Beezup Marketplace Information to Order
2825
+ 2015-07-13 13:56:48 | INFO | 303-8775940-4287548 | Sending Magento Order Id to Beezup, Magento Order Id: 212
2826
+ 2015-07-13 13:56:49 | INFO | 303-8775940-4287548 | Setting Order Status to Shipped
2827
+ 2015-07-13 13:56:49 | INFO | 303-8775940-4287548 | Generating Order Payment Invoice
2828
+ 2015-07-13 13:56:49 | INFO | 303-8775940-4287548 | Order Payment Invoice Generated Succesfully
2829
+ 2015-07-13 13:56:50 | INFO | 303-8775940-4287548 | Order imported succesfully, Magento Order Id: 212
2830
+ 2015-07-13 13:56:51 | INFO | 302-5503804-1577152 | Initializing Order - Link: /orders/v1/733352e8-5a0b-496c-88a5-a3fadd15cdff/Amazon/1038/8D28B59339DFFD704fc45934bfe41c89ee464f3b8268088
2831
+ 2015-07-13 13:56:51 | INFO | 302-5503804-1577152 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
2832
+ 2015-07-13 13:56:51 | ERROR | 302-5503804-1577152| No Product Matching, Product 11071 could not be found
2833
+ 2015-07-13 13:56:52 | INFO | 302-5503804-1577152 | Generating Order
2834
+ 2015-07-13 13:56:52 | INFO | 302-5503804-1577152 | Adding 1 product/s with id 990 to order, with Beezup Price: 15
2835
+ 2015-07-13 13:56:52 | INFO | 302-5503804-1577152 | Adding Order Shipping Cost: 0
2836
+ 2015-07-13 13:56:52 | INFO | 302-5503804-1577152 | Adding Beezup Marketplace Information to Order
2837
+ 2015-07-13 13:56:52 | INFO | 302-5503804-1577152 | Sending Magento Order Id to Beezup, Magento Order Id: 213
2838
+ 2015-07-13 13:56:53 | INFO | 302-5503804-1577152 | Setting Order Status to Shipped
2839
+ 2015-07-13 13:56:53 | INFO | 302-5503804-1577152 | Generating Order Payment Invoice
2840
+ 2015-07-13 13:56:54 | INFO | 302-5503804-1577152 | Order Payment Invoice Generated Succesfully
2841
+ 2015-07-13 13:56:54 | INFO | 302-5503804-1577152 | Order imported succesfully, Magento Order Id: 213
2842
+ 2015-07-13 13:56:55 | INFO | 303-9018230-8893952 | Initializing Order - Link: /orders/v1/733352e8-5a0b-496c-88a5-a3fadd15cdff/Amazon/1038/8D28B50F917EA9E46799c36677f4fd783dd6f564e6aecda
2843
+ 2015-07-13 13:56:55 | INFO | 303-9018230-8893952 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
2844
+ 2015-07-13 13:56:55 | INFO | 303-9018230-8893952 | Product Matching succesful, Beezup Imported Id: 15419 , Magento Product Id: 871
2845
+ 2015-07-13 13:56:55 | INFO | 303-9018230-8893952 | Generating Order
2846
+ 2015-07-13 13:56:55 | INFO | 303-9018230-8893952 | Adding 1 product/s with id 871 to order, with Beezup Price: 16
2847
+ 2015-07-13 13:56:55 | INFO | 303-9018230-8893952 | Product 871 Stock = 0, Updating to 1 to generate Order
2848
+ 2015-07-13 13:56:56 | INFO | 303-9018230-8893952 | Adding Order Shipping Cost: 0
2849
+ 2015-07-13 13:56:57 | INFO | 303-9018230-8893952 | Adding Beezup Marketplace Information to Order
2850
+ 2015-07-13 13:56:57 | INFO | 303-9018230-8893952 | Sending Magento Order Id to Beezup, Magento Order Id: 214
2851
+ 2015-07-13 13:56:58 | INFO | 303-9018230-8893952 | Setting Order Status to Shipped
2852
+ 2015-07-13 13:56:58 | INFO | 303-9018230-8893952 | Generating Order Payment Invoice
2853
+ 2015-07-13 13:56:59 | INFO | 303-9018230-8893952 | Order Payment Invoice Generated Succesfully
2854
+ 2015-07-13 13:56:59 | INFO | 303-9018230-8893952 | Order imported succesfully, Magento Order Id: 214
2855
+ 2015-07-13 13:57:00 | INFO | 305-2806325-7081927 | Initializing Order - Link: /orders/v1/733352e8-5a0b-496c-88a5-a3fadd15cdff/Amazon/1038/8D28B4864B939B61006bdfcbf78440494b2a47f1e16de0b
2856
+ 2015-07-13 13:57:00 | INFO | 305-2806325-7081927 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
2857
+ 2015-07-13 13:57:00 | INFO | 305-2806325-7081927 | Product Matching succesful, Beezup Imported Id: 12730 , Magento Product Id: 920
2858
+ 2015-07-13 13:57:00 | INFO | 305-2806325-7081927 | Generating Order
2859
+ 2015-07-13 13:57:01 | INFO | 305-2806325-7081927 | Adding 1 product/s with id 920 to order, with Beezup Price: 22
2860
+ 2015-07-13 13:57:01 | INFO | 305-2806325-7081927 | Product 920 Stock = 0, Updating to 1 to generate Order
2861
+ 2015-07-13 13:57:01 | INFO | 305-2806325-7081927 | Adding Order Shipping Cost: 3
2862
+ 2015-07-13 13:57:02 | INFO | 305-2806325-7081927 | Adding Beezup Marketplace Information to Order
2863
+ 2015-07-13 13:57:02 | INFO | 305-2806325-7081927 | Sending Magento Order Id to Beezup, Magento Order Id: 215
2864
+ 2015-07-13 13:57:04 | INFO | 305-2806325-7081927 | Setting Order Status to Shipped
2865
+ 2015-07-13 13:57:04 | INFO | 305-2806325-7081927 | Generating Order Payment Invoice
2866
+ 2015-07-13 13:57:04 | INFO | 305-2806325-7081927 | Order Payment Invoice Generated Succesfully
2867
+ 2015-07-13 13:57:04 | INFO | 305-2806325-7081927 | Order imported succesfully, Magento Order Id: 215
2868
+ 2015-07-13 13:57:06 | INFO | 302-9945495-9192330 | Initializing Order - Link: /orders/v1/733352e8-5a0b-496c-88a5-a3fadd15cdff/Amazon/1038/8D28B48645D3290be2afd63159f428fb3d16555fe389da0
2869
+ 2015-07-13 13:57:06 | INFO | 302-9945495-9192330 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
2870
+ 2015-07-13 13:57:06 | ERROR | 302-9945495-9192330| No Product Matching, Product 15899 could not be found
2871
+ 2015-07-13 13:57:07 | INFO | 302-9945495-9192330 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
2872
+ 2015-07-13 13:57:07 | ERROR | 302-9945495-9192330| No Product Matching, Product 13638 could not be found
2873
+ 2015-07-13 13:57:08 | INFO | 302-9945495-9192330 | Generating Order
2874
+ 2015-07-13 13:57:08 | INFO | 302-9945495-9192330 | Adding 1 product/s with id 991 to order, with Beezup Price: 29
2875
+ 2015-07-13 13:57:08 | INFO | 302-9945495-9192330 | Adding 1 product/s with id 992 to order, with Beezup Price: 32
2876
+ 2015-07-13 13:57:08 | INFO | 302-9945495-9192330 | Adding Order Shipping Cost: 0
2877
+ 2015-07-13 13:57:09 | INFO | 302-9945495-9192330 | Adding Beezup Marketplace Information to Order
2878
+ 2015-07-13 13:57:09 | INFO | 302-9945495-9192330 | Sending Magento Order Id to Beezup, Magento Order Id: 216
2879
+ 2015-07-13 13:57:12 | INFO | 302-9945495-9192330 | Setting Order Status to Shipped
2880
+ 2015-07-13 13:57:12 | INFO | 302-9945495-9192330 | Generating Order Payment Invoice
2881
+ 2015-07-13 13:57:12 | INFO | 302-9945495-9192330 | Order Payment Invoice Generated Succesfully
2882
+ 2015-07-13 13:57:12 | INFO | 302-9945495-9192330 | Order imported succesfully, Magento Order Id: 216
2883
+ 2015-07-13 13:57:13 | INFO | 302-0524017-8191566 | Initializing Order - Link: /orders/v1/733352e8-5a0b-496c-88a5-a3fadd15cdff/Amazon/1038/8D28B486381DB659c807e0401e14a29967969d5197ff296
2884
+ 2015-07-13 13:57:13 | INFO | 302-0524017-8191566 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
2885
+ 2015-07-13 13:57:14 | ERROR | 302-0524017-8191566| No Product Matching, Product 15316 could not be found
2886
+ 2015-07-13 13:57:14 | INFO | 302-0524017-8191566 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
2887
+ 2015-07-13 13:57:14 | ERROR | 302-0524017-8191566| No Product Matching, Product 12533 could not be found
2888
+ 2015-07-13 13:57:15 | INFO | 302-0524017-8191566 | Generating Order
2889
+ 2015-07-13 13:57:15 | INFO | 302-0524017-8191566 | Adding 1 product/s with id 993 to order, with Beezup Price: 15
2890
+ 2015-07-13 13:57:15 | INFO | 302-0524017-8191566 | Adding 1 product/s with id 994 to order, with Beezup Price: 14
2891
+ 2015-07-13 13:57:15 | INFO | 302-0524017-8191566 | Adding Order Shipping Cost: 0
2892
+ 2015-07-13 13:57:16 | INFO | 302-0524017-8191566 | Adding Beezup Marketplace Information to Order
2893
+ 2015-07-13 13:57:16 | INFO | 302-0524017-8191566 | Sending Magento Order Id to Beezup, Magento Order Id: 217
2894
+ 2015-07-13 13:57:17 | INFO | 302-0524017-8191566 | Setting Order Status to Shipped
2895
+ 2015-07-13 13:57:17 | INFO | 302-0524017-8191566 | Generating Order Payment Invoice
2896
+ 2015-07-13 13:57:17 | INFO | 302-0524017-8191566 | Order Payment Invoice Generated Succesfully
2897
+ 2015-07-13 13:57:17 | INFO | 302-0524017-8191566 | Order imported succesfully, Magento Order Id: 217
2898
+ 2015-07-13 13:57:19 | INFO | 303-9466332-8840331 | Initializing Order - Link: /orders/v1/733352e8-5a0b-496c-88a5-a3fadd15cdff/Amazon/1038/8D28B4862BFCF8F9e41a18d689f41d7b5c500fccecbbe5f
2899
+ 2015-07-13 13:57:19 | INFO | 303-9466332-8840331 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
2900
+ 2015-07-13 13:57:19 | ERROR | 303-9466332-8840331| No Product Matching, Product 16445 could not be found
2901
+ 2015-07-13 13:57:20 | INFO | 303-9466332-8840331 | Generating Order
2902
+ 2015-07-13 13:57:20 | INFO | 303-9466332-8840331 | Adding 1 product/s with id 995 to order, with Beezup Price: 23
2903
+ 2015-07-13 13:57:20 | INFO | 303-9466332-8840331 | Adding Order Shipping Cost: 0
2904
+ 2015-07-13 13:57:21 | INFO | 303-9466332-8840331 | Adding Beezup Marketplace Information to Order
2905
+ 2015-07-13 13:57:21 | INFO | 303-9466332-8840331 | Sending Magento Order Id to Beezup, Magento Order Id: 218
2906
+ 2015-07-13 13:57:22 | INFO | 303-9466332-8840331 | Setting Order Status to Shipped
2907
+ 2015-07-13 13:57:22 | INFO | 303-9466332-8840331 | Generating Order Payment Invoice
2908
+ 2015-07-13 13:57:22 | INFO | 303-9466332-8840331 | Order Payment Invoice Generated Succesfully
2909
+ 2015-07-13 13:57:22 | INFO | 303-9466332-8840331 | Order imported succesfully, Magento Order Id: 218
2910
+ 2015-07-13 13:57:24 | INFO | 304-7544290-2295565 | Initializing Order - Link: /orders/v1/733352e8-5a0b-496c-88a5-a3fadd15cdff/Amazon/1038/8D28B48616A195D7073e352e80a4cd18c31d72e53364ade
2911
+ 2015-07-13 13:57:24 | INFO | 304-7544290-2295565 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
2912
+ 2015-07-13 13:57:24 | INFO | 304-7544290-2295565 | Product Matching succesful, Beezup Imported Id: 13016 , Magento Product Id: 973
2913
+ 2015-07-13 13:57:24 | INFO | 304-7544290-2295565 | Generating Order
2914
+ 2015-07-13 13:57:24 | INFO | 304-7544290-2295565 | Adding 2 product/s with id 973 to order, with Beezup Price: 22
2915
+ 2015-07-13 13:57:24 | INFO | 304-7544290-2295565 | Product 973 Stock = 0, Updating to 2 to generate Order
2916
+ 2015-07-13 13:57:25 | INFO | 304-7544290-2295565 | Adding Order Shipping Cost: 0
2917
+ 2015-07-13 13:57:25 | INFO | 304-7544290-2295565 | Adding Beezup Marketplace Information to Order
2918
+ 2015-07-13 13:57:25 | INFO | 304-7544290-2295565 | Sending Magento Order Id to Beezup, Magento Order Id: 219
2919
+ 2015-07-13 13:57:27 | INFO | 304-7544290-2295565 | Setting Order Status to Shipped
2920
+ 2015-07-13 13:57:27 | INFO | 304-7544290-2295565 | Generating Order Payment Invoice
2921
+ 2015-07-13 13:57:27 | INFO | 304-7544290-2295565 | Order Payment Invoice Generated Succesfully
2922
+ 2015-07-13 13:57:28 | INFO | 304-7544290-2295565 | Order imported succesfully, Magento Order Id: 219
2923
+ 2015-07-13 13:57:29 | INFO | 303-6637171-2809953 | Initializing Order - Link: /orders/v1/733352e8-5a0b-496c-88a5-a3fadd15cdff/Amazon/1038/8D28B486105F9796a5179db06a44c5cabd814e42a00dff7
2924
+ 2015-07-13 13:57:29 | INFO | 303-6637171-2809953 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
2925
+ 2015-07-13 13:57:29 | ERROR | 303-6637171-2809953| No Product Matching, Product 12381 could not be found
2926
+ 2015-07-13 13:57:29 | INFO | 303-6637171-2809953 | Generating Order
2927
+ 2015-07-13 13:57:29 | INFO | 303-6637171-2809953 | Adding 1 product/s with id 996 to order, with Beezup Price: 25
2928
+ 2015-07-13 13:57:29 | INFO | 303-6637171-2809953 | Adding Order Shipping Cost: 0
2929
+ 2015-07-13 13:57:30 | INFO | 303-6637171-2809953 | Adding Beezup Marketplace Information to Order
2930
+ 2015-07-13 13:57:30 | INFO | 303-6637171-2809953 | Sending Magento Order Id to Beezup, Magento Order Id: 220
2931
+ 2015-07-13 13:57:32 | INFO | 303-6637171-2809953 | Setting Order Status to Shipped
2932
+ 2015-07-13 13:57:32 | INFO | 303-6637171-2809953 | Generating Order Payment Invoice
2933
+ 2015-07-13 13:57:32 | INFO | 303-6637171-2809953 | Order Payment Invoice Generated Succesfully
2934
+ 2015-07-13 13:57:32 | INFO | 303-6637171-2809953 | Order imported succesfully, Magento Order Id: 220
2935
+ 2015-07-13 13:57:33 | INFO | 303-0450544-0087557 | Initializing Order - Link: /orders/v1/733352e8-5a0b-496c-88a5-a3fadd15cdff/Amazon/1038/8D28B4860178DB7b9aec283f9954799a0b52517dd4a984f
2936
+ 2015-07-13 13:57:33 | INFO | 303-0450544-0087557 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
2937
+ 2015-07-13 13:57:33 | INFO | 303-0450544-0087557 | Product Matching succesful, Beezup Imported Id: 15089 , Magento Product Id: 900
2938
+ 2015-07-13 13:57:33 | INFO | 303-0450544-0087557 | Generating Order
2939
+ 2015-07-13 13:57:33 | INFO | 303-0450544-0087557 | Adding 1 product/s with id 900 to order, with Beezup Price: 25
2940
+ 2015-07-13 13:57:33 | INFO | 303-0450544-0087557 | Product 900 Stock = 0, Updating to 1 to generate Order
2941
+ 2015-07-13 13:57:34 | INFO | 303-0450544-0087557 | Adding Order Shipping Cost: 0
2942
+ 2015-07-13 13:57:35 | INFO | 303-0450544-0087557 | Adding Beezup Marketplace Information to Order
2943
+ 2015-07-13 13:57:35 | INFO | 303-0450544-0087557 | Sending Magento Order Id to Beezup, Magento Order Id: 221
2944
+ 2015-07-13 13:57:36 | INFO | 303-0450544-0087557 | Setting Order Status to Shipped
2945
+ 2015-07-13 13:57:36 | INFO | 303-0450544-0087557 | Generating Order Payment Invoice
2946
+ 2015-07-13 13:57:37 | INFO | 303-0450544-0087557 | Order Payment Invoice Generated Succesfully
2947
+ 2015-07-13 13:57:37 | INFO | 303-0450544-0087557 | Order imported succesfully, Magento Order Id: 221
2948
+ 2015-07-13 13:57:39 | INFO | 303-7666261-6688345 | Initializing Order - Link: /orders/v1/733352e8-5a0b-496c-88a5-a3fadd15cdff/Amazon/1038/8D28B485FB8309098922169271743c8bf00cc47be2a56da
2949
+ 2015-07-13 13:57:39 | INFO | 303-7666261-6688345 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
2950
+ 2015-07-13 13:57:39 | INFO | 303-7666261-6688345 | Product Matching succesful, Beezup Imported Id: 15089 , Magento Product Id: 900
2951
+ 2015-07-13 13:57:39 | INFO | 303-7666261-6688345 | Generating Order
2952
+ 2015-07-13 13:57:39 | INFO | 303-7666261-6688345 | Adding 1 product/s with id 900 to order, with Beezup Price: 25
2953
+ 2015-07-13 13:57:39 | INFO | 303-7666261-6688345 | Product 900 Stock = 0, Updating to 1 to generate Order
2954
+ 2015-07-13 13:57:40 | INFO | 303-7666261-6688345 | Adding Order Shipping Cost: 0
2955
+ 2015-07-13 13:57:40 | INFO | 303-7666261-6688345 | Adding Beezup Marketplace Information to Order
2956
+ 2015-07-13 13:57:40 | INFO | 303-7666261-6688345 | Sending Magento Order Id to Beezup, Magento Order Id: 222
2957
+ 2015-07-13 13:57:41 | INFO | 303-7666261-6688345 | Setting Order Status to Shipped
2958
+ 2015-07-13 13:57:41 | INFO | 303-7666261-6688345 | Generating Order Payment Invoice
2959
+ 2015-07-13 13:57:42 | INFO | 303-7666261-6688345 | Order Payment Invoice Generated Succesfully
2960
+ 2015-07-13 13:57:42 | INFO | 303-7666261-6688345 | Order imported succesfully, Magento Order Id: 222
2961
+ 2015-07-13 13:57:44 | INFO | 305-6915356-5209109 | Initializing Order - Link: /orders/v1/733352e8-5a0b-496c-88a5-a3fadd15cdff/Amazon/1038/8D28B485F6E47DAd5bf2b6178174728a04a24179a1f84f9
2962
+ 2015-07-13 13:57:44 | INFO | 305-6915356-5209109 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
2963
+ 2015-07-13 13:57:44 | ERROR | 305-6915356-5209109| No Product Matching, Product 16443 could not be found
2964
+ 2015-07-13 13:57:44 | INFO | 305-6915356-5209109 | Generating Order
2965
+ 2015-07-13 13:57:44 | INFO | 305-6915356-5209109 | Adding 1 product/s with id 997 to order, with Beezup Price: 23
2966
+ 2015-07-13 13:57:44 | INFO | 305-6915356-5209109 | Adding Order Shipping Cost: 3
2967
+ 2015-07-13 13:57:45 | INFO | 305-6915356-5209109 | Adding Beezup Marketplace Information to Order
2968
+ 2015-07-13 13:57:45 | INFO | 305-6915356-5209109 | Sending Magento Order Id to Beezup, Magento Order Id: 223
2969
+ 2015-07-13 13:57:47 | INFO | 305-6915356-5209109 | Setting Order Status to Shipped
2970
+ 2015-07-13 13:57:47 | INFO | 305-6915356-5209109 | Generating Order Payment Invoice
2971
+ 2015-07-13 13:57:47 | INFO | 305-6915356-5209109 | Order Payment Invoice Generated Succesfully
2972
+ 2015-07-13 13:57:47 | INFO | 305-6915356-5209109 | Order imported succesfully, Magento Order Id: 223
2973
+ 2015-07-13 13:57:48 | INFO | 304-2157449-5904346 | Initializing Order - Link: /orders/v1/733352e8-5a0b-496c-88a5-a3fadd15cdff/Amazon/1038/8D28B4019E40A16e7e9f911ff2041d7a9348107dc2a7bfd
2974
+ 2015-07-13 13:57:48 | INFO | 304-2157449-5904346 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
2975
+ 2015-07-13 13:57:48 | ERROR | 304-2157449-5904346| No Product Matching, Product 12385 could not be found
2976
+ 2015-07-13 13:57:49 | INFO | 304-2157449-5904346 | Generating Order
2977
+ 2015-07-13 13:57:49 | INFO | 304-2157449-5904346 | Adding 1 product/s with id 998 to order, with Beezup Price: 25
2978
+ 2015-07-13 13:57:49 | INFO | 304-2157449-5904346 | Adding Order Shipping Cost: 0
2979
+ 2015-07-13 13:57:50 | INFO | 304-2157449-5904346 | Adding Beezup Marketplace Information to Order
2980
+ 2015-07-13 13:57:50 | INFO | 304-2157449-5904346 | Sending Magento Order Id to Beezup, Magento Order Id: 224
2981
+ 2015-07-13 13:57:51 | INFO | 304-2157449-5904346 | Setting Order Status to Shipped
2982
+ 2015-07-13 13:57:51 | INFO | 304-2157449-5904346 | Generating Order Payment Invoice
2983
+ 2015-07-13 13:57:51 | INFO | 304-2157449-5904346 | Order Payment Invoice Generated Succesfully
2984
+ 2015-07-13 13:57:52 | INFO | 304-2157449-5904346 | Order imported succesfully, Magento Order Id: 224
2985
+ 2015-07-13 13:57:53 | INFO | 302-3340055-2998725 | Initializing Order - Link: /orders/v1/733352e8-5a0b-496c-88a5-a3fadd15cdff/Amazon/1038/8D2838E5AF5A2162f8cf69878e54e33ab492c9f8e446430
2986
+ 2015-07-13 13:57:53 | INFO | 302-3340055-2998725 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
2987
+ 2015-07-13 13:57:53 | INFO | 302-3340055-2998725 | Product Matching succesful, Beezup Imported Id: 15454 , Magento Product Id: 833
2988
+ 2015-07-13 13:57:53 | INFO | 302-3340055-2998725 | Generating Order
2989
+ 2015-07-13 13:57:53 | INFO | 302-3340055-2998725 | Adding 1 product/s with id 833 to order, with Beezup Price: 32
2990
+ 2015-07-13 13:57:53 | INFO | 302-3340055-2998725 | Product 833 Stock = 0, Updating to 1 to generate Order
2991
+ 2015-07-13 13:57:54 | INFO | 302-3340055-2998725 | Adding Order Shipping Cost: 0
2992
+ 2015-07-13 13:57:54 | INFO | 302-3340055-2998725 | Adding Beezup Marketplace Information to Order
2993
+ 2015-07-13 13:57:54 | INFO | 302-3340055-2998725 | Sending Magento Order Id to Beezup, Magento Order Id: 225
2994
+ 2015-07-13 13:57:56 | INFO | 302-3340055-2998725 | Setting Order Status to Shipped
2995
+ 2015-07-13 13:57:56 | INFO | 302-3340055-2998725 | Generating Order Payment Invoice
2996
+ 2015-07-13 13:57:56 | INFO | 302-3340055-2998725 | Order Payment Invoice Generated Succesfully
2997
+ 2015-07-13 13:57:56 | INFO | 302-3340055-2998725 | Order imported succesfully, Magento Order Id: 225
2998
+ 2015-07-13 13:57:58 | INFO | 302-9133020-2062747 | Initializing Order - Link: /orders/v1/733352e8-5a0b-496c-88a5-a3fadd15cdff/Amazon/1038/8D28B37DDD8E7298c7c9ebb864647878be5fc0202eee347
2999
+ 2015-07-13 13:57:58 | INFO | 302-9133020-2062747 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
3000
+ 2015-07-13 13:57:58 | ERROR | 302-9133020-2062747| No Product Matching, Product 13296 could not be found
3001
+ 2015-07-13 13:57:58 | INFO | 302-9133020-2062747 | Generating Order
3002
+ 2015-07-13 13:57:58 | INFO | 302-9133020-2062747 | Adding 1 product/s with id 999 to order, with Beezup Price: 34
3003
+ 2015-07-13 13:57:58 | INFO | 302-9133020-2062747 | Adding Order Shipping Cost: 3
3004
+ 2015-07-13 13:57:59 | INFO | 302-9133020-2062747 | Adding Beezup Marketplace Information to Order
3005
+ 2015-07-13 13:57:59 | INFO | 302-9133020-2062747 | Sending Magento Order Id to Beezup, Magento Order Id: 226
3006
+ 2015-07-13 13:58:00 | INFO | 302-9133020-2062747 | Setting Order Status to InProgress
3007
+ 2015-07-13 13:58:00 | INFO | 302-9133020-2062747 | Generating Order Payment Invoice
3008
+ 2015-07-13 13:58:00 | INFO | 302-9133020-2062747 | Order Payment Invoice Generated Succesfully
3009
+ 2015-07-13 13:58:01 | INFO | 302-9133020-2062747 | Order imported succesfully, Magento Order Id: 226
3010
+ 2015-07-13 13:58:02 | INFO | 028-2204007-9105941 | Initializing Order - Link: /orders/v1/733352e8-5a0b-496c-88a5-a3fadd15cdff/Amazon/1038/8D28AE3F12DB11Afd4b676391484c34946d448a360a2967
3011
+ 2015-07-13 13:58:02 | INFO | 028-2204007-9105941 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
3012
+ 2015-07-13 13:58:02 | ERROR | 028-2204007-9105941| No Product Matching, Product 16296 could not be found
3013
+ 2015-07-13 13:58:03 | INFO | 028-2204007-9105941 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
3014
+ 2015-07-13 13:58:03 | ERROR | 028-2204007-9105941| No Product Matching, Product 14917 could not be found
3015
+ 2015-07-13 13:58:04 | INFO | 028-2204007-9105941 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
3016
+ 2015-07-13 13:58:04 | ERROR | 028-2204007-9105941| No Product Matching, Product 15381 could not be found
3017
+ 2015-07-13 13:58:04 | INFO | 028-2204007-9105941 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
3018
+ 2015-07-13 13:58:04 | ERROR | 028-2204007-9105941| No Product Matching, Product 15171 could not be found
3019
+ 2015-07-13 13:58:05 | INFO | 028-2204007-9105941 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
3020
+ 2015-07-13 13:58:05 | ERROR | 028-2204007-9105941| No Product Matching, Product 14945 could not be found
3021
+ 2015-07-13 13:58:06 | INFO | 028-2204007-9105941 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
3022
+ 2015-07-13 13:58:06 | ERROR | 028-2204007-9105941| No Product Matching, Product 14580 could not be found
3023
+ 2015-07-13 13:58:06 | INFO | 028-2204007-9105941 | Generating Order
3024
+ 2015-07-13 13:58:06 | INFO | 028-2204007-9105941 | Adding 1 product/s with id 1000 to order, with Beezup Price: 14
3025
+ 2015-07-13 13:58:06 | INFO | 028-2204007-9105941 | Adding 1 product/s with id 1001 to order, with Beezup Price: 12
3026
+ 2015-07-13 13:58:06 | INFO | 028-2204007-9105941 | Adding 1 product/s with id 1002 to order, with Beezup Price: 14
3027
+ 2015-07-13 13:58:06 | INFO | 028-2204007-9105941 | Adding 1 product/s with id 1003 to order, with Beezup Price: 14
3028
+ 2015-07-13 13:58:06 | INFO | 028-2204007-9105941 | Adding 1 product/s with id 1004 to order, with Beezup Price: 14
3029
+ 2015-07-13 13:58:06 | INFO | 028-2204007-9105941 | Adding 1 product/s with id 1005 to order, with Beezup Price: 14
3030
+ 2015-07-13 13:58:06 | INFO | 028-2204007-9105941 | Adding Order Shipping Cost: 0
3031
+ 2015-07-13 13:58:08 | INFO | 028-2204007-9105941 | Adding Beezup Marketplace Information to Order
3032
+ 2015-07-13 13:58:08 | INFO | 028-2204007-9105941 | Sending Magento Order Id to Beezup, Magento Order Id: 227
3033
+ 2015-07-13 13:58:09 | INFO | 028-2204007-9105941 | Setting Order Status to InProgress
3034
+ 2015-07-13 13:58:09 | INFO | 028-2204007-9105941 | Generating Order Payment Invoice
3035
+ 2015-07-13 13:58:10 | INFO | 028-2204007-9105941 | Order Payment Invoice Generated Succesfully
3036
+ 2015-07-13 13:58:10 | INFO | 028-2204007-9105941 | Order imported succesfully, Magento Order Id: 227
3037
+ 2015-07-13 13:58:12 | INFO | 303-2224178-6705917 | Initializing Order - Link: /orders/v1/733352e8-5a0b-496c-88a5-a3fadd15cdff/Amazon/1038/8D28ADB84EA3C538304a4d464fc405fb77bca81f99d451d
3038
+ 2015-07-13 13:58:12 | INFO | 303-2224178-6705917 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
3039
+ 2015-07-13 13:58:12 | ERROR | 303-2224178-6705917| No Product Matching, Product 15367 could not be found
3040
+ 2015-07-13 13:58:12 | INFO | 303-2224178-6705917 | Generating Order
3041
+ 2015-07-13 13:58:12 | INFO | 303-2224178-6705917 | Adding 1 product/s with id 1006 to order, with Beezup Price: 37
3042
+ 2015-07-13 13:58:12 | INFO | 303-2224178-6705917 | Adding Order Shipping Cost: 3
3043
+ 2015-07-13 13:58:13 | INFO | 303-2224178-6705917 | Adding Beezup Marketplace Information to Order
3044
+ 2015-07-13 13:58:13 | INFO | 303-2224178-6705917 | Sending Magento Order Id to Beezup, Magento Order Id: 228
3045
+ 2015-07-13 13:58:15 | INFO | 303-2224178-6705917 | Setting Order Status to InProgress
3046
+ 2015-07-13 13:58:15 | INFO | 303-2224178-6705917 | Generating Order Payment Invoice
3047
+ 2015-07-13 13:58:15 | INFO | 303-2224178-6705917 | Order Payment Invoice Generated Succesfully
3048
+ 2015-07-13 13:58:15 | INFO | 303-2224178-6705917 | Order imported succesfully, Magento Order Id: 228
3049
+ 2015-07-13 13:58:18 | INFO | 028-1182996-6618766 | Initializing Order - Link: /orders/v1/733352e8-5a0b-496c-88a5-a3fadd15cdff/Amazon/1038/8D28AB9E5D7C106ef417d5cde1245c1bb0f73db34a7ab3a
3050
+ 2015-07-13 13:58:18 | INFO | 028-1182996-6618766 | Store Matching succesful, Beezup Store: 10e0d648-1ddb-4a20-ae72-1a2a3effd594 , Magento Store Id: 1
3051
+ 2015-07-13 13:58:18 | ERROR | 028-1182996-6618766| No Product Matching, Product 15033 could not be found
3052
+ 2015-07-13 13:58:18 | INFO | 028-1182996-6618766 | Generating Order
3053
+ 2015-07-13 13:58:18 | INFO | 028-1182996-6618766 | Adding 1 product/s with id 1007 to order, with Beezup Price: 14
3054
+ 2015-07-13 13:58:18 | INFO | 028-1182996-6618766 | Adding Order Shipping Cost: 3
3055
+ 2015-07-13 13:58:19 | INFO | 028-1182996-6618766 | Adding Beezup Marketplace Information to Order
3056
+ 2015-07-13 13:58:19 | INFO | 028-1182996-6618766 | Sending Magento Order Id to Beezup, Magento Order Id: 229
3057
+ 2015-07-13 13:58:21 | INFO | 028-1182996-6618766 | Setting Order Status to InProgress
3058
+ 2015-07-13 13:58:21 | INFO | 028-1182996-6618766 | Generating Order Payment Invoice
3059
+ 2015-07-13 13:58:21 | INFO | 028-1182996-6618766 | Order Payment Invoice Generated Succesfully
3060
+ 2015-07-13 13:58:21 | INFO | 028-1182996-6618766 | Order imported succesfully, Magento Order Id: 229
3061
+ 2015-07-13 13:58:22 | INFO | OM Importation finalized succesfully
app/design/adminhtml/default/default/template/beezup/custom.phtml CHANGED
@@ -6,8 +6,8 @@
6
 
7
  <?php
8
  $order = $this->getOrder();
9
-
10
-
11
 
12
  $resource = Mage::getSingleton('core/resource');
13
  $readConnection = $resource->getConnection('core_read');
@@ -17,7 +17,8 @@ $order = $this->getOrder();
17
  $results = $readConnection->fetchAll($query);
18
  //var_dump($results);
19
  if($results[0]['beezup_order'] == 1) {
20
-
 
21
  $date = new DateTime($results[0]['beezup_marketplace_last_modification_date']);
22
  $beezup_marketplace_last_modification_date = $date->format('d-m-Y H:i:s'). " (UTC Time)";
23
 
@@ -46,5 +47,294 @@ $beezup_last_modification_date = $date3->format('d-m-Y H:i:s'). " (UTC Time)";
46
  }
47
 
48
  ?>
 
49
  </div>
50
- </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6
 
7
  <?php
8
  $order = $this->getOrder();
9
+ $blnBeezup = false;
10
+ $base_url = $url = Mage::getBaseUrl( Mage_Core_Model_Store::URL_TYPE_WEB, true );
11
 
12
  $resource = Mage::getSingleton('core/resource');
13
  $readConnection = $resource->getConnection('core_read');
17
  $results = $readConnection->fetchAll($query);
18
  //var_dump($results);
19
  if($results[0]['beezup_order'] == 1) {
20
+ $blnBeezup = true;
21
+
22
  $date = new DateTime($results[0]['beezup_marketplace_last_modification_date']);
23
  $beezup_marketplace_last_modification_date = $date->format('d-m-Y H:i:s'). " (UTC Time)";
24
 
47
  }
48
 
49
  ?>
50
+
51
  </div>
52
+ </div>
53
+ <?php if($blnBeezup) {
54
+ $firstname = Mage::getSingleton('admin/session')->getUser()->getFirstname();
55
+ $lastname = Mage::getSingleton('admin/session')->getUser()->getLastname();
56
+ $username = $firstname." ".$lastname;
57
+
58
+ $helper = Mage::helper('beezup');
59
+ $userid = $helper->getConfig('beezup/marketplace/userid');
60
+ $usertoken = $helper->getConfig('beezup/marketplace/usertoken');
61
+
62
+ $order_actions = $this->getBeezupInfo($order->getId());
63
+ ?>
64
+
65
+
66
+ <style>
67
+ #acciones {
68
+
69
+ width: 80%;
70
+ float: left;
71
+
72
+ }
73
+ .calendar {
74
+ left: 40% !important;
75
+ position:fixed !Important;
76
+ top: 31% !Important;
77
+ z-index: 999999999 !Important;
78
+
79
+ }
80
+ .beezup-modal-dialog {
81
+ visibility:hidden;
82
+ position: fixed;
83
+ left: 0px;
84
+ top: 20%;
85
+ width: 30%;
86
+
87
+ text-align: center;
88
+ z-index: 1000;
89
+ border: 2px solid gray;
90
+ background: blue;
91
+ z-index: 999999;
92
+ margin: 0 auto;
93
+ left: 0;
94
+ right: 0;
95
+ height: auto;
96
+ padding-bottom:20px;
97
+ background: white;
98
+ z-index: 999999;
99
+ }
100
+ .popup-close {
101
+ position:absolute;
102
+ right:0;
103
+ cursor: pointer;
104
+ width: 30px;
105
+ border: 1px solid #808080;
106
+ height: 30px;
107
+ line-height: 28px;
108
+ font-size: 18px;
109
+ background: gray;
110
+ color: white;
111
+ z-index: 999999999;
112
+ }
113
+ #fondo {
114
+ visibility:hidden;
115
+ position: fixed;
116
+ height: 100%;
117
+ width: 100%;
118
+ background: #000 none repeat scroll 0% 0%;
119
+ opacity: 0.5;
120
+ top: 0;
121
+ left: 0;
122
+ z-index: 9999;
123
+
124
+ }
125
+ </style>
126
+
127
+ <div id="fondo"></div>
128
+ <div class="entry-edit">
129
+ <div class="entry-edit-head">
130
+ <h4><?php echo $this->__('BeezUP Order Status'); ?></h4>
131
+ </div>
132
+ <div class="fieldset fieldset-wide">
133
+ <div class="alert" id="msgAlert" style="display:none;padding: 10px;background-color: lightgrey; color:white;margin-bottom: 10px;"></div>
134
+ <div id="acciones">
135
+ <?php
136
+ if($order_actions['is_pending'] == false) {
137
+ foreach($order_actions as $key => $action) {
138
+ if(isset($action['action'])) {
139
+ $label = preg_replace('/(?<!\ )[A-Z]/', ' $0', $action['action']);
140
+ ?>
141
+
142
+ <button class="button" style="background:gray;border-color:gray;" onclick="overlay('<?php echo $action['action'];?>');"><?php echo $label;?></button>
143
+
144
+
145
+ <div id="overlay_<?php echo $action['action'];?>" class="beezup-modal-dialog">
146
+ <div>
147
+ <span class="popup-close" onclick="overlay('<?php echo $action['action'];?>');">X</span>
148
+ <h3 style="position: relative;top: 5px;color:gray;"><?php echo Mage::helper('beezup')->__('Update Order Status');?></h3>
149
+ <hr style="margin-top: 9px;color: gray; background: gray;">
150
+ <form id="Updateform_<?php echo $action['action'];?>">
151
+ <div style="margin-top:10px;padding:10px;">
152
+ <?php $inputs = $this->generateInput($action['parameters']);
153
+ echo $inputs;
154
+ ?>
155
+
156
+ </div>
157
+ <div id="submitBtn-<?php echo $action['action'];?>" style=" float: right;margin-right: 25px;"><button type="button" onclick="updateOrder('<?php echo $action['action'];?>');" class="button" name="submit" ><?php echo Mage::helper('beezup')->__('Update');?></button></div>
158
+ </form>
159
+ </div>
160
+ </div>
161
+
162
+ <?php }
163
+ } } else {?>
164
+
165
+ <div style="padding: 10px;background-color: lightgrey; margin-bottom: 10px;"><?php echo Mage::helper('beezup')->__('Order is syncronizing, please resync within a few mins to get updated info');?></div>
166
+
167
+ <?php } ?>
168
+ </div>
169
+
170
+ <button class="button" style="float:right;" onclick="resync();"><?php echo Mage::helper('beezup')->__('Resync Order');?></button>
171
+ <div id="ajax-loader" style="display:none;float:right;"><img src="<?php echo $base_url."/beezup/omstatus/loader";?>" /></div>
172
+ <br>
173
+ <div id="statusLoad" style="margin-top:15px;">
174
+ </div>
175
+
176
+
177
+
178
+ </div>
179
+
180
+ </div>
181
+
182
+
183
+ <script>
184
+ var ajax = {};
185
+ ajax.x = function() {
186
+ if (typeof XMLHttpRequest !== 'undefined') {
187
+ return new XMLHttpRequest();
188
+ }
189
+ var versions = [
190
+ "MSXML2.XmlHttp.6.0",
191
+ "MSXML2.XmlHttp.5.0",
192
+ "MSXML2.XmlHttp.4.0",
193
+ "MSXML2.XmlHttp.3.0",
194
+ "MSXML2.XmlHttp.2.0",
195
+ "Microsoft.XmlHttp"
196
+ ];
197
+
198
+ var xhr;
199
+ for(var i = 0; i < versions.length; i++) {
200
+ try {
201
+ xhr = new ActiveXObject(versions[i]);
202
+ break;
203
+ } catch (e) {
204
+ }
205
+ }
206
+ return xhr;
207
+ };
208
+
209
+ ajax.send = function(url, callback, method, data, sync) {
210
+ var x = ajax.x();
211
+ x.open(method, url, sync);
212
+ x.onreadystatechange = function() {
213
+ if (x.readyState == 4) {
214
+ callback(x.responseText)
215
+ }
216
+ };
217
+ if (method == 'POST') {
218
+ x.setRequestHeader('Content-type', 'application/x-www-form-urlencoded');
219
+ }
220
+ x.send(data)
221
+ };
222
+
223
+ ajax.get = function(url, data, callback, sync) {
224
+ var query = [];
225
+ for (var key in data) {
226
+ query.push(encodeURIComponent(key) + '=' + encodeURIComponent(data[key]));
227
+ }
228
+ ajax.send(url + (query.length ? '?' + query.join('&') : ''), callback, 'GET', null, sync)
229
+ };
230
+
231
+ ajax.post = function(url, data, callback, sync) {
232
+ var query = [];
233
+ for (var key in data) {
234
+ query.push(encodeURIComponent(key) + '=' + encodeURIComponent(data[key]));
235
+ }
236
+ ajax.send(url, callback, 'POST', query.join('&'), sync)
237
+ };
238
+
239
+
240
+
241
+ function resync() {
242
+ document.getElementById("ajax-loader").style.display="block";
243
+
244
+ setTimeout(function () {
245
+ ajax.get('<?php echo $base_url."beezup/omstatus/resync";?>', {order_id : <?php echo $order->getId();?>, uid : '<?php echo $userid;?>', token : '<?php echo $usertoken;?>'}, function(response) {
246
+ document.getElementById("msgAlert").innerHTML = '';
247
+ document.getElementById("msgAlert").style.display = "block";
248
+
249
+ document.getElementById("ajax-loader").style.display="none";
250
+ if(response == 1) {
251
+ document.getElementById("msgAlert").innerHTML = '<?php echo Mage::helper('beezup')->__("Updated Order Ok page will refresh in 2 secc");?>';
252
+ document.getElementById("msgAlert").style.backgroundColor = "green";
253
+
254
+ setTimeout(function () { window.location='window.location.href'; } , 2000);
255
+ } else if(response == 2) {
256
+ document.getElementById("msgAlert").innerHTML = '<?php echo Mage::helper('beezup')->__('Order has been refreshed with no change');?>';
257
+ document.getElementById("msgAlert").style.backgroundColor = "orange";
258
+
259
+ } else {
260
+ document.getElementById("msgAlert").innerHTML = '<?php echo Mage::helper('beezup')->__("Order is syncronizing, please resync within a few mins to get updated info");?>';
261
+ document.getElementById("msgAlert").style.backgroundColor = "orange";
262
+
263
+
264
+ }
265
+
266
+ });
267
+
268
+
269
+ }, 1000);
270
+ }
271
+ function overlay(action) {
272
+ var el = document.getElementById("overlay_"+action);
273
+ el.style.visibility = (el.style.visibility == "visible") ? "hidden" : "visible";
274
+ var fondo = document.getElementById("fondo");
275
+ fondo.style.visibility = (fondo.style.visibility == "visible") ? "hidden" : "visible";
276
+ }
277
+
278
+
279
+ function updateOrder(action) {
280
+ var form = document.getElementById('Updateform_'+action);
281
+ var data = serialize(form);
282
+ var btnSubmit = document.getElementById("submitBtn-"+action);
283
+ var alert = document.getElementById("msgAlert");
284
+ var el = document.getElementById("overlay_"+action);
285
+ var fondo = document.getElementById("fondo");
286
+ var acciones = document.getElementById("acciones");
287
+ btnSubmit.innerHTML = "<img src='<?php echo $base_url."/beezup/omstatus/loader";?>' />";
288
+ ajax.get('<?php echo $base_url."beezup/omstatus/update?"?>'+data+"&adminUser=<?php echo $username;?>&order_id=<?php echo $order->getId();?>&uid=<?php echo $userid;?>&token=<?php echo $usertoken;?>&action_id="+action, {}, function(response) {
289
+
290
+ if (response.indexOf("SUCCESS") !=-1) {
291
+ alert.style.backgroundColor = "green";
292
+
293
+ } else {
294
+ alert.style.backgroundColor = "red";
295
+
296
+
297
+ }
298
+
299
+ alert.innerHTML = response;
300
+ alert.style.display="block";
301
+ btnSubmit.innerHTML = "";
302
+ fondo.style.visibility = (fondo.style.visibility == "visible") ? "hidden" : "visible";
303
+ el.style.visibility = (el.style.visibility == "visible") ? "hidden" : "visible";
304
+ acciones.innerHTML = "";
305
+ setTimeout(function () {
306
+ resync();
307
+ }, 2000);
308
+ });
309
+
310
+
311
+ console.log(data);
312
+ }
313
+
314
+
315
+
316
+
317
+ function serialize(form) {
318
+ var field, s = [];
319
+ if (typeof form == 'object' && form.nodeName == "FORM") {
320
+ var len = form.elements.length;
321
+ for (i=0; i<len; i++) {
322
+ field = form.elements[i];
323
+ if (field.name && !field.disabled && field.type != 'file' && field.type != 'reset' && field.type != 'submit' && field.type != 'button') {
324
+ if (field.type == 'select-multiple') {
325
+ for (j=form.elements[i].options.length-1; j>=0; j--) {
326
+ if(field.options[j].selected)
327
+ s[s.length] = encodeURIComponent(field.name) + "=" + encodeURIComponent(field.options[j].value);
328
+ }
329
+ } else if ((field.type != 'checkbox' && field.type != 'radio') || field.checked) {
330
+ s[s.length] = encodeURIComponent(field.name) + "=" + encodeURIComponent(field.value);
331
+ }
332
+ }
333
+ }
334
+ }
335
+ return s.join('&').replace(/%20/g, '+');
336
+ }
337
+ </script>
338
+
339
+ <?php
340
+ } ?>
app/locale/fr_FR/BeezUp.csv CHANGED
@@ -31,7 +31,7 @@ BeezUP Last Modification Date:,Derniere Date de modification BeezUP
31
  Beezup Order,Commande BeezUP
32
  BeezUP Order Id:,BeezUP Order ID:
33
  BeezUP Order Link:,Lien vers commande BeezUP
34
- Beezup Orders,Commandes BeezUP
35
  BeezUP Purchase Date: ,Date d'achat:
36
  BeezUP Server IP address,Adresse IP du serveur BeezUP
37
  BeezUP Status:,Statut BeezUP:
@@ -93,7 +93,6 @@ Not Syncing,No Sync
93
  OK,OK
94
  Only for CSV file,Uniquement pour le fichier CSV
95
  Only this IP address will be able to read the flow (leave empty to disable the restriction),"Seule cette adresse IP sera en mesure de lire le flux (laisser vide pour d&eacute;sactiver la restriction)"
96
- Orders,Commandes BeezUP
97
  Out of Stock,Hors stock
98
  Out of stock products,Produits hors stock
99
  parent_id,parent_id
@@ -130,4 +129,21 @@ You are viewing a) case of order grid.,You are viewing a) case of order grid.
130
  You are viewing Beezup sales order grid.,You are viewing Beezup sales order grid.
131
  You are viewing default sales order grid.,You are viewing default sales order grid.
132
  Create products if not matched - should always be disabled in production shop, Permet la cr&eacute;ation des produits si aucune correspondance n'est trouv&eacute;e - doit toujours &ecirc;tre inactif sur les sites en production
133
- For full logs see here:, Pour des logs complets voir ici:
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
31
  Beezup Order,Commande BeezUP
32
  BeezUP Order Id:,BeezUP Order ID:
33
  BeezUP Order Link:,Lien vers commande BeezUP
34
+ BeezUP Orders,Commandes BeezUP
35
  BeezUP Purchase Date: ,Date d'achat:
36
  BeezUP Server IP address,Adresse IP du serveur BeezUP
37
  BeezUP Status:,Statut BeezUP:
93
  OK,OK
94
  Only for CSV file,Uniquement pour le fichier CSV
95
  Only this IP address will be able to read the flow (leave empty to disable the restriction),"Seule cette adresse IP sera en mesure de lire le flux (laisser vide pour d&eacute;sactiver la restriction)"
 
96
  Out of Stock,Hors stock
97
  Out of stock products,Produits hors stock
98
  parent_id,parent_id
129
  You are viewing Beezup sales order grid.,You are viewing Beezup sales order grid.
130
  You are viewing default sales order grid.,You are viewing default sales order grid.
131
  Create products if not matched - should always be disabled in production shop, Permet la cr&eacute;ation des produits si aucune correspondance n'est trouv&eacute;e - doit toujours &ecirc;tre inactif sur les sites en production
132
+ For full logs see here:, Pour des logs complets voir ici:
133
+ Order update well executed and is currently resyncing,Demande de changement de statut execut&eacute;e avec succ&egrave;s - resynchro en cours
134
+ Unable to load BeezUP order,Impossible de charger la commande BeezUP
135
+ Invalid order id,Id de commande invalide
136
+ No action id,Pas d'action ID
137
+ Invalid action,Action invalide
138
+ Unable to update,Impossible de mettre &agrave; jour
139
+ BeezUP Order Status,Statut de commande BeezUP
140
+ Order is syncronizing - please resync within a few mins to get updated info,Commande en cours de synchro - merci d'attendre et de resynchroniser manuellement d'ici quelques minutes.
141
+ Update,Mise &agrave; jour
142
+ Update Order Status, Mise &agrave; jour de commande
143
+ Resync Order, Resynchroniser cette commande
144
+ Updated Order Ok - page will refresh in 2 sec,Commande mise &agrave; jour avec succ�s - rafraichissement de la page sous 2 sec
145
+ Order has been refreshed with no change,Commande mise &agrave; jour sans changement
146
+ Order is syncronizing, please resync within a few mins to get updated info,Commande en cours de synchro - merci d'attendre et de resynchroniser manuellement d'ici quelques minutes.
147
+ Refresh time of the cache export file in hours,Dur&egrave;e de vie du cache en heures
148
+ Category Logic,Logique de cat&egrave;gories
149
+ Choose option 1 if don't know what this is,Choisissez l'option 1, si vous ne savez pas ce dont il s'agit
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.1.0</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,12 +42,13 @@ After Set-up, the following files are added :&lt;/p&gt;&#xD;
42
  &#xD;
43
  &lt;p&gt;By BeezUP &amp; Magentix&lt;/p&gt;</description>
44
  <notes>New features :&#xD;
45
- &gt; Minor Orders retrieval bug&#xD;
46
- &gt; Categories logic</notes>
 
47
  <authors><author><name>BeezUP</name><user>BeezUP</user><email>charles@beezup.com</email></author></authors>
48
- <date>2015-06-12</date>
49
- <time>09:08:13</time>
50
- <contents><target name="magecommunity"><dir name="BeezUp"><dir name="Block"><dir name="Adminhtml"><dir name="Sales"><dir name="Order"><dir name="Creditmemo"><file name="Totals.php" hash="cf7754624d51f53fb024353b135e0fb3"/></dir><file name="Grid.php" hash="f3abc6748cec60dcce610b2cfe6af32c"/><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="9c561365287993c70ba679afbfd4f7fb"/></dir></dir></dir></dir><dir name="System"><dir name="Config"><file name="Attributes.php" hash="a504265fe4dc2df69b311d8219c88fbf"/><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="56f4877f21e94d046f9d3eac3ae1b254"/><file name="Manualcron.php" hash="cbac01f15d256a43f0388f58449bffd0"/><file name="Stores.php" hash="4297f4c94f136bb9778c9ddcd0cb336c"/><file name="Syncstatus.php" hash="49164eb19331aadabc0581472cd3c567"/><file name="Time.php" hash="ac5c2e4a40e9c6ff68cea1097dfa1e7b"/></dir></dir></dir><file name="Order.php" hash="cf2b26596073c5e959939ce5a869e386"/><file name="Tracking.php" hash="e6dcd6b89e782b2eb6cb83abfb1b7f56"/><file name="Xml.php" hash="96dd9220fc56bcf56d9c9b4c158bc930"/></dir><dir name="Helper"><file name="Data.php" hash="1cbbd163fea65ae82224a11c95d90e03"/></dir><dir name="Model"><file name="Flatrate.php" hash="27d078203781d9b923605f685bfe5c25"/><file name="Observer.php" hash="3bcb925df1965ef23ef1fb08ab64de08"/><file name="Products.php" hash="5924850c628fe1e62bb656bd77e63ee7"/><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="Credentials.php" hash="5c5ca91b68bebe3a0354a9b22f5f44f3"/><file name="Time.php" hash="a70e4d748a9b300ec7b718168fa4d5f8"/><file name="Token.php" hash="60247c8b4d5889433ae1f92e998cc889"/></dir><dir name="Source"><file name="Attributes.php" hash="878b6ed9c50afee368f2688a1ff56f5e"/><file name="Availableproducts.php" hash="d9d4b3705f5fbd98efbae0289a1b6d6d"/><file name="Cache.php" hash="0ca6ccc2fed56e2c602d76880d062053"/><file name="Debug.php" hash="6538ebc0cd0d61c124e5adc806e71aff"/><file name="Description.php" hash="e4f80883f8a2deab48af9625582edfb6"/><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="3b38e6a923d98f2739b70c9960958dd6"/><file name="Status.php" hash="d32004ad97adac6de361703a403a6a97"/><file name="Userid.php" hash="3d028bc3bfcaf7541b57676c014c94db"/></dir></dir></dir></dir><dir name="controllers"><file name="CacheController.php" hash="512cc26abd39d556104d5e69c0ac8a0d"/><file name="CatalogController.php" hash="b1b170b6dcb9dc3f95dc46dec24a37a7"/><file name="CronController.php" hash="5cc9e5e5eca471d644ef7dee991ce6b9"/><file name="LogController.php" hash="5eff0d0a2c5621456e580e214d05c745"/><dir name="Sales"><file name="OrderController.php" hash="6c8ef505a493d60ce10711a8ea68d8a6"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="d886bd576ed5349e2a27fcd2ec7dfd24"/><file name="config.xml" hash="85c93808f4e955b32a0a2cff3d33993a"/><file name="system.xml" hash="60f4ac3ebfa9b54b321cd55897aa64d4"/></dir><dir name="lib"><file name="BeezupMageOrders.php" hash="84701dee5023438a9c06b8abc5f6f2c1"/><file name="BeezupOMDataHandler.php" hash="cf738987179f3125fc0f4626fd70f1a0"/><file name="BeezupOMOrderService.php" hash="54c774ed85609226057ba2f0a859e474"/><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="82821826016c467657d56b568a42bd35"/><file name="BeezupRepository.php" hash="b4ab353e99603e71faf37fc83d75dbe1"/><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="Order"><file name="BeezupOMOrderItem.php" hash="a770b90ae4fcb6535563be6ff59f7528"/><file name="BeezupOMOrderRequest.php" hash="9afa0f18fc0aef344c3f71d054db23a0"/><file name="BeezupOMOrderResponse.php" hash="e8793a8754ec75a92ca6266357462307"/><file name="BeezupOMOrderResult.php" hash="87ae70f6b82e49e45bc12a8155dec629"/></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="9e0e69bc9e9a932c7c80f8480c025bd2"/></dir><dir name="sql"><dir name="beezup_setup"><file name="mysql4-install-4.0.0.php" hash="e035e76fe92b063d6cecc9fa2872cfab"/></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="16016048b107a6bae72a96fb4adb4c0d"/></dir><dir name="en_US"><file name="BeezUp.csv" hash="27b63e33bbdf8b1edfd0ec63c55b18cb"/></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="d56dcd5673f81cb8e7e2ca90bb10d4ee"/></dir></dir></dir></dir></dir></target></contents>
51
  <compatible/>
52
  <dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
53
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>BeezUP_Module_feed_and_tracker</name>
4
+ <version>4.2.0</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
  &#xD;
43
  &lt;p&gt;By BeezUP &amp; Magentix&lt;/p&gt;</description>
44
  <notes>New features :&#xD;
45
+ &gt; Change order status directly from Magento&#xD;
46
+ &gt; Categories logic choice&#xD;
47
+ &gt; Minor bugs</notes>
48
  <authors><author><name>BeezUP</name><user>BeezUP</user><email>charles@beezup.com</email></author></authors>
49
+ <date>2015-07-14</date>
50
+ <time>13:44:56</time>
51
+ <contents><target name="magecommunity"><dir name="BeezUp"><dir name="Block"><dir name="Adminhtml"><dir name="Sales"><dir name="Order"><file name="Grid.php" hash="7cc12a09107b07ee7a66bcd9678283b5"/><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="0e77729f1865d123eda43b77101e63fc"/></dir></dir></dir><file name="Order.php" hash="c038c302f2c86f79431b49c7282c3f5c"/></dir><dir name="System"><dir name="Config"><file name="Attributes.php" hash="a504265fe4dc2df69b311d8219c88fbf"/><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="56f4877f21e94d046f9d3eac3ae1b254"/><file name="Manualcron.php" hash="cbac01f15d256a43f0388f58449bffd0"/><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="da6422d294cb047dd81982ebb65f5aa8"/><file name="Order.php" hash="cf2b26596073c5e959939ce5a869e386"/><file name="Tracking.php" hash="e6dcd6b89e782b2eb6cb83abfb1b7f56"/><file name="Xml.php" hash="82db04d878c9e80456f3a5a92f46d979"/></dir><dir name="Helper"><file name="Data.php" hash="1cbbd163fea65ae82224a11c95d90e03"/></dir><dir name="Model"><file name="Flatrate.php" hash="27d078203781d9b923605f685bfe5c25"/><file name="Observer.php" hash="3bcb925df1965ef23ef1fb08ab64de08"/><file name="Products.php" hash="440807609c8a40707fccb98446e0db71"/><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="Credentials.php" hash="5c5ca91b68bebe3a0354a9b22f5f44f3"/><file name="Time.php" hash="a70e4d748a9b300ec7b718168fa4d5f8"/><file name="Token.php" hash="60247c8b4d5889433ae1f92e998cc889"/></dir><dir name="Source"><file name="Attributes.php" hash="878b6ed9c50afee368f2688a1ff56f5e"/><file name="Availableproducts.php" hash="d9d4b3705f5fbd98efbae0289a1b6d6d"/><file name="Cache.php" hash="0ca6ccc2fed56e2c602d76880d062053"/><file name="Categories.php" hash="c4e9f0a54f1d9c688543f26f02f99142"/><file name="Debug.php" hash="6538ebc0cd0d61c124e5adc806e71aff"/><file name="Description.php" hash="e4f80883f8a2deab48af9625582edfb6"/><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="3b38e6a923d98f2739b70c9960958dd6"/><file name="Status.php" hash="d32004ad97adac6de361703a403a6a97"/><file name="Userid.php" hash="3d028bc3bfcaf7541b57676c014c94db"/></dir></dir></dir></dir><dir name="controllers"><file name="CacheController.php" hash="512cc26abd39d556104d5e69c0ac8a0d"/><file name="CatalogController.php" hash="b1b170b6dcb9dc3f95dc46dec24a37a7"/><file name="CronController.php" hash="5cc9e5e5eca471d644ef7dee991ce6b9"/><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="7306e8ac6e90771effeab867aea8b01b"/><file name="system.xml" hash="4f72aa2e273be39f8ea6ce9810cfb5a5"/></dir><dir name="img"><file name="ajax-loader.gif" hash="2a6692973429d7a74513bfa8bcb5be20"/></dir><dir name="lib"><file name="BeezupMageOrders.php" hash="84701dee5023438a9c06b8abc5f6f2c1"/><file name="BeezupOMDataHandler.php" hash="cf738987179f3125fc0f4626fd70f1a0"/><file name="BeezupOMOrderService.php" hash="88dc1c91a4ccc1bb94d7ecb8e40531be"/><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="82821826016c467657d56b568a42bd35"/><file name="BeezupOMStatus.php" hash="5ebcc05f1b763887e420c8f4f459bfdb"/><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="Order"><file name="BeezupOMOrderItem.php" hash="a770b90ae4fcb6535563be6ff59f7528"/><file name="BeezupOMOrderRequest.php" hash="9afa0f18fc0aef344c3f71d054db23a0"/><file name="BeezupOMOrderResponse.php" hash="e8793a8754ec75a92ca6266357462307"/><file name="BeezupOMOrderResult.php" hash="87ae70f6b82e49e45bc12a8155dec629"/></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="9e0e69bc9e9a932c7c80f8480c025bd2"/></dir><dir name="log"><file name="log.txt" hash="c9f966666b757eb145ce912a0ad41a32"/><file name="log2.txt" hash="4457e12568603035c51a205d1f1635d1"/></dir><dir name="sql"><dir name="beezup_setup"><file name="mysql4-install-4.0.0.php" hash="e035e76fe92b063d6cecc9fa2872cfab"/></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="9fcbe224014a0fb34a0e6120010f8d47"/></dir><dir name="en_US"><file name="BeezUp.csv" hash="27b63e33bbdf8b1edfd0ec63c55b18cb"/></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="9f30419a17d2aac252f5c49d8e9b7c46"/></dir></dir></dir></dir></dir></target></contents>
52
  <compatible/>
53
  <dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
54
  </package>