123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Quote\Model;
- use Magento\Framework\Exception\InputException;
- use Magento\Quote\Model\Quote\Address\BillingAddressPersister;
- use Psr\Log\LoggerInterface as Logger;
- use Magento\Quote\Api\BillingAddressManagementInterface;
- use Magento\Framework\App\ObjectManager;
- /**
- * Quote billing address write service object.
- */
- class BillingAddressManagement implements BillingAddressManagementInterface
- {
- /**
- * Validator.
- *
- * @var QuoteAddressValidator
- */
- protected $addressValidator;
- /**
- * Logger.
- *
- * @var Logger
- */
- protected $logger;
- /**
- * Quote repository.
- *
- * @var \Magento\Quote\Api\CartRepositoryInterface
- */
- protected $quoteRepository;
- /**
- * @var \Magento\Customer\Api\AddressRepositoryInterface
- */
- protected $addressRepository;
- /**
- * @var \Magento\Quote\Model\ShippingAddressAssignment
- */
- private $shippingAddressAssignment;
- /**
- * Constructs a quote billing address service object.
- *
- * @param \Magento\Quote\Api\CartRepositoryInterface $quoteRepository Quote repository.
- * @param QuoteAddressValidator $addressValidator Address validator.
- * @param Logger $logger Logger.
- * @param \Magento\Customer\Api\AddressRepositoryInterface $addressRepository
- */
- public function __construct(
- \Magento\Quote\Api\CartRepositoryInterface $quoteRepository,
- QuoteAddressValidator $addressValidator,
- Logger $logger,
- \Magento\Customer\Api\AddressRepositoryInterface $addressRepository
- ) {
- $this->addressValidator = $addressValidator;
- $this->logger = $logger;
- $this->quoteRepository = $quoteRepository;
- $this->addressRepository = $addressRepository;
- }
- /**
- * @inheritdoc
- * @SuppressWarnings(PHPMD.NPathComplexity)
- */
- public function assign($cartId, \Magento\Quote\Api\Data\AddressInterface $address, $useForShipping = false)
- {
- /** @var \Magento\Quote\Model\Quote $quote */
- $quote = $this->quoteRepository->getActive($cartId);
- $address->setCustomerId($quote->getCustomerId());
- $quote->removeAddress($quote->getBillingAddress()->getId());
- $quote->setBillingAddress($address);
- try {
- $this->getShippingAddressAssignment()->setAddress($quote, $address, $useForShipping);
- $quote->setDataChanges(true);
- $this->quoteRepository->save($quote);
- } catch (\Exception $e) {
- $this->logger->critical($e);
- throw new InputException(__('The address failed to save. Verify the address and try again.'));
- }
- return $quote->getBillingAddress()->getId();
- }
- /**
- * @inheritdoc
- */
- public function get($cartId)
- {
- $cart = $this->quoteRepository->getActive($cartId);
- return $cart->getBillingAddress();
- }
- /**
- * Get shipping address assignment
- *
- * @return \Magento\Quote\Model\ShippingAddressAssignment
- * @deprecated 101.0.0
- */
- private function getShippingAddressAssignment()
- {
- if (!$this->shippingAddressAssignment) {
- $this->shippingAddressAssignment = ObjectManager::getInstance()
- ->get(\Magento\Quote\Model\ShippingAddressAssignment::class);
- }
- return $this->shippingAddressAssignment;
- }
- }
|