/** * @param \Ess\M2ePro\Model\Listing\Product $listingProduct * @return bool * @throws \Ess\M2ePro\Model\Exception * @throws \Ess\M2ePro\Model\Exception\Logic */ public function isMeetRelistRequirements(\Ess\M2ePro\Model\Listing\Product $listingProduct) { if (!$listingProduct->isStopped() || $listingProduct->isBlocked()) { return false; } if (!$listingProduct->isRelistable()) { return false; } /** @var \Ess\M2ePro\Model\Amazon\Listing\Product $amazonListingProduct */ $amazonListingProduct = $listingProduct->getChildObject(); $variationManager = $amazonListingProduct->getVariationManager(); if ($variationManager->isVariationProduct()) { if ($variationManager->isRelationParentType()) { return false; } if (!$variationManager->getTypeModel()->isVariationProductMatched()) { return false; } } $amazonSynchronizationTemplate = $amazonListingProduct->getAmazonSynchronizationTemplate(); if (!$amazonSynchronizationTemplate->isRelistMode()) { return false; } if ($amazonSynchronizationTemplate->isRelistFilterUserLock() && $listingProduct->getStatusChanger() == \Ess\M2ePro\Model\Listing\Product::STATUS_CHANGER_USER) { return false; } if ($listingProduct->isSetProcessingLock('in_action')) { return false; } $variationResource = $this->activeRecordFactory->getObject('Listing\\Product\\Variation')->getResource(); if ($amazonSynchronizationTemplate->isRelistStatusEnabled()) { if (!$listingProduct->getMagentoProduct()->isStatusEnabled()) { return false; } else { if ($variationManager->isPhysicalUnit() && $variationManager->getTypeModel()->isVariationProductMatched()) { $temp = $variationResource->isAllStatusesDisabled($listingProduct->getId(), $listingProduct->getListing()->getStoreId()); if (!is_null($temp) && $temp) { return false; } } } } if ($amazonSynchronizationTemplate->isRelistIsInStock()) { if (!$listingProduct->getMagentoProduct()->isStockAvailability()) { return false; } else { if ($variationManager->isPhysicalUnit() && $variationManager->getTypeModel()->isVariationProductMatched()) { $temp = $variationResource->isAllDoNotHaveStockAvailabilities($listingProduct->getId(), $listingProduct->getListing()->getStoreId()); if (!is_null($temp) && $temp) { return false; } } } } if ($amazonSynchronizationTemplate->isRelistWhenQtyMagentoHasValue()) { $result = false; $productQty = (int) $amazonListingProduct->getQty(true); $typeQty = (int) $amazonSynchronizationTemplate->getRelistWhenQtyMagentoHasValueType(); $minQty = (int) $amazonSynchronizationTemplate->getRelistWhenQtyMagentoHasValueMin(); $maxQty = (int) $amazonSynchronizationTemplate->getRelistWhenQtyMagentoHasValueMax(); if ($typeQty == \Ess\M2ePro\Model\Amazon\Template\Synchronization::RELIST_QTY_LESS && $productQty <= $minQty) { $result = true; } if ($typeQty == \Ess\M2ePro\Model\Amazon\Template\Synchronization::RELIST_QTY_MORE && $productQty >= $minQty) { $result = true; } if ($typeQty == \Ess\M2ePro\Model\Amazon\Template\Synchronization::RELIST_QTY_BETWEEN && $productQty >= $minQty && $productQty <= $maxQty) { $result = true; } if (!$result) { return false; } } if ($amazonSynchronizationTemplate->isRelistWhenQtyCalculatedHasValue()) { $result = false; $productQty = (int) $amazonListingProduct->getQty(false); $typeQty = (int) $amazonSynchronizationTemplate->getRelistWhenQtyCalculatedHasValueType(); $minQty = (int) $amazonSynchronizationTemplate->getRelistWhenQtyCalculatedHasValueMin(); $maxQty = (int) $amazonSynchronizationTemplate->getRelistWhenQtyCalculatedHasValueMax(); if ($typeQty == \Ess\M2ePro\Model\Amazon\Template\Synchronization::RELIST_QTY_LESS && $productQty <= $minQty) { $result = true; } if ($typeQty == \Ess\M2ePro\Model\Amazon\Template\Synchronization::RELIST_QTY_MORE && $productQty >= $minQty) { $result = true; } if ($typeQty == \Ess\M2ePro\Model\Amazon\Template\Synchronization::RELIST_QTY_BETWEEN && $productQty >= $minQty && $productQty <= $maxQty) { $result = true; } if (!$result) { return false; } } return true; }
/** * @param \Ess\M2ePro\Model\Listing\Product $listingProduct * @return bool * @throws \Ess\M2ePro\Model\Exception\Logic */ public function isMeetRelistRequirements(\Ess\M2ePro\Model\Listing\Product $listingProduct) { if ($listingProduct->isListed()) { return false; } if (!$listingProduct->isRelistable() && !$listingProduct->isHidden()) { return false; } /** @var \Ess\M2ePro\Model\Ebay\Listing\Product $ebayListingProduct */ $ebayListingProduct = $listingProduct->getChildObject(); $ebaySynchronizationTemplate = $ebayListingProduct->getEbaySynchronizationTemplate(); // Correct synchronization // --------------------------------------- if (!$ebaySynchronizationTemplate->isRelistMode()) { return false; } if ($listingProduct->isStopped() && $ebaySynchronizationTemplate->isRelistFilterUserLock() && $listingProduct->getStatusChanger() == \Ess\M2ePro\Model\Listing\Product::STATUS_CHANGER_USER) { return false; } if (!$ebayListingProduct->isSetCategoryTemplate()) { return false; } // --------------------------------------- if ($listingProduct->isSetProcessingLock('in_action')) { return false; } $variationResource = $this->activeRecordFactory->getObject('Listing\\Product\\Variation')->getResource(); // Check filters // --------------------------------------- if ($ebaySynchronizationTemplate->isRelistStatusEnabled()) { if (!$listingProduct->getMagentoProduct()->isStatusEnabled()) { return false; } else { if ($ebayListingProduct->isVariationsReady()) { $temp = $variationResource->isAllStatusesDisabled($listingProduct->getId(), $listingProduct->getListing()->getStoreId()); if (!is_null($temp) && $temp) { return false; } } } } if ($ebaySynchronizationTemplate->isRelistIsInStock()) { if (!$listingProduct->getMagentoProduct()->isStockAvailability()) { return false; } else { if ($ebayListingProduct->isVariationsReady()) { $temp = $variationResource->isAllDoNotHaveStockAvailabilities($listingProduct->getId(), $listingProduct->getListing()->getStoreId()); if (!is_null($temp) && $temp) { return false; } } } } if ($ebaySynchronizationTemplate->isRelistWhenQtyMagentoHasValue()) { $result = false; $productQty = (int) $listingProduct->getMagentoProduct()->getQty(true); $typeQty = (int) $ebaySynchronizationTemplate->getRelistWhenQtyMagentoHasValueType(); $minQty = (int) $ebaySynchronizationTemplate->getRelistWhenQtyMagentoHasValueMin(); $maxQty = (int) $ebaySynchronizationTemplate->getRelistWhenQtyMagentoHasValueMax(); if ($typeQty == \Ess\M2ePro\Model\Ebay\Template\Synchronization::RELIST_QTY_LESS && $productQty <= $minQty) { $result = true; } if ($typeQty == \Ess\M2ePro\Model\Ebay\Template\Synchronization::RELIST_QTY_MORE && $productQty >= $minQty) { $result = true; } if ($typeQty == \Ess\M2ePro\Model\Ebay\Template\Synchronization::RELIST_QTY_BETWEEN && $productQty >= $minQty && $productQty <= $maxQty) { $result = true; } if (!$result) { return false; } } if ($ebaySynchronizationTemplate->isRelistWhenQtyCalculatedHasValue()) { $result = false; $productQty = (int) $ebayListingProduct->getQty(); $typeQty = (int) $ebaySynchronizationTemplate->getRelistWhenQtyCalculatedHasValueType(); $minQty = (int) $ebaySynchronizationTemplate->getRelistWhenQtyCalculatedHasValueMin(); $maxQty = (int) $ebaySynchronizationTemplate->getRelistWhenQtyCalculatedHasValueMax(); if ($typeQty == \Ess\M2ePro\Model\Ebay\Template\Synchronization::RELIST_QTY_LESS && $productQty <= $minQty) { $result = true; } if ($typeQty == \Ess\M2ePro\Model\Ebay\Template\Synchronization::RELIST_QTY_MORE && $productQty >= $minQty) { $result = true; } if ($typeQty == \Ess\M2ePro\Model\Ebay\Template\Synchronization::RELIST_QTY_BETWEEN && $productQty >= $minQty && $productQty <= $maxQty) { $result = true; } if (!$result) { return false; } } // --------------------------------------- return true; }