本文整理汇总了PHP中Sylius\Component\Core\Model\ProductInterface::getFirstVariant方法的典型用法代码示例。如果您正苦于以下问题:PHP ProductInterface::getFirstVariant方法的具体用法?PHP ProductInterface::getFirstVariant怎么用?PHP ProductInterface::getFirstVariant使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Sylius\Component\Core\Model\ProductInterface
的用法示例。
在下文中一共展示了ProductInterface::getFirstVariant方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: productBelongsToTaxCategory
/**
* @Given /^([^"]+) belongs to ("[^"]+" tax category)$/
*/
public function productBelongsToTaxCategory(ProductInterface $product, TaxCategoryInterface $taxCategory)
{
$product->getFirstVariant()->setTaxCategory($taxCategory);
$this->objectManager->flush();
}
示例2: theCustomerBoughtSingleUsing
/**
* @Given the customer bought a single :product using :coupon coupon
*/
public function theCustomerBoughtSingleUsing(ProductInterface $product, CouponInterface $coupon)
{
$order = $this->addProductVariantToOrder($product->getFirstVariant(), $product->getPrice());
$order->setPromotionCoupon($coupon);
$this->orderRecalculator->recalculate($order);
$this->objectManager->flush();
}
示例3: thereShouldBeNoUnitsOfThisProductOnHold
/**
* @Then /^there should be no units of (this product) on hold$/
*/
public function thereShouldBeNoUnitsOfThisProductOnHold(ProductInterface $product)
{
Assert::eq(0, $this->indexPage->getOnHoldQuantityFor($product->getFirstVariant()), sprintf('Unexpected on hand quantity for "%s" variant. It should be "%s" but is "%s"', $product->getFirstVariant()->getName(), 0, $this->indexPage->getOnHandQuantityFor($product->getFirstVariant())));
}
示例4: setProductsQuantity
/**
* @param ProductInterface $product
* @param int $quantity
*/
private function setProductsQuantity(ProductInterface $product, $quantity)
{
$product->getFirstVariant()->setOnHand($quantity);
$this->saveProduct($product);
}
示例5: orderItemShouldNotExistInTheRegistry
/**
* @Then the order item with product :product should not exist
*/
public function orderItemShouldNotExistInTheRegistry(ProductInterface $product)
{
$orderItems = $this->orderItemRepository->findBy(['variant' => $product->getFirstVariant()]);
expect($orderItems)->toBe([]);
}
示例6: configureProductPricingCalculator
/**
* @param ProductInterface $product
* @param array $data
*/
private function configureProductPricingCalculator(ProductInterface $product, array $data)
{
$product->getFirstVariant()->setPricingCalculator($data['pricing calculator']);
if (!isset($data['calculator configuration']) || '' === $data['calculator configuration']) {
throw new \InvalidArgumentException('You must set chosen calculator configuration');
}
$product->getFirstVariant()->setPricingConfiguration($this->getPricingCalculatorConfiguration($data));
}