You are here

OrderFixedAmountOff.php in Commerce Core 8.2

File

modules/promotion/src/Plugin/Commerce/PromotionOffer/OrderFixedAmountOff.php
View source
<?php

namespace Drupal\commerce_promotion\Plugin\Commerce\PromotionOffer;

use Drupal\commerce_order\Adjustment;
use Drupal\commerce_promotion\Entity\PromotionInterface;
use Drupal\Core\Entity\EntityInterface;

/**
 * Provides the fixed amount off offer for orders.
 *
 * The discount is split between order items, to simplify VAT taxes and refunds.
 *
 * @CommercePromotionOffer(
 *   id = "order_fixed_amount_off",
 *   label = @Translation("Fixed amount off the order subtotal"),
 *   entity_type = "commerce_order",
 * )
 */
class OrderFixedAmountOff extends OrderPromotionOfferBase {
  use FixedAmountOffTrait;

  /**
   * {@inheritdoc}
   */
  public function apply(EntityInterface $entity, PromotionInterface $promotion) {
    $this
      ->assertEntity($entity);

    /** @var \Drupal\commerce_order\Entity\OrderInterface $order */
    $order = $entity;
    $subtotal_price = $order
      ->getSubTotalPrice();
    $amount = $this
      ->getAmount();
    if ($subtotal_price
      ->getCurrencyCode() != $amount
      ->getCurrencyCode()) {
      return;
    }
    $total_price = $order
      ->getTotalPrice();

    // The promotion amount can't be larger than the total, to avoid
    // potentially having a negative order total.
    if ($total_price && $amount
      ->greaterThan($total_price)) {
      $amount = $total_price;
    }

    // Skip applying the promotion if there's no amount to discount.
    if ($amount
      ->isZero()) {
      return;
    }

    // Split the amount between order items.
    $amounts = $this->splitter
      ->split($order, $amount);
    foreach ($order
      ->getItems() as $order_item) {
      if (isset($amounts[$order_item
        ->id()])) {
        $order_item
          ->addAdjustment(new Adjustment([
          'type' => 'promotion',
          'label' => $promotion
            ->getDisplayName() ?: $this
            ->t('Discount'),
          'amount' => $amounts[$order_item
            ->id()]
            ->multiply('-1'),
          'source_id' => $promotion
            ->id(),
        ]));
      }
    }
  }

}

Classes

Namesort descending Description
OrderFixedAmountOff Provides the fixed amount off offer for orders.