class OrderFixedAmountOff in Commerce Currency Resolver 8
Provides the fixed amount off offer for orders with multi-currency support.
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface
- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, MessengerTrait, StringTranslationTrait
- class \Drupal\commerce_promotion\Plugin\Commerce\PromotionOffer\PromotionOfferBase implements PromotionOfferInterface, ContainerFactoryPluginInterface
- class \Drupal\commerce_promotion\Plugin\Commerce\PromotionOffer\OrderPromotionOfferBase implements OrderPromotionOfferInterface
- class \Drupal\commerce_promotion\Plugin\Commerce\PromotionOffer\OrderFixedAmountOff uses FixedAmountOffTrait
- class \Drupal\commerce_currency_resolver\Plugin\Commerce\PromotionOffer\OrderFixedAmountOff uses CommerceCurrencyResolverAmountTrait
- class \Drupal\commerce_promotion\Plugin\Commerce\PromotionOffer\OrderFixedAmountOff uses FixedAmountOffTrait
- class \Drupal\commerce_promotion\Plugin\Commerce\PromotionOffer\OrderPromotionOfferBase implements OrderPromotionOfferInterface
- class \Drupal\commerce_promotion\Plugin\Commerce\PromotionOffer\PromotionOfferBase implements PromotionOfferInterface, ContainerFactoryPluginInterface
- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, MessengerTrait, StringTranslationTrait
Expanded class hierarchy of OrderFixedAmountOff
See also
\Drupal\commerce_promotion\Plugin\Commerce\PromotionOffer\OrderFixedAmountOff
1 file declares its use of OrderFixedAmountOff
- commerce_currency_resolver.module in ./
commerce_currency_resolver.module - Main module file.
File
- src/
Plugin/ Commerce/ PromotionOffer/ OrderFixedAmountOff.php, line 16
Namespace
Drupal\commerce_currency_resolver\Plugin\Commerce\PromotionOfferView source
class OrderFixedAmountOff extends CommerceOrderFixedAmountOff {
use CommerceCurrencyResolverAmountTrait;
/**
* {@inheritdoc}
*/
public function apply(EntityInterface $entity, PromotionInterface $promotion) {
// Nothing to do. Go to parent.
if (!$this
->shouldCurrencyRefresh($this
->getAmount()
->getCurrencyCode())) {
return parent::apply($entity, $promotion);
}
$this
->assertEntity($entity);
/** @var \Drupal\commerce_order\Entity\OrderInterface $order */
$order = $entity;
$subtotal_price = $order
->getSubTotalPrice();
$amount = $this
->getPrice($this
->getAmount());
// The promotion amount can't be larger than the subtotal, to avoid
// potentially having a negative order total.
if ($amount
->greaterThan($subtotal_price)) {
$amount = $subtotal_price;
}
// 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(),
]));
}
}
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
CommerceCurrencyResolverAmountTrait:: |
public | function | ||
CommerceCurrencyResolverAmountTrait:: |
public | function | Get resolved currency. | |
CommerceCurrencyResolverAmountTrait:: |
public | function | Get price based on currency price and target currency. | |
CommerceCurrencyResolverAmountTrait:: |
public | function | Do not run conditions currency conversion on specific conditions. | |
CommerceCurrencyResolverAmountTrait:: |
public | function | ||
DependencySerializationTrait:: |
protected | property | An array of entity type IDs keyed by the property name of their storages. | |
DependencySerializationTrait:: |
protected | property | An array of service IDs keyed by property name used for serialization. | |
DependencySerializationTrait:: |
public | function | 1 | |
DependencySerializationTrait:: |
public | function | 2 | |
FixedAmountOffTrait:: |
public | function | ||
FixedAmountOffTrait:: |
protected | function | Gets the offer amount. | |
MessengerTrait:: |
protected | property | The messenger. | 29 |
MessengerTrait:: |
public | function | Gets the messenger. | 29 |
MessengerTrait:: |
public | function | Sets the messenger. | |
OrderFixedAmountOff:: |
public | function |
Applies the offer to the given entity. Overrides OrderFixedAmountOff:: |
|
OrderPromotionOfferBase:: |
protected | property | The price splitter. | |
OrderPromotionOfferBase:: |
public static | function |
Creates an instance of the plugin. Overrides PromotionOfferBase:: |
2 |
OrderPromotionOfferBase:: |
public | function |
Constructs a new OrderPromotionOfferBase object. Overrides PromotionOfferBase:: |
1 |
PluginBase:: |
protected | property | Configuration information passed into the plugin. | 1 |
PluginBase:: |
protected | property | The plugin implementation definition. | 1 |
PluginBase:: |
protected | property | The plugin_id. | |
PluginBase:: |
constant | A string which is used to separate base plugin IDs from the derivative ID. | ||
PluginBase:: |
public | function |
Gets the base_plugin_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the derivative_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the definition of the plugin implementation. Overrides PluginInspectionInterface:: |
3 |
PluginBase:: |
public | function |
Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface:: |
|
PluginBase:: |
public | function | Determines if the plugin is configurable. | |
PromotionOfferBase:: |
protected | property | The rounder. | |
PromotionOfferBase:: |
protected | function | Asserts that the given entity is of the expected type. | |
PromotionOfferBase:: |
public | function |
Allows an offer to clean up any modifications done to the given entity. Overrides PromotionOfferInterface:: |
1 |
PromotionOfferBase:: |
public | function |
Gets this plugin's configuration. Overrides ConfigurableInterface:: |
|
PromotionOfferBase:: |
public | function |
Gets the offer entity type ID. Overrides PromotionOfferInterface:: |
|
PromotionOfferBase:: |
public | function |
Sets the configuration for this plugin instance. Overrides ConfigurableInterface:: |
|
PromotionOfferBase:: |
public | function |
Form validation handler. Overrides PluginFormInterface:: |
2 |
StringTranslationTrait:: |
protected | property | The string translation service. | 1 |
StringTranslationTrait:: |
protected | function | Formats a string containing a count of items. | |
StringTranslationTrait:: |
protected | function | Returns the number of plurals supported by a given language. | |
StringTranslationTrait:: |
protected | function | Gets the string translation service. | |
StringTranslationTrait:: |
public | function | Sets the string translation service to use. | 2 |
StringTranslationTrait:: |
protected | function | Translates a string to the current language or to a given language. |