Class PriceAdjustment
The PriceAdjustment class represents an adjustment to the price of an order. A PriceAdjustment can apply to a ProductLineItem, ShippingLineItem, ProductShippingLineItem, or a LineItemCtnr, and are generally categorized as product-level, shipping-level, or order-level. PriceAdjustments are generated by the B2C Commerce promotions engine when applying discounts. See PromotionMgr.applyDiscounts(DiscountPlan). They may also be generated by custom code through the API. See for example ProductLineItem.createPriceAdjustment(String). In the latter case, the PriceAdjustment is called "custom"; in the former case, it is called "system". System price adjustments are associated with the promotion that triggered their creation. If the promotion was coupon-based, then the price adjustment will additionally be associated with a coupon line item in the LineItemCtnr.
| Property | Description |
|---|---|
ABTest: ABTest (read-only) | Returns the B2C Commerce AB-test this price adjustment is associated with. |
ABTestID: String (read-only) | Returns the ID of the AB-test related to this price adjustment. |
ABTestSegment: ABTestSegment (read-only) | Returns the B2C Commerce AB-test segment this price adjustment is associated with. |
ABTestSegmentID: String (read-only) | Returns the ID of the AB-test segment related to this price adjustment. |
appliedDiscount: Discount (read-only) | A Discount instance describing the discount applied to obtain this price-adjustment. |
basedOnABTest: Boolean (read-only) | Returns true if the price adjustment was generated by the B2C Commerce promotions engine when applying a promotion assigned to an AB-test. |
(read-only) | Returns true if the price adjustment was generated by the B2C Commerce promotions engine when applying a promotion assigned to a Campaign or an AB-test. |
basedOnCoupon: Boolean (read-only) | Identifies if the promotion line item results from a coupon. |
campaign: Campaign (read-only) | Returns the B2C Commerce campaign this price adjustment is associated with. |
campaignID: String (read-only) | Returns the ID of the campaign the price adjustment was based on. |
couponLineItem: CouponLineItem (read-only) | Returns the coupon line item related to this price adjustment. |
createdBy: String (read-only) | Returns the name of the user who created the price adjustment. |
custom: Boolean (read-only) | Returns true if this PriceAdjustment was created by custom script code. |
| manual: Boolean | Returns true if this PriceAdjustment was added manually by a user. |
promotion: Promotion (read-only) | Returns the promotion associated with this price adjustment. |
promotionID: String (read-only) | Returns the ID of the promotion related to this price adjustment. |
proratedPrices: Map (read-only) | Returns a map representing the product line items to which this price adjustment is "related" (in the sense defined below) and the portion of this adjustment's price which applies to each after discount prorating is performed. |
quantity: Number (read-only) | Returns the number of items this price adjustment applies to. |
| reasonCode: EnumValue | Returns the reason code of the price adjustment. |
This class does not have a constructor, so you cannot create it directly.
| Method | Description |
|---|---|
| getABTest() | Returns the B2C Commerce AB-test this price adjustment is associated with. |
| getABTestID() | Returns the ID of the AB-test related to this price adjustment. |
| getABTestSegment() | Returns the B2C Commerce AB-test segment this price adjustment is associated with. |
| getABTestSegmentID() | Returns the ID of the AB-test segment related to this price adjustment. |
| getAppliedDiscount() | A Discount instance describing the discount applied to obtain this price-adjustment. |
| getCampaign() | Returns the B2C Commerce campaign this price adjustment is associated with. |
| getCampaignID() | Returns the ID of the campaign the price adjustment was based on. |
| getCouponLineItem() | Returns the coupon line item related to this price adjustment. |
| getCreatedBy() | Returns the name of the user who created the price adjustment. |
| getPromotion() | Returns the promotion associated with this price adjustment. |
| getPromotionID() | Returns the ID of the promotion related to this price adjustment. |
| getProratedPrices() | Returns a map representing the product line items to which this price adjustment is "related" (in the sense defined below) and the portion of this adjustment's price which applies to each after discount prorating is performed. |
| getQuantity() | Returns the number of items this price adjustment applies to. |
| getReasonCode() | Returns the reason code of the price adjustment. |
| isBasedOnABTest() | Returns true if the price adjustment was generated by the B2C Commerce promotions engine when applying a promotion assigned to an AB-test. |
| Returns true if the price adjustment was generated by the B2C Commerce promotions engine when applying a promotion assigned to a Campaign or an AB-test. | |
| isBasedOnCoupon() | Identifies if the promotion line item results from a coupon. |
| isCustom() | Returns true if this PriceAdjustment was created by custom script code. |
| isManual() | Returns true if this PriceAdjustment was added manually by a user. |
| setManual(Boolean) | Marks the current PriceAdjustment as manual/non-manual. |
| setReasonCode(String) | Set the reason code, using the internal non-localizable value. |
getBasePrice, getGrossPrice, getLineItemCtnr, getLineItemText, getNetPrice, getPrice, getPriceValue, getTax, getTaxBasis, getTaxClassID, getTaxRate, setBasePrice, setGrossPrice, setLineItemText, setNetPrice, setPriceValue, setTax, setTaxClassID, setTaxRate, updatePrice, updateTax, updateTax, updateTaxAmount
getCreationDate, getLastModified, getUUID
assign, create, create, defineProperties, defineProperty, entries, freeze, fromEntries, getOwnPropertyDescriptor, getOwnPropertyNames, getOwnPropertySymbols, getPrototypeOf, hasOwnProperty, is, isExtensible, isFrozen, isPrototypeOf, isSealed, keys, preventExtensions, propertyIsEnumerable, seal, setPrototypeOf, toLocaleString, toString, valueOf, values
- ABTest: ABTest
(read-only) Returns the B2C Commerce AB-test this price adjustment is associated with. The associated AB-test is determined from the ABTestID attribute which is set by the promotions engine when applying discounts.
If the AB-test has been removed from the system since this price adjustment was created, this method returns null. This method always returns null for custom price adjustments.
- ABTestID: String
(read-only) Returns the ID of the AB-test related to this price adjustment.
- ABTestSegment: ABTestSegment
(read-only) Returns the B2C Commerce AB-test segment this price adjustment is associated with. The associated AB-test segment is determined from the ABTestSegmentID attribute which is set by the promotions engine when applying discounts.
If the AB-test, or this segment, has been removed from the system since this price adjustment was created, this method returns null. This method always returns null for custom price adjustments.
- ABTestSegmentID: String
(read-only) Returns the ID of the AB-test segment related to this price adjustment.
- appliedDiscount: Discount
(read-only) A
Discountinstance describing the discount applied to obtain this price-adjustment. This method only returns a non-null value if the price-adjustment was created- when a discount-plan was applied to a basket, or
- as a _custom_price-adjustment using one of the methods ProductLineItem.createPriceAdjustment(String, Discount), ShippingLineItem.createShippingPriceAdjustment(String, Discount)or LineItemCtnr.createPriceAdjustment(String, Discount).
Note an instance of the Discount subclasses is returned, such as AmountDiscount or PriceBookPriceDiscount, use Discount.getType() and the constants in Discount to distinguish between types. Each subclass provides access to specific properties.
- basedOnABTest: Boolean
(read-only) Returns true if the price adjustment was generated by the B2C Commerce promotions engine when applying a promotion assigned to an AB-test.
basedOnCampaign: Boolean(read-only)Returns true if the price adjustment was generated by the B2C Commerce promotions engine when applying a promotion assigned to a Campaign or an AB-test.
Deprecated:
The method has been deprecated since the name implies that there is a related Campaign, which may not
be true. Use !isCustom() instead.
- basedOnCoupon: Boolean
(read-only) Identifies if the promotion line item results from a coupon.
- campaign: Campaign
(read-only) Returns the B2C Commerce campaign this price adjustment is associated with. The associated campaign is determined from the campaignID attribute which is set by the promotions engine when applying discounts.
If the campaign has been removed from the system since this price adjustment was created, this method returns null. This method always returns null for custom price adjustments.
Note: If the price adjustment was generated by a B2C Commerce promotion as part of an AB-test, then a Campaign object will be returned, but it is a mock implementation, and not a true Campaign. This behavior is required for backwards compatibility and should not be relied upon as it may change in future releases.
- campaignID: String
(read-only) Returns the ID of the campaign the price adjustment was based on.
Note
the price adjustment was generated by a B2C Commerce promotion as part of an AB-test, then an ID will be returned but it is not the ID of a true campaign. This behavior is required for backwards compatibility and should not be relied upon as it may change in future releases.
- couponLineItem: CouponLineItem
(read-only) Returns the coupon line item related to this price adjustment. If the price adjustment is not based on a coupon, null is returned.
- createdBy: String
(read-only) Returns the name of the user who created the price adjustment. This method returns a value if the price-adjustment was created as a custom price-adjustment using one of the methods ProductLineItem.createPriceAdjustment(String, Discount), ShippingLineItem.createShippingPriceAdjustment(String, Discount) or LineItemCtnr.createPriceAdjustment(String, Discount).
If an agent user has created the price adjustment, the agent user's name is returned. Otherwise "Customer" is returned.
- custom: Boolean
(read-only) Returns true if this PriceAdjustment was created by custom script code.
- manual: Boolean
Returns true if this PriceAdjustment was added manually by a user.
A manual PriceAdjustment is one which has been added as a result of a user interaction e.g. by a user editing an order.
A non-manual PriceAdjustment is one which has been added for a different reason, e.g. by custom logic which automatically adjusts the price of particular products when certain conditions are met.
- promotion: Promotion
(read-only) Returns the promotion associated with this price adjustment. The associated promotion is determined from the promotionID and campaignID attributes which are set by the promotions engine when applying discounts. Alternatively if the promotion applied as part of an AB-test, then the associated promotion is determined from the promotionID attribute and the hidden attributes, abTestID and abTestGroupID.
If the promotion has been removed from the system since this price adjustment was created, or if the promotion still exists but is not assigned to any campaign or AB-test, this method returns null. If the promotion has been reassigned to a different campaign or AB-test since this price adjustment was created, then the system will return an appropriate Promotion instance. This method always returns null for custom price adjustments.
- promotionID: String
(read-only) Returns the ID of the promotion related to this price adjustment.
- proratedPrices: Map
(read-only) Returns a map representing the product line items to which this price adjustment is "related" (in the sense defined below) and the portion of this adjustment's price which applies to each after discount prorating is performed. This information is sometimes useful to display in the storefront but is more often useful for integrating with backend order-management and accounting systems which require all discounts to be itemized.
The definition of "related" product line items depends on the type of promotion which generated this price adjustment:
- For order promotions, price adjustments are prorated across all product line items which are not explicitly excluded by the promotion. Custom order price adjustments apply to all items in the LineItemCtnr.
- For Buy-X-Get-Y product promotions, price adjustments are prorated across all items all product line items that are involved in the promotion, meaning that the PLI has one or more items contributing to the qualifying product count (i.e. the item is one of the X) or receiving the discount (i.e. the item is one of the Y).
- Other product promotions are not prorated and simply adjust the parent product line item, and so the returned map is of size 1.
- For shipping promotions, this method returns an empty map.
Buy-X-Get-Y product promotions are prorated as follows: Each price adjustment generated by the promotion is sequentially prorated upon the related items according to the items' adjusted prices after all non-BOGO product promotions are considered, but before order promotions are considered.
Order promotions are prorated sequentially upon non-excluded items according to the order in which they applied during promotion processing.
The values in the map are inclusive of tax if this price adjustment is based on gross pricing, and exclusive of tax otherwise. The sum of the prorated prices always equals the price of this price adjustment.
- quantity: Number
(read-only) Returns the number of items this price adjustment applies to. This value is always equal to 1 for price adjustments generated by order or shipping promotions. For price adjustments generated by product promotions, this value represents the number of units of the parent product line item to which the adjustment applies. Because promotions may have a maximum number of applications this value may be less than the product line item quantity.
For custom price adjustments, not generated by the promotions engine, this method always returns 0.
- reasonCode: EnumValue
Returns the reason code of the price adjustment. The list of available reason codes is editable system meta-data. An example for using the reason code is that in a call center application the CSR will explain why he gave a discount to the customer.
- getABTest(): ABTest
Returns the B2C Commerce AB-test this price adjustment is associated with. The associated AB-test is determined from the ABTestID attribute which is set by the promotions engine when applying discounts.
If the AB-test has been removed from the system since this price adjustment was created, this method returns null. This method always returns null for custom price adjustments.
Returns:
- the B2C Commerce AB-test the price adjustment was based on, or
nullif it was not based on an AB-test.
- the B2C Commerce AB-test the price adjustment was based on, or
- getABTestID(): String
Returns the ID of the AB-test related to this price adjustment.
Returns:
- ID of related AB-test, or null.
- getABTestSegment(): ABTestSegment
Returns the B2C Commerce AB-test segment this price adjustment is associated with. The associated AB-test segment is determined from the ABTestSegmentID attribute which is set by the promotions engine when applying discounts.
If the AB-test, or this segment, has been removed from the system since this price adjustment was created, this method returns null. This method always returns null for custom price adjustments.
Returns:
- the B2C Commerce AB-test segment the price adjustment was based on, or
nullif it was not based on an AB-test.
- the B2C Commerce AB-test segment the price adjustment was based on, or
- getABTestSegmentID(): String
Returns the ID of the AB-test segment related to this price adjustment.
Returns:
- ID of related AB-test segment, or null.
- getAppliedDiscount(): Discount
A
Discountinstance describing the discount applied to obtain this price-adjustment. This method only returns a non-null value if the price-adjustment was created- when a discount-plan was applied to a basket, or
- as a _custom_price-adjustment using one of the methods ProductLineItem.createPriceAdjustment(String, Discount), ShippingLineItem.createShippingPriceAdjustment(String, Discount)or LineItemCtnr.createPriceAdjustment(String, Discount).
Note an instance of the Discount subclasses is returned, such as AmountDiscount or PriceBookPriceDiscount, use Discount.getType() and the constants in Discount to distinguish between types. Each subclass provides access to specific properties.
Returns:
- null or the discount applied
- getCampaign(): Campaign
Returns the B2C Commerce campaign this price adjustment is associated with. The associated campaign is determined from the campaignID attribute which is set by the promotions engine when applying discounts.
If the campaign has been removed from the system since this price adjustment was created, this method returns null. This method always returns null for custom price adjustments.
Note: If the price adjustment was generated by a B2C Commerce promotion as part of an AB-test, then a Campaign object will be returned, but it is a mock implementation, and not a true Campaign. This behavior is required for backwards compatibility and should not be relied upon as it may change in future releases.
Returns:
- the B2C Commerce campaign the price adjustment was based on, or
nullif it was not based on a campaign.
- the B2C Commerce campaign the price adjustment was based on, or
- getCampaignID(): String
Returns the ID of the campaign the price adjustment was based on.
Note
the price adjustment was generated by a B2C Commerce promotion as part of an AB-test, then an ID will be returned but it is not the ID of a true campaign. This behavior is required for backwards compatibility and should not be relied upon as it may change in future releases. Returns:
- the ID of the B2C Commerce campaign the price adjustment was based on, or
nullif it was not based on a campaign.
- the ID of the B2C Commerce campaign the price adjustment was based on, or
- getCouponLineItem(): CouponLineItem
Returns the coupon line item related to this price adjustment. If the price adjustment is not based on a coupon, null is returned.
Returns:
- Coupon line item or null.
- getCreatedBy(): String
Returns the name of the user who created the price adjustment. This method returns a value if the price-adjustment was created as a custom price-adjustment using one of the methods ProductLineItem.createPriceAdjustment(String, Discount), ShippingLineItem.createShippingPriceAdjustment(String, Discount) or LineItemCtnr.createPriceAdjustment(String, Discount).
If an agent user has created the price adjustment, the agent user's name is returned. Otherwise "Customer" is returned.
Returns:
- the name of the user who created the price adjustment
- getPromotion(): Promotion
Returns the promotion associated with this price adjustment. The associated promotion is determined from the promotionID and campaignID attributes which are set by the promotions engine when applying discounts. Alternatively if the promotion applied as part of an AB-test, then the associated promotion is determined from the promotionID attribute and the hidden attributes, abTestID and abTestGroupID.
If the promotion has been removed from the system since this price adjustment was created, or if the promotion still exists but is not assigned to any campaign or AB-test, this method returns null. If the promotion has been reassigned to a different campaign or AB-test since this price adjustment was created, then the system will return an appropriate Promotion instance. This method always returns null for custom price adjustments.
Returns:
- the associated promotion, or null.
- getPromotionID(): String
Returns the ID of the promotion related to this price adjustment.
Returns:
- ID of related promotion.
- getProratedPrices(): Map
Returns a map representing the product line items to which this price adjustment is "related" (in the sense defined below) and the portion of this adjustment's price which applies to each after discount prorating is performed. This information is sometimes useful to display in the storefront but is more often useful for integrating with backend order-management and accounting systems which require all discounts to be itemized.
The definition of "related" product line items depends on the type of promotion which generated this price adjustment:
- For order promotions, price adjustments are prorated across all product line items which are not explicitly excluded by the promotion. Custom order price adjustments apply to all items in the LineItemCtnr.
- For Buy-X-Get-Y product promotions, price adjustments are prorated across all items all product line items that are involved in the promotion, meaning that the PLI has one or more items contributing to the qualifying product count (i.e. the item is one of the X) or receiving the discount (i.e. the item is one of the Y).
- Other product promotions are not prorated and simply adjust the parent product line item, and so the returned map is of size 1.
- For shipping promotions, this method returns an empty map.
Buy-X-Get-Y product promotions are prorated as follows: Each price adjustment generated by the promotion is sequentially prorated upon the related items according to the items' adjusted prices after all non-BOGO product promotions are considered, but before order promotions are considered.
Order promotions are prorated sequentially upon non-excluded items according to the order in which they applied during promotion processing.
The values in the map are inclusive of tax if this price adjustment is based on gross pricing, and exclusive of tax otherwise. The sum of the prorated prices always equals the price of this price adjustment.
Returns:
- map of ProductLineItems to Money instances representing the product line items across which this price adjustment is prorated and the portion of this adjustment which applies towards each.
- getQuantity(): Number
Returns the number of items this price adjustment applies to. This value is always equal to 1 for price adjustments generated by order or shipping promotions. For price adjustments generated by product promotions, this value represents the number of units of the parent product line item to which the adjustment applies. Because promotions may have a maximum number of applications this value may be less than the product line item quantity.
For custom price adjustments, not generated by the promotions engine, this method always returns 0.
Returns:
- The number of items this price adjustment applies to.
- getReasonCode(): EnumValue
Returns the reason code of the price adjustment. The list of available reason codes is editable system meta-data. An example for using the reason code is that in a call center application the CSR will explain why he gave a discount to the customer.
Returns:
- reason code of the price adjustment
- isBasedOnABTest(): Boolean
Returns true if the price adjustment was generated by the B2C Commerce promotions engine when applying a promotion assigned to an AB-test.
Returns:
- true if the price adjustment was generated by the B2C Commerce promotions engine when applying a promotion assigned to an AB-test, false otherwise.
isBasedOnCampaign(): BooleanReturns true if the price adjustment was generated by the B2C Commerce promotions engine when applying a promotion assigned to a Campaign or an AB-test.
Returns:
- true if the price adjustment was generated by the B2C Commerce promotions engine, false otherwise.
Deprecated:
The method has been deprecated since the name implies that there is a related Campaign, which may not
be true. Use !isCustom() instead.
- isBasedOnCoupon(): Boolean
Identifies if the promotion line item results from a coupon.
Returns:
- true if the promotion line item results from a coupon, false otherwise.
- isCustom(): Boolean
Returns true if this PriceAdjustment was created by custom script code.
Returns:
- true if this PriceAdjustment was created by custom script code, or false if it was created by B2C Commerce promotions engine.
- isManual(): Boolean
Returns true if this PriceAdjustment was added manually by a user.
A manual PriceAdjustment is one which has been added as a result of a user interaction e.g. by a user editing an order.
A non-manual PriceAdjustment is one which has been added for a different reason, e.g. by custom logic which automatically adjusts the price of particular products when certain conditions are met.
Returns:
- true if this PriceAdjustment was added manually by a user, otherwise - false
- setManual(aFlag: Boolean): void
Marks the current PriceAdjustment as manual/non-manual.
Note that only custom PriceAdjustment can be marked as manual/non-manual.
A manual PriceAdjustment is one which has been added as a result of a user interaction e.g. by a user editing an order.
A non-manual PriceAdjustment is one which has been added for a different reason, e.g. by custom logic which automatically adjusts the price of particular products when certain conditions are met.
Parameters:
- aFlag - the manual flag to set
Throws:
- IllegalArgumentException - if the adjustment is not custom
- setReasonCode(reasonCode: String): void
Set the reason code, using the internal non-localizable value. Standard values are 'PRICE_MATCH', 'BACKORDER' and 'EVEN_EXCHANGE', but the available list is editable system meta-data.
Parameters:
- reasonCode - reason code