当前位置: 首页>>代码示例>>PHP>>正文


PHP OrderInterface::getNumber方法代码示例

本文整理汇总了PHP中Sylius\Component\Core\Model\OrderInterface::getNumber方法的典型用法代码示例。如果您正苦于以下问题:PHP OrderInterface::getNumber方法的具体用法?PHP OrderInterface::getNumber怎么用?PHP OrderInterface::getNumber使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Sylius\Component\Core\Model\OrderInterface的用法示例。


在下文中一共展示了OrderInterface::getNumber方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: anEmailWithShipmentDetailsOfOrderShouldBeSentTo

 /**
  * @Then /^an email with shipment's details of (this order) should be sent to "([^"]+)"$/
  */
 public function anEmailWithShipmentDetailsOfOrderShouldBeSentTo(OrderInterface $order, $recipient)
 {
     $this->assertEmailContainsMessageTo($order->getNumber(), $recipient);
     $this->assertEmailContainsMessageTo($order->getLastShipment()->getMethod()->getName(), $recipient);
     $tracking = $this->sharedStorage->get('tracking_code');
     $this->assertEmailContainsMessageTo($tracking, $recipient);
 }
开发者ID:ReissClothing,项目名称:Sylius,代码行数:10,代码来源:EmailContext.php

示例2: iViewTheSummaryOfTheOrder

 /**
  * @When I view the summary of the order :order
  * @When /^I am viewing the summary of (this order)$/
  */
 public function iViewTheSummaryOfTheOrder(OrderInterface $order)
 {
     $this->orderShowPage->open(['number' => $order->getNumber()]);
 }
开发者ID:Niiko,项目名称:Sylius,代码行数:8,代码来源:AccountContext.php

示例3: orderShouldNotExistInTheRegistry

 /**
  * @Then /^(this order) should not exist in the registry$/
  */
 public function orderShouldNotExistInTheRegistry(OrderInterface $order)
 {
     $this->indexPage->open();
     Assert::false($this->indexPage->isSingleResourceOnPage(['number' => $order->getNumber()]), sprintf('Order with number %s exists but should not.', $order->getNumber()));
 }
开发者ID:okwinza,项目名称:Sylius,代码行数:8,代码来源:ManagingOrdersContext.php

示例4: isItPossibleToChangePaymentMethodForOrder

 /**
  * {@inheritDoc}
  */
 public function isItPossibleToChangePaymentMethodForOrder(OrderInterface $order)
 {
     $row = $this->tableAccessor->getRowWithFields($this->getElement('customer_orders'), ['number' => $order->getNumber()]);
     return $row->hasLink('Pay');
 }
开发者ID:sylius,项目名称:sylius,代码行数:8,代码来源:IndexPage.php

示例5:

 function it_throws_an_exception_if_order_still_exists(OrderRepositoryInterface $orderRepository, OrderInterface $order)
 {
     $order->getNumber()->willReturn('#00000000');
     $orderRepository->findOneBy(['number' => '#00000000'])->willReturn($order);
     $this->shouldThrow(NotEqualException::class)->during('orderShouldNotExistInTheRegistry', [$order]);
 }
开发者ID:ahmadrabie,项目名称:Sylius,代码行数:6,代码来源:OrderContextSpec.php

示例6: thisOrderShouldHaveNumber

 /**
  * @Given this order should have :order number
  */
 public function thisOrderShouldHaveNumber(OrderInterface $order)
 {
     Assert::true($this->orderIndexPage->isOrderWithNumberInTheList($order->getNumber()), sprintf('Cannot find order with number "%s" in the list.', $order->getNumber()));
 }
开发者ID:polisys,项目名称:Sylius,代码行数:7,代码来源:AccountContext.php


注:本文中的Sylius\Component\Core\Model\OrderInterface::getNumber方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。