本文整理汇总了PHP中Sylius\Component\Core\Model\OrderInterface::getShippingState方法的典型用法代码示例。如果您正苦于以下问题:PHP OrderInterface::getShippingState方法的具体用法?PHP OrderInterface::getShippingState怎么用?PHP OrderInterface::getShippingState使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Sylius\Component\Core\Model\OrderInterface
的用法示例。
在下文中一共展示了OrderInterface::getShippingState方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1:
function it_does_not_mark_order_as_fulfilled_when_it_has_been_shipped_but_not_paid(FactoryInterface $stateMachineFactory, OrderInterface $order, StateMachineInterface $stateMachine)
{
$order->getShippingState()->willReturn(OrderShippingStates::STATE_SHIPPED);
$order->getPaymentState()->willReturn(Argument::not(OrderPaymentStates::STATE_PAID));
$stateMachineFactory->get($order, OrderTransitions::GRAPH)->willReturn($stateMachine);
$stateMachine->can(OrderTransitions::TRANSITION_FULFILL)->willReturn(true);
$stateMachine->apply(OrderTransitions::TRANSITION_FULFILL)->shouldNotBeCalled();
$this->resolve($order);
}
示例2: ArrayCollection
function it_does_not_mark_an_order_if_it_is_already_in_this_shipping_state(FactoryInterface $stateMachineFactory, OrderInterface $order, ShipmentInterface $shipment1, ShipmentInterface $shipment2, StateMachineInterface $orderStateMachine)
{
$shipments = new ArrayCollection();
$shipments->add($shipment1->getWrappedObject());
$shipments->add($shipment2->getWrappedObject());
$order->getShipments()->willReturn($shipments);
$order->getShippingState()->willReturn(OrderShippingStates::STATE_SHIPPED);
$stateMachineFactory->get($order, OrderShippingTransitions::GRAPH)->willReturn($orderStateMachine);
$shipment1->getState()->willReturn(ShipmentInterface::STATE_SHIPPED);
$shipment2->getState()->willReturn(ShipmentInterface::STATE_SHIPPED);
$orderStateMachine->apply(OrderShippingTransitions::TRANSITION_SHIP)->shouldNotBeCalled();
$this->resolve($order);
}
示例3: resolveShippingState
/**
* {@inheritdoc}
*/
public function resolveShippingState(OrderInterface $order)
{
if (OrderShippingStates::STATE_SHIPPED === $order->getShippingState()) {
return;
}
/** @var StateMachineInterface $stateMachine */
$stateMachine = $this->stateMachineFactory->get($order, OrderShippingTransitions::GRAPH);
if ($this->allShipmentsInStateButOrderStateNotUpdated($order, ShipmentInterface::STATE_SHIPPED, OrderShippingStates::STATE_SHIPPED)) {
$stateMachine->apply(OrderShippingTransitions::TRANSITION_SHIP);
}
if ($this->isPartiallyShippedButOrderStateNotUpdated($order)) {
$stateMachine->apply(OrderShippingTransitions::TRANSITION_PARTIALLY_SHIP);
}
}