123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- <?php
- /**
- *
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Quote\Model;
- use \Magento\Quote\Api\CouponManagementInterface;
- use Magento\Framework\Exception\CouldNotDeleteException;
- use Magento\Framework\Exception\CouldNotSaveException;
- use Magento\Framework\Exception\NoSuchEntityException;
- /**
- * Coupon management object.
- */
- class CouponManagement implements CouponManagementInterface
- {
- /**
- * Quote repository.
- *
- * @var \Magento\Quote\Api\CartRepositoryInterface
- */
- protected $quoteRepository;
- /**
- * Constructs a coupon read service object.
- *
- * @param \Magento\Quote\Api\CartRepositoryInterface $quoteRepository Quote repository.
- */
- public function __construct(
- \Magento\Quote\Api\CartRepositoryInterface $quoteRepository
- ) {
- $this->quoteRepository = $quoteRepository;
- }
- /**
- * {@inheritdoc}
- */
- public function get($cartId)
- {
- /** @var \Magento\Quote\Model\Quote $quote */
- $quote = $this->quoteRepository->getActive($cartId);
- return $quote->getCouponCode();
- }
- /**
- * {@inheritdoc}
- */
- public function set($cartId, $couponCode)
- {
- /** @var \Magento\Quote\Model\Quote $quote */
- $quote = $this->quoteRepository->getActive($cartId);
- if (!$quote->getItemsCount()) {
- throw new NoSuchEntityException(__('The "%1" Cart doesn\'t contain products.', $cartId));
- }
- if (!$quote->getStoreId()) {
- throw new NoSuchEntityException(__('Cart isn\'t assigned to correct store'));
- }
- $quote->getShippingAddress()->setCollectShippingRates(true);
- try {
- $quote->setCouponCode($couponCode);
- $this->quoteRepository->save($quote->collectTotals());
- } catch (\Exception $e) {
- throw new CouldNotSaveException(
- __("The coupon code couldn't be applied. Verify the coupon code and try again.")
- );
- }
- if ($quote->getCouponCode() != $couponCode) {
- throw new NoSuchEntityException(__("The coupon code isn't valid. Verify the code and try again."));
- }
- return true;
- }
- /**
- * {@inheritdoc}
- */
- public function remove($cartId)
- {
- /** @var \Magento\Quote\Model\Quote $quote */
- $quote = $this->quoteRepository->getActive($cartId);
- if (!$quote->getItemsCount()) {
- throw new NoSuchEntityException(__('The "%1" Cart doesn\'t contain products.', $cartId));
- }
- $quote->getShippingAddress()->setCollectShippingRates(true);
- try {
- $quote->setCouponCode('');
- $this->quoteRepository->save($quote->collectTotals());
- } catch (\Exception $e) {
- throw new CouldNotDeleteException(
- __("The coupon code couldn't be deleted. Verify the coupon code and try again.")
- );
- }
- if ($quote->getCouponCode() != '') {
- throw new CouldNotDeleteException(
- __("The coupon code couldn't be deleted. Verify the coupon code and try again.")
- );
- }
- return true;
- }
- }
|