當前位置: 首頁>>代碼示例>>PHP>>正文


PHP ProductInterface::getFirstVariant方法代碼示例

本文整理匯總了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();
 }
開發者ID:okwinza,項目名稱:Sylius,代碼行數:8,代碼來源:ProductContext.php

示例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();
 }
開發者ID:polisys,項目名稱:Sylius,代碼行數:10,代碼來源:OrderContext.php

示例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())));
 }
開發者ID:gabiudrescu,項目名稱:Sylius,代碼行數:7,代碼來源:ManagingProductVariantsContext.php

示例4: setProductsQuantity

 /**
  * @param ProductInterface $product
  * @param int $quantity
  */
 private function setProductsQuantity(ProductInterface $product, $quantity)
 {
     $product->getFirstVariant()->setOnHand($quantity);
     $this->saveProduct($product);
 }
開發者ID:origammi,項目名稱:Sylius,代碼行數:9,代碼來源:ProductContext.php

示例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([]);
 }
開發者ID:okwinza,項目名稱:Sylius,代碼行數:8,代碼來源:OrderContext.php

示例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));
 }
開發者ID:okwinza,項目名稱:Sylius,代碼行數:12,代碼來源:ProductContext.php


注:本文中的Sylius\Component\Core\Model\ProductInterface::getFirstVariant方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。