本文整理匯總了PHP中Sylius\Component\Core\Model\OrderInterface::setBillingAddress方法的典型用法代碼示例。如果您正苦於以下問題:PHP OrderInterface::setBillingAddress方法的具體用法?PHP OrderInterface::setBillingAddress怎麽用?PHP OrderInterface::setBillingAddress使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Sylius\Component\Core\Model\OrderInterface
的用法示例。
在下文中一共展示了OrderInterface::setBillingAddress方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: address
/**
* @param OrderInterface $order
* @param string $countryCode
*/
private function address(OrderInterface $order, $countryCode)
{
/** @var AddressInterface $address */
$address = $this->addressFactory->createNew();
$address->setFirstname($this->faker->firstName);
$address->setLastname($this->faker->lastName);
$address->setStreet($this->faker->streetName);
$address->setCountryCode($countryCode);
$address->setCity($this->faker->city);
$address->setPostcode($this->faker->postcode);
$order->setShippingAddress($address);
$order->setBillingAddress($address);
$this->applyCheckoutStateTransition($order, OrderCheckoutTransitions::TRANSITION_ADDRESS);
}
示例2: checkoutUsing
/**
* @param OrderInterface $order
* @param ShippingMethodInterface $shippingMethod
* @param AddressInterface $address
* @param PaymentMethodInterface $paymentMethod
*/
private function checkoutUsing(OrderInterface $order, ShippingMethodInterface $shippingMethod, AddressInterface $address, PaymentMethodInterface $paymentMethod)
{
$order->setShippingAddress($address);
$order->setBillingAddress(clone $address);
$this->applyTransitionOnOrderCheckout($order, OrderCheckoutTransitions::TRANSITION_ADDRESS);
$this->proceedSelectingShippingAndPaymentMethod($order, $shippingMethod, $paymentMethod);
}