Version Notes
New features :
> Performance improvements on "Configurable" feed
Download this release
Release Info
Developer | BeezUP |
Extension | BeezUP_Module_feed_and_tracker |
Version | 4.5.0 |
Comparing to | |
See all releases |
Code changes from version 4.4.0 to 4.5.0
- app/code/community/BeezUp/Block/Xml.php +260 -244
- app/code/community/BeezUp/Model/Products.php +82 -71
- app/code/community/BeezUp/etc/config.xml +1 -1
- app/code/community/BeezUp/etc/system.xml +3 -3
- app/code/community/BeezUp/log/log.txt +0 -530
- app/code/community/BeezUp/log/log2.txt +0 -3061
- package.xml +5 -5
app/code/community/BeezUp/Block/Xml.php
CHANGED
@@ -27,7 +27,6 @@
|
|
27 |
->addAttributeToFilter('level', 2)
|
28 |
->addAttributeToFilter('is_active', 1);
|
29 |
$_categories = $beezup->getCategoriesAsArray( $categories, true);
|
30 |
-
|
31 |
|
32 |
}
|
33 |
|
@@ -43,11 +42,16 @@
|
|
43 |
if($many_images == 1) {
|
44 |
$backendModel = $products->getResource()->getAttribute('media_gallery')->getBackend();
|
45 |
}
|
46 |
-
|
47 |
|
48 |
foreach ($products as $p) {
|
49 |
-
|
50 |
-
|
|
|
|
|
|
|
|
|
|
|
51 |
if (count($categories)) {
|
52 |
$qty = $beezup->getQty($p->getId());
|
53 |
$stock = $beezup->getIsInStock($qty);
|
@@ -170,18 +174,24 @@
|
|
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 |
-
|
182 |
-
|
|
|
|
|
|
|
|
|
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()])) {
|
@@ -195,80 +205,83 @@
|
|
195 |
$final_price = $c->getFinalPrice();
|
196 |
$image = $this->fillImageUrl($p, $c);
|
197 |
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
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 |
-
|
224 |
-
|
225 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
226 |
|
227 |
-
$
|
228 |
-
$
|
229 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
230 |
|
231 |
-
|
232 |
-
if($many_images==1) {
|
233 |
|
234 |
-
$product = Mage::getModel('catalog/product')->load( $
|
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 |
-
|
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 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
272 |
}
|
273 |
|
274 |
$qty = $beezup->getQty($p->getId());
|
@@ -287,7 +300,7 @@
|
|
287 |
|
288 |
$xml .= $helper->tag($this->__('parent_or_child'), 'parent', 1);
|
289 |
$xml .= $helper->tag($this->__('parent_id'), '');
|
290 |
-
|
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);
|
@@ -326,7 +339,7 @@
|
|
326 |
$xml .= '</product>' . PHP_EOL;
|
327 |
}
|
328 |
}
|
329 |
-
|
330 |
|
331 |
$product_simple = $beezup->getProductsSimple();
|
332 |
$backendModelSimple = $product_simple->getResource()->getAttribute('media_gallery')->getBackend();
|
@@ -334,7 +347,12 @@
|
|
334 |
|
335 |
$prodAttributeSet = Mage::getModel('eav/entity_attribute_set')->load($p->getAttributeSetId())->getAttributeSetName();
|
336 |
|
337 |
-
|
|
|
|
|
|
|
|
|
|
|
338 |
|
339 |
if (count($categories)) {
|
340 |
$qty = $beezup->getQty($p->getId());
|
@@ -443,7 +461,12 @@
|
|
443 |
foreach($productParentIds as $productParentId){
|
444 |
$productParent = Mage::getModel('catalog/product')->load($productParentId);
|
445 |
$image=$productParent->getImage();
|
446 |
-
|
|
|
|
|
|
|
|
|
|
|
447 |
$url = $productParent->getProductUrl();
|
448 |
$name = $productParent->getName();
|
449 |
$description = $productParent->getData($_description);
|
@@ -535,17 +558,10 @@
|
|
535 |
$_description = $helper->getConfig('beezup/flux/description');
|
536 |
$_tablerates = $helper->getConfig('beezup/flux/tablerates_weight_destination') ? $beezup->getTablerates() : 0;
|
537 |
$cat_logic = false;
|
538 |
-
|
539 |
$_categories = $beezup->getCategoriesAsArray(Mage::helper('catalog/category')->getStoreCategories());
|
540 |
-
|
541 |
-
|
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');
|
@@ -556,7 +572,7 @@
|
|
556 |
foreach ($products as $product) {
|
557 |
$associatedProducts = $product->getTypeInstance(true)->getAssociatedProducts($product);
|
558 |
|
559 |
-
$parentCategories = $beezup->getProductsCategories($product, $_categories
|
560 |
$parentDesc = $product->getData($_description);
|
561 |
$parentId = $product->getId();
|
562 |
$parentImage = $product->getImage();
|
@@ -582,23 +598,23 @@
|
|
582 |
echo "----------------------------" ."<br/>";
|
583 |
echo "Name : " .$g->getName() ."<br/>";
|
584 |
echo "Description : ".$parentDesc ."<br/>";
|
585 |
-
|
586 |
-
|
587 |
-
|
588 |
-
|
589 |
-
|
590 |
-
|
591 |
-
|
592 |
-
|
593 |
-
|
594 |
-
|
595 |
-
|
596 |
-
|
597 |
-
|
598 |
-
|
599 |
-
|
600 |
-
|
601 |
-
|
602 |
}
|
603 |
|
604 |
|
@@ -606,29 +622,29 @@
|
|
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 |
-
|
610 |
-
|
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 |
-
|
618 |
-
|
619 |
-
|
620 |
-
|
621 |
-
|
622 |
-
|
623 |
-
|
624 |
-
|
625 |
-
|
626 |
-
|
627 |
-
|
628 |
-
|
629 |
-
|
630 |
-
|
631 |
-
|
632 |
}*/
|
633 |
|
634 |
$buf .= $helper->tag($this->__('b_product_image'), $helper->getImageDir() . $image, 1); //r�cup�re l'image sur le p�re
|
@@ -642,135 +658,135 @@
|
|
642 |
$i = 1;
|
643 |
foreach ($parentCategories as $v) $buf .= $helper->tag($this->__('b_category_%s', $i++), $v, 1);
|
644 |
foreach ($_attributes as $a) {
|
645 |
-
|
646 |
-
|
647 |
}
|
648 |
$buf .= "</product>".PHP_EOL;
|
649 |
-
|
650 |
-
|
651 |
-
|
652 |
-
|
653 |
-
|
654 |
-
|
655 |
-
|
656 |
-
|
657 |
-
|
658 |
-
|
659 |
-
|
660 |
-
|
661 |
-
|
662 |
-
|
663 |
$image = $p->getImage();
|
664 |
if ($image == "no_selection" || $image == "")
|
665 |
$image = $p->getSmallImage();
|
666 |
-
|
667 |
-
|
668 |
-
|
669 |
-
|
670 |
-
|
671 |
-
|
672 |
-
|
673 |
-
|
674 |
-
|
675 |
-
|
676 |
-
|
677 |
-
|
678 |
-
|
679 |
-
|
680 |
-
|
681 |
-
|
682 |
-
|
683 |
-
|
684 |
-
|
685 |
-
|
686 |
-
|
687 |
-
|
688 |
-
|
689 |
-
|
690 |
-
|
691 |
-
|
692 |
-
|
693 |
-
|
694 |
-
|
695 |
-
|
696 |
-
|
697 |
-
|
698 |
-
|
699 |
-
|
700 |
-
|
701 |
-
|
702 |
-
|
703 |
-
|
704 |
-
|
705 |
-
|
706 |
-
|
707 |
-
|
708 |
-
|
709 |
-
|
710 |
-
|
711 |
-
|
712 |
-
|
713 |
-
|
714 |
-
|
715 |
-
|
716 |
-
|
717 |
-
|
718 |
-
|
719 |
-
|
720 |
-
|
721 |
-
|
722 |
-
|
723 |
-
|
724 |
-
|
725 |
-
|
726 |
-
|
727 |
-
|
728 |
-
|
729 |
-
|
730 |
-
|
731 |
-
|
732 |
-
|
733 |
-
|
734 |
-
|
735 |
-
|
736 |
-
|
737 |
-
|
738 |
-
|
739 |
-
|
740 |
-
|
741 |
-
|
742 |
-
|
743 |
-
|
744 |
-
|
745 |
-
|
746 |
-
|
747 |
-
|
748 |
-
|
749 |
-
|
750 |
-
|
751 |
-
|
752 |
-
|
753 |
-
|
754 |
-
|
755 |
-
|
756 |
-
|
757 |
-
|
758 |
-
|
759 |
-
|
760 |
-
|
761 |
-
|
762 |
-
|
763 |
-
|
764 |
-
|
765 |
-
|
766 |
-
|
767 |
-
|
768 |
-
|
769 |
-
|
770 |
-
|
771 |
-
|
772 |
-
|
773 |
-
|
774 |
-
|
775 |
-
|
776 |
-
|
27 |
->addAttributeToFilter('level', 2)
|
28 |
->addAttributeToFilter('is_active', 1);
|
29 |
$_categories = $beezup->getCategoriesAsArray( $categories, true);
|
|
|
30 |
|
31 |
}
|
32 |
|
42 |
if($many_images == 1) {
|
43 |
$backendModel = $products->getResource()->getAttribute('media_gallery')->getBackend();
|
44 |
}
|
45 |
+
|
46 |
|
47 |
foreach ($products as $p) {
|
48 |
+
if($category_logic == 1) {
|
49 |
+
$categories = $beezup->getProductsCategories($p, $_categories);
|
50 |
+
} else {
|
51 |
+
|
52 |
+
$categories = $beezup->getProductsCategories2($p, $_categories);
|
53 |
+
}
|
54 |
+
|
55 |
if (count($categories)) {
|
56 |
$qty = $beezup->getQty($p->getId());
|
57 |
$stock = $beezup->getIsInStock($qty);
|
174 |
$childs = $beezup->getConfigurableProducts(true);
|
175 |
$backendModel = $products->getResource()->getAttribute('media_gallery')->getBackend();
|
176 |
$products->addAttributeToFilter('type_id', Mage_Catalog_Model_Product_Type::TYPE_CONFIGURABLE);
|
177 |
+
|
178 |
//parcours les produits
|
179 |
foreach ($products as $p) {
|
180 |
+
|
181 |
if($many_images == 1) {
|
182 |
$backendModel->afterLoad($p); //adding media gallery to the product object
|
183 |
$datos = $p->getData();
|
184 |
|
185 |
}
|
186 |
+
if($category_logic == 1) {
|
187 |
+
$categories = $beezup->getProductsCategories($p, $_categories);
|
188 |
+
} else {
|
189 |
+
|
190 |
+
$categories = $beezup->getProductsCategories2($p, $_categories);
|
191 |
+
}
|
192 |
+
// $varationTheme = $beezup->getOptions($p);
|
193 |
//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)
|
194 |
+
|
195 |
if (count($categories)) {
|
196 |
//si l'�l�ment est un p�re, on va traiter ces enfants
|
197 |
if(isset($childs[$p->getId()])) {
|
205 |
$final_price = $c->getFinalPrice();
|
206 |
$image = $this->fillImageUrl($p, $c);
|
207 |
|
208 |
+
//DBG
|
209 |
+
if (0)
|
210 |
+
{
|
211 |
+
echo "----------------------------" ."<br/>";
|
212 |
+
echo "Name : " .$c->getName() ."<br/>";
|
213 |
+
echo "Id : " .$c->getId() ."<br/>";
|
214 |
+
echo "Parent Id : " .$p->getId() ."<br/>";
|
215 |
+
echo "Url : " .$p->getProductUrl() ."<br/>";
|
216 |
+
echo "Image : " .$helper->getImageDir().$image ."<br/>";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
217 |
|
|
|
|
|
|
|
218 |
|
219 |
+
echo "SKU : " .$c->getSku() ."<br/>";
|
220 |
+
echo "Quantity : " .$qty ."<br/>";
|
221 |
+
echo "Stock : " .$stock ."<br/>";
|
222 |
+
echo "Shipping : " .$shipping ."<br/>";
|
223 |
+
echo "price : " .$price ."<br/>";
|
224 |
+
// echo "finalprice : ".$final_price ."<br/>";
|
225 |
+
echo "specialprice : ".$c->getSpecialPrice() ."<br/>";
|
226 |
+
}
|
227 |
+
|
228 |
+
|
229 |
+
$xml .= '<product>';
|
230 |
+
$xml .= $helper->tag($this->__('b_unique_id'), $c->getId());
|
231 |
+
$xml .= $helper->tag($this->__('b_sku'), trim($c->getSku()), 1);
|
232 |
+
|
233 |
+
$xml .= $helper->tag($this->__('parent_or_child'), 'child', 1);
|
234 |
+
$xml .= $helper->tag($this->__('parent_id'), $p->getId());
|
235 |
+
//$xml .= $helper->tag($this->__('variation-theme'), $varationTheme, 1);
|
236 |
+
|
237 |
+
$xml .= $helper->tag($this->__('b_title'), trim($p->getName()), 1);
|
238 |
+
$xml .= $helper->tag($this->__('b_description'), preg_replace("/(\r\n|\n|\r)/", ' ', strip_tags($p->getData($_description))), 1);
|
239 |
+
$xml .= $helper->tag($this->__('b_product_url'), $p->getProductUrl(), 1);
|
240 |
+
|
241 |
+
$xml .= $helper->tag($this->__('url_image'), $helper->getImageDir() . $image, 1);
|
242 |
+
if($many_images==1) {
|
243 |
|
244 |
+
$product = Mage::getModel('catalog/product')->load( $c->getId());
|
245 |
+
$inc = 1;
|
246 |
+
foreach ($product->getMediaGalleryImages() as $img) {
|
247 |
+
if( $helper->getImageDir() . $image !== $img->getUrl()) {
|
248 |
+
$inc++;
|
249 |
+
$xml .= $helper->tag($this->__('url_image')."_".$inc, $img->getUrl(), 1);
|
250 |
+
}
|
251 |
+
|
252 |
+
}
|
253 |
|
254 |
+
if($inc==1 && ($c->getImage() == "no_selection" || $c->getImage()=="" || $c->getSmallImage() == "no_selection" || $c->getSmallImage() == "")) { //if there are no child pictures
|
|
|
255 |
|
256 |
+
$product = Mage::getModel('catalog/product')->load( $p->getId());
|
257 |
$inc = 1;
|
258 |
foreach ($product->getMediaGalleryImages() as $img) {
|
259 |
if( $helper->getImageDir() . $image !== $img->getUrl()) {
|
260 |
$inc++;
|
261 |
$xml .= $helper->tag($this->__('url_image')."_".$inc, $img->getUrl(), 1);
|
262 |
}
|
|
|
263 |
}
|
264 |
|
265 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
266 |
}
|
267 |
+
}
|
268 |
+
$xml .= $helper->tag($this->__('b_availability'), $stock, 1);
|
269 |
+
$xml .= $helper->tag($this->__('b_qty'), $qty);
|
270 |
+
$xml .= $helper->tag($this->__('b_delivery'), $shipping, 1);
|
271 |
+
$xml .= $helper->tag($this->__('b_shipping'), $helper->currency($beezup->getShippingAmount($c->getWeight(), $_tablerates)));
|
272 |
+
$xml .= $helper->tag($this->__('b_weight'), $helper->currency($c->getWeight()));
|
273 |
+
$xml .= $helper->tag($this->__('b_price'), $helper->currency($final_price*$_vat));
|
274 |
+
if ($price != $final_price) $xml .= $helper->tag($this->__('b_regular_price'), $helper->currency($price*$_vat));
|
275 |
+
$i = 1;
|
276 |
+
|
277 |
+
|
278 |
+
foreach ($categories as $v) $xml .= $helper->tag($this->__('b_category_%s', $i++), $v, 1);
|
279 |
+
foreach ($_attributes as $a) {
|
280 |
+
$value = $c->getResource()->getAttribute($a)->getFrontend()->getValue($c);
|
281 |
+
$xml .= $helper->tag($a, is_float($value) ? $helper->currency($value) : $value, is_float($value) ? 0 : 1);
|
282 |
+
}
|
283 |
+
$xml .= '</product>' . PHP_EOL;
|
284 |
+
|
285 |
}
|
286 |
|
287 |
$qty = $beezup->getQty($p->getId());
|
300 |
|
301 |
$xml .= $helper->tag($this->__('parent_or_child'), 'parent', 1);
|
302 |
$xml .= $helper->tag($this->__('parent_id'), '');
|
303 |
+
// $xml .= $helper->tag($this->__('variation-theme'), $varationTheme, 1);
|
304 |
|
305 |
$xml .= $helper->tag($this->__('b_title'), trim($p->getName()), 1);
|
306 |
$xml .= $helper->tag($this->__('b_description'), preg_replace("/(\r\n|\n|\r)/", ' ', strip_tags($p->getData($_description))), 1);
|
339 |
$xml .= '</product>' . PHP_EOL;
|
340 |
}
|
341 |
}
|
342 |
+
}
|
343 |
|
344 |
$product_simple = $beezup->getProductsSimple();
|
345 |
$backendModelSimple = $product_simple->getResource()->getAttribute('media_gallery')->getBackend();
|
347 |
|
348 |
$prodAttributeSet = Mage::getModel('eav/entity_attribute_set')->load($p->getAttributeSetId())->getAttributeSetName();
|
349 |
|
350 |
+
if($category_logic == 1) {
|
351 |
+
$categories = $beezup->getProductsCategories($p, $_categories);
|
352 |
+
} else {
|
353 |
+
|
354 |
+
$categories = $beezup->getProductsCategories2($p, $_categories);
|
355 |
+
}
|
356 |
|
357 |
if (count($categories)) {
|
358 |
$qty = $beezup->getQty($p->getId());
|
461 |
foreach($productParentIds as $productParentId){
|
462 |
$productParent = Mage::getModel('catalog/product')->load($productParentId);
|
463 |
$image=$productParent->getImage();
|
464 |
+
if($category_logic == 1) {
|
465 |
+
$categories = $beezup->getProductsCategories($p, $_categories);
|
466 |
+
} else {
|
467 |
+
|
468 |
+
$categories = $beezup->getProductsCategories2($p, $_categories);
|
469 |
+
}
|
470 |
$url = $productParent->getProductUrl();
|
471 |
$name = $productParent->getName();
|
472 |
$description = $productParent->getData($_description);
|
558 |
$_description = $helper->getConfig('beezup/flux/description');
|
559 |
$_tablerates = $helper->getConfig('beezup/flux/tablerates_weight_destination') ? $beezup->getTablerates() : 0;
|
560 |
$cat_logic = false;
|
561 |
+
|
562 |
$_categories = $beezup->getCategoriesAsArray(Mage::helper('catalog/category')->getStoreCategories());
|
563 |
+
|
564 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
565 |
$_vat = ($_ht && is_numeric($helper->getConfig('beezup/flux/vat'))) ? (preg_replace('(\,+)', '.', $helper->getConfig('beezup/flux/vat')) / 100) + 1 : 1;
|
566 |
$_attributes = $helper->getConfig('beezup/flux/attributes') ? explode(',', $helper->getConfig('beezup/flux/attributes')) : array();
|
567 |
$_catalog_rules = $helper->getConfig('beezup/flux/catalog_rules');
|
572 |
foreach ($products as $product) {
|
573 |
$associatedProducts = $product->getTypeInstance(true)->getAssociatedProducts($product);
|
574 |
|
575 |
+
$parentCategories = $beezup->getProductsCategories($product, $_categories);
|
576 |
$parentDesc = $product->getData($_description);
|
577 |
$parentId = $product->getId();
|
578 |
$parentImage = $product->getImage();
|
598 |
echo "----------------------------" ."<br/>";
|
599 |
echo "Name : " .$g->getName() ."<br/>";
|
600 |
echo "Description : ".$parentDesc ."<br/>";
|
601 |
+
echo "Id : " .$g->getId() ."<br/>";
|
602 |
+
echo "Parent Id : " .$parentId ."<br/>";
|
603 |
+
echo "Url : " .$parentUrl ."<br/>";
|
604 |
+
echo "Image : " .$helper->getImageDir().$image ."<br/>";
|
605 |
+
|
606 |
+
|
607 |
+
echo "SKU : " .$g->getSku() ."<br/>";
|
608 |
+
echo "Quantity : " .$qty ."<br/>";
|
609 |
+
echo "Stock : " .$stock ."<br/>";
|
610 |
+
echo "Shipping : " .$shipping ."<br/>";
|
611 |
+
echo "price : " .$price ."<br/>";
|
612 |
+
echo "finalprice : ".$final_price ."<br/>";
|
613 |
+
echo "weight : " .$g->getWeight() ."<br/>";
|
614 |
+
|
615 |
+
$i = 1;
|
616 |
+
foreach ($parentCategories as $v)
|
617 |
+
echo "Cat�gorie ".$i." : ".$v."<br/>";
|
618 |
}
|
619 |
|
620 |
|
622 |
$buf .= $helper->tag($this->__('b_unique_id'), $g->getId());
|
623 |
$buf .= $helper->tag($this->__('b_sku'), trim($g->getSku()), 1);
|
624 |
if ($configurable){
|
625 |
+
$buf .= $helper->tag($this->__('parent_or_child'), 'grouped_child', 1);
|
626 |
+
$buf .= $helper->tag($this->__('parent_id'), $parentId);
|
627 |
}
|
628 |
$buf .= $helper->tag($this->__('b_title'), $g->getName()/*trim($name)*/, 1);
|
629 |
$buf .= $helper->tag($this->__('b_description'), preg_replace("/(\r\n|\n|\r)/", ' ', strip_tags($parentDesc)), 1);
|
630 |
$buf .= $helper->tag($this->__('b_product_url'), $parentUrl, 1);
|
631 |
|
632 |
/*
|
633 |
+
if($many_images==1) {
|
634 |
+
|
635 |
+
$gprod = Mage::getModel('catalog/product')->load( $g->getId());
|
636 |
+
$inc = 0;
|
637 |
+
foreach ($gprod->getMediaGalleryImages() as $image) {
|
638 |
+
$inc++;
|
639 |
+
if($inc==1) {
|
640 |
+
$buf .= $helper->tag($this->__('url_image'), $image->getUrl(), 1);
|
641 |
+
} else {
|
642 |
+
$buf .= $helper->tag($this->__('url_image')."_".$inc, $image->getUrl(), 1);
|
643 |
+
}
|
644 |
+
}
|
645 |
+
} else {
|
646 |
+
|
647 |
+
$buf .= $helper->tag($this->__('url_image'), $helper->getImageDir() . $image, 1);
|
648 |
}*/
|
649 |
|
650 |
$buf .= $helper->tag($this->__('b_product_image'), $helper->getImageDir() . $image, 1); //r�cup�re l'image sur le p�re
|
658 |
$i = 1;
|
659 |
foreach ($parentCategories as $v) $buf .= $helper->tag($this->__('b_category_%s', $i++), $v, 1);
|
660 |
foreach ($_attributes as $a) {
|
661 |
+
$value = $g->getResource()->getAttribute($a)->getFrontend()->getValue($g);
|
662 |
+
$buf .= $helper->tag($a, is_float($value) ? $helper->currency($value) : $value, is_float($value) ? 0 : 1);
|
663 |
}
|
664 |
$buf .= "</product>".PHP_EOL;
|
665 |
+
}
|
666 |
+
}
|
667 |
+
return $buf;
|
668 |
+
}
|
669 |
+
|
670 |
+
|
671 |
+
protected function fillImageUrl($p, $c)
|
672 |
+
{
|
673 |
+
$image = $c->getImage();
|
674 |
+
if ($image == "no_selection" || $image == "") // Si on ne trouve pas d'image avec getImage on r�cup�re la smallImage
|
675 |
+
{
|
676 |
+
$image = $c->getSmallImage();
|
677 |
+
if ($image == "no_selection" || $image == "")
|
678 |
+
{
|
679 |
$image = $p->getImage();
|
680 |
if ($image == "no_selection" || $image == "")
|
681 |
$image = $p->getSmallImage();
|
682 |
+
}
|
683 |
+
}
|
684 |
+
return ($image);
|
685 |
+
}
|
686 |
+
|
687 |
+
protected function createFile($type, $xmlData)
|
688 |
+
{
|
689 |
+
$fp = fopen('beezup/tmp/'.$type, 'w');
|
690 |
+
if ($fp == false)
|
691 |
+
{
|
692 |
+
echo 'Fail to create file';
|
693 |
+
}
|
694 |
+
fwrite($fp, $xmlData);
|
695 |
+
fclose($fp);
|
696 |
+
}
|
697 |
+
|
698 |
+
protected function deleteFeed($type)
|
699 |
+
{
|
700 |
+
unlink('beezup/tmp/'.$type);
|
701 |
+
}
|
702 |
+
|
703 |
+
protected function needRefreshing($type)
|
704 |
+
{
|
705 |
+
$helper = Mage::helper('beezup');
|
706 |
+
|
707 |
+
$delay = $helper->getConfig('beezup/flux/cachedelay') * 60;
|
708 |
+
$nowtime = time();
|
709 |
+
$fileTime = filemtime('beezup/tmp/'.$type);
|
710 |
+
if (($nowtime - $fileTime) >= $delay)
|
711 |
+
return (true);
|
712 |
+
else
|
713 |
+
return (false);
|
714 |
+
}
|
715 |
+
|
716 |
+
protected function createFolder()
|
717 |
+
{
|
718 |
+
$helper = Mage::helper('beezup');
|
719 |
+
if (!$helper->getConfig('beezup/flux/cachedelay')) // Si option cache desactiv�e, pas besoin du dossier
|
720 |
+
return (true);
|
721 |
+
if (file_exists('beezup/tmp')) // Si le dossier existe deja, pas besoin de le recr�er
|
722 |
+
return (true);
|
723 |
+
if (!mkdir('beezup/tmp', 0777, true))
|
724 |
+
{
|
725 |
+
echo "[ERROR] : Seems we can't create 'beezup' directory inside your root directory."."<br/>"
|
726 |
+
."You can try one of these solutions :"."<br/>"
|
727 |
+
."1 - Create by yourself the beezup/tmp inside your root directory with 777 permissions"."<br/>"
|
728 |
+
."2 - Change the permissions on your root directory (777)"."<br/>"
|
729 |
+
."3 - Change the 'cache delay' option to 'None' inside beezup plugin settings"."<br/>";
|
730 |
+
return (false);
|
731 |
+
}
|
732 |
+
return (true);
|
733 |
+
}
|
734 |
+
|
735 |
+
|
736 |
+
|
737 |
+
/**
|
738 |
+
C'est ici que tout commence ...
|
739 |
+
**/
|
740 |
+
|
741 |
+
protected function _toHtml()
|
742 |
+
{
|
743 |
+
set_time_limit(0);
|
744 |
+
$helper = Mage::helper('beezup');
|
745 |
+
$this->setCacheLifetime(null);
|
746 |
+
//dbg
|
747 |
+
/*
|
748 |
+
$this->getAssociatedProducto(true);
|
749 |
+
return;*/
|
750 |
+
|
751 |
+
if (!$this->createFolder()) // Si on rencontre des probl�mes de cr�ation de dossier on retourne rien
|
752 |
+
return;
|
753 |
+
if ($this->getConfigurable()){ // Appel de l'url http://site.com/beezup/catalog/configurable
|
754 |
+
if ($this->needRefreshing('configurable')){
|
755 |
+
if (file_exists('beezup/tmp/configurable'))
|
756 |
+
$this->deleteFeed('configurable');
|
757 |
+
$xmlData = $this->getXmlConfigurable();
|
758 |
+
$this->addText($xmlData);
|
759 |
+
if ($helper->getConfig('beezup/flux/cachedelay') != 0)
|
760 |
+
$this->createFile('configurable', $xmlData);
|
761 |
+
}
|
762 |
+
else
|
763 |
+
echo file_get_contents('beezup/tmp/configurable');
|
764 |
+
}
|
765 |
+
else if ($this->getChildXML()){ // Appel de l'url http://site.com/beezup/catalog/child
|
766 |
+
if ($this->needRefreshing('child')){
|
767 |
+
if (file_exists('beezup/tmp/child'))
|
768 |
+
$this->deleteFeed('child');
|
769 |
+
$xmlData = $this->getXmlChild();
|
770 |
+
$this->addText($xmlData);
|
771 |
+
if ($helper->getConfig('beezup/flux/cachedelay') != 0)
|
772 |
+
$this->createFile('child', $xmlData);
|
773 |
+
}
|
774 |
+
else
|
775 |
+
echo file_get_contents('beezup/tmp/child');
|
776 |
+
}
|
777 |
+
else { // Appel de l'url http://site.com/beezup/catalog/xml
|
778 |
+
if ($this->needRefreshing('xml')){
|
779 |
+
if (file_exists('beezup/tmp/xml'))
|
780 |
+
$this->deleteFeed('xml');
|
781 |
+
$xmlData = $this->getXml();
|
782 |
+
$this->addText($xmlData);
|
783 |
+
if ($helper->getConfig('beezup/flux/cachedelay') != 0)
|
784 |
+
$this->createFile('xml', $xmlData);
|
785 |
+
}
|
786 |
+
else
|
787 |
+
echo file_get_contents('beezup/tmp/xml');
|
788 |
+
}
|
789 |
+
return parent::_toHtml();
|
790 |
+
}
|
791 |
+
}
|
792 |
+
|
app/code/community/BeezUp/Model/Products.php
CHANGED
@@ -9,9 +9,9 @@
|
|
9 |
* @param bool $configurable
|
10 |
* @return Mage_Catalog_Model_Resource_Product_Collection?
|
11 |
*/
|
12 |
-
|
13 |
-
|
14 |
-
|
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))
|
@@ -19,31 +19,28 @@
|
|
19 |
->addAttributeToSelect('weight')
|
20 |
->addAttributeToSelect('sku')
|
21 |
->addAttributeToSelect('special_price')
|
22 |
-
|
23 |
->addAttributeToSelect('special_to_date')
|
24 |
->addAttributeToSelect('small_image')
|
25 |
->addAttributeToSelect('image')
|
26 |
->addAttributeToSelect(Mage::getStoreConfig('beezup/flux/description'))
|
27 |
->addStoreFilter();
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
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')
|
@@ -92,8 +89,8 @@
|
|
92 |
*
|
93 |
* @return Mage_Catalog_Model_Resource_Product_Collection?
|
94 |
*/
|
95 |
-
|
96 |
-
|
97 |
->addAttributeToFilter('status', 1)
|
98 |
->addAttributeToFilter('price', array('neq' => 0))
|
99 |
->addAttributeToSelect('name')
|
@@ -107,27 +104,28 @@
|
|
107 |
->addAttributeToSelect(Mage::getStoreConfig('beezup/flux/description'))
|
108 |
->addStoreFilter();
|
109 |
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
}
|
127 |
}
|
128 |
-
|
129 |
-
return $productsArray;
|
130 |
}
|
|
|
|
|
|
|
|
|
131 |
|
132 |
/*
|
133 |
* Collect options applicable to the configurable product for Varation Theme
|
@@ -303,35 +301,10 @@
|
|
303 |
* @param array $categories
|
304 |
* @return array
|
305 |
*/
|
306 |
-
public function getProductsCategories($product,$categories
|
307 |
{
|
308 |
-
|
309 |
-
|
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);
|
@@ -345,10 +318,48 @@
|
|
345 |
}
|
346 |
}
|
347 |
}
|
348 |
-
|
349 |
return $result;
|
350 |
}
|
351 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
352 |
/*
|
353 |
* Retrieve current store
|
354 |
*
|
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))
|
19 |
->addAttributeToSelect('weight')
|
20 |
->addAttributeToSelect('sku')
|
21 |
->addAttributeToSelect('special_price')
|
22 |
+
->addAttributeToSelect('special_from_date')
|
23 |
->addAttributeToSelect('special_to_date')
|
24 |
->addAttributeToSelect('small_image')
|
25 |
->addAttributeToSelect('image')
|
26 |
->addAttributeToSelect(Mage::getStoreConfig('beezup/flux/description'))
|
27 |
->addStoreFilter();
|
28 |
+
|
29 |
+
if($configurable) $products->addAttributeToFilter('type_id', Mage_Catalog_Model_Product_Type::TYPE_CONFIGURABLE);
|
30 |
+
|
31 |
+
if(Mage::getStoreConfig('beezup/flux/stock')){
|
32 |
+
$products= $products->joinField('inventory_in_stock', 'cataloginventory_stock_item', 'is_in_stock', 'product_id=entity_id','is_in_stock>=0', 'left')
|
33 |
+
->addAttributeToFilter('inventory_in_stock', array('neq' => 0));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
34 |
}
|
35 |
|
36 |
+
$attributes = explode(',', Mage::getStoreConfig('beezup/flux/attributes'));
|
37 |
+
foreach ($attributes as $a) $products->addAttributeToSelect($a);
|
38 |
+
|
39 |
+
if (Mage::getStoreConfig('beezup/flux/debug_flux')) $products->setPageSize(10);
|
40 |
+
|
41 |
+
return $products;
|
42 |
+
}
|
43 |
+
|
44 |
public function getGroupedProduct()
|
45 |
{
|
46 |
$products = Mage::getModel('catalog/product')
|
89 |
*
|
90 |
* @return Mage_Catalog_Model_Resource_Product_Collection?
|
91 |
*/
|
92 |
+
public function getConfigurableProducts($config = true) {
|
93 |
+
$products = Mage::getResourceModel('catalog/product_type_configurable_product_collection')
|
94 |
->addAttributeToFilter('status', 1)
|
95 |
->addAttributeToFilter('price', array('neq' => 0))
|
96 |
->addAttributeToSelect('name')
|
104 |
->addAttributeToSelect(Mage::getStoreConfig('beezup/flux/description'))
|
105 |
->addStoreFilter();
|
106 |
|
107 |
+
if(Mage::getStoreConfig('beezup/flux/stock')){
|
108 |
+
$products= $products->joinField('inventory_in_stock', 'cataloginventory_stock_item', 'is_in_stock', 'product_id=entity_id','is_in_stock>=0', 'left')
|
109 |
+
->addAttributeToFilter('inventory_in_stock', array('neq' => 0));
|
110 |
+
}
|
111 |
+
|
112 |
+
$attributes = explode(',', Mage::getStoreConfig('beezup/flux/attributes'));
|
113 |
+
foreach ($attributes as $a) $products->addAttributeToSelect($a);
|
114 |
+
|
115 |
+
$productsArray = $products;
|
116 |
+
|
117 |
+
//si on est dans le cas o� on veut les p�res et les fils
|
118 |
+
if($config){
|
119 |
+
$productsArray = array();
|
120 |
+
|
121 |
+
foreach($products as $p) {
|
122 |
+
$productsArray[$p->getParentId()][] = $p;
|
|
|
123 |
}
|
|
|
|
|
124 |
}
|
125 |
+
|
126 |
+
return $productsArray;
|
127 |
+
}
|
128 |
+
|
129 |
|
130 |
/*
|
131 |
* Collect options applicable to the configurable product for Varation Theme
|
301 |
* @param array $categories
|
302 |
* @return array
|
303 |
*/
|
304 |
+
public function getProductsCategories($product,$categories)
|
305 |
{
|
306 |
+
|
307 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
308 |
$_categories = $product->getCategoryIds();
|
309 |
|
310 |
sort($_categories);
|
318 |
}
|
319 |
}
|
320 |
}
|
321 |
+
|
322 |
return $result;
|
323 |
}
|
324 |
|
325 |
+
|
326 |
+
/*
|
327 |
+
* Retrieve product categories
|
328 |
+
*
|
329 |
+
* @param Mage_Catalog_Model_Product $product
|
330 |
+
* @param array $categories
|
331 |
+
* @return array
|
332 |
+
*/
|
333 |
+
public function getProductsCategories2($product,$categories)
|
334 |
+
{
|
335 |
+
$result = array();
|
336 |
+
$_categories = $product->getCategoryIds();
|
337 |
+
$parent_id = 0;
|
338 |
+
$parent_id = 0;
|
339 |
+
$i = 0;
|
340 |
+
sort($_categories);
|
341 |
+
|
342 |
+
if(count($_categories)) {
|
343 |
+
$_count = 0;
|
344 |
+
foreach($_categories as $c) {
|
345 |
+
if(isset($categories[$c])) {
|
346 |
+
if( $parent_id == $categories[$c]['parent'] || $i <= 1) {
|
347 |
+
$result[] = $categories[$c]['name'];
|
348 |
+
|
349 |
+
|
350 |
+
$parent_id = $categories[$c]['id'];
|
351 |
+
|
352 |
+
}
|
353 |
+
$i++;
|
354 |
+
// if(count(explode('||',$categories[$c])) > $_count) $result = explode('||',$categories[$c]);
|
355 |
+
$_count = count($result);
|
356 |
+
}
|
357 |
+
}
|
358 |
+
}
|
359 |
+
return $result;
|
360 |
+
}
|
361 |
+
|
362 |
+
|
363 |
/*
|
364 |
* Retrieve current store
|
365 |
*
|
app/code/community/BeezUp/etc/config.xml
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
<config>
|
3 |
<modules>
|
4 |
<BeezUp>
|
5 |
-
<version>4.
|
6 |
</BeezUp>
|
7 |
</modules>
|
8 |
<global>
|
2 |
<config>
|
3 |
<modules>
|
4 |
<BeezUp>
|
5 |
+
<version>4.5.0</version>
|
6 |
</BeezUp>
|
7 |
</modules>
|
8 |
<global>
|
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.
|
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.
|
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.
|
404 |
<sort_order>2</sort_order>
|
405 |
<show_in_default>1</show_in_default>
|
406 |
<show_in_website>1</show_in_website>
|
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.5.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.5.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.5.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>
|
app/code/community/BeezUp/log/log.txt
DELETED
@@ -1,530 +0,0 @@
|
|
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
DELETED
@@ -1,3061 +0,0 @@
|
|
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 |