Uses of Class
de.hybris.order.calculation.domain.OrderCharge
-
-
Uses of OrderCharge in de.hybris.order.calculation.domain
Methods in de.hybris.order.calculation.domain that return types with arguments of type OrderCharge Modifier and Type Method Description java.util.List<OrderCharge>
Order. getCharges()
Returns all charges assigned to this order.java.util.Map<OrderCharge,Money>
Order. getTotalCharges()
Calculates totals of all charges assigned to this order separately.Methods in de.hybris.order.calculation.domain with parameters of type OrderCharge Modifier and Type Method Description void
Order. addCharge(int index, OrderCharge aoc)
Assigns a single charge to this order at a specific position.void
Order. addCharge(OrderCharge aoc)
Assigns a single charge to this order.void
Order. addCharges(OrderCharge... charges)
Assigns multiple charges to this order.protected Money
Order. calculateOrderCharge(Money currentValue, OrderCharge addCharge)
void
Order. removeCharge(OrderCharge aoc)
Removes a charge from this order.Method parameters in de.hybris.order.calculation.domain with type arguments of type OrderCharge Modifier and Type Method Description void
Order. addCharges(java.util.List<OrderCharge> charges)
Assigns multiple charges to this order.protected Money
Order. getFixedTaxedAdditionalCharges(java.util.Map<OrderCharge,Money> aocValues)
-
Uses of OrderCharge in de.hybris.platform.ruleengineservices.calculation.impl
Methods in de.hybris.platform.ruleengineservices.calculation.impl that return OrderCharge Modifier and Type Method Description protected OrderCharge
DefaultRuleEngineCalculationService. createShippingCharge(Order cart, boolean absolute, java.math.BigDecimal value)
creates anOrderCharge
ofAbstractCharge.ChargeType.SHIPPING
for the given values and adds it to the given cart. -
Uses of OrderCharge in de.hybris.platform.ruleengineservices.converters
Methods in de.hybris.platform.ruleengineservices.converters that return OrderCharge Modifier and Type Method Description protected OrderCharge
AbstractOrderRaoToOrderConverter. convertToPaymentOrderCharge(AbstractOrderRAO cartRao)
creates the OrderCharge of type PAYMENT based on the given cart.protected OrderCharge
AbstractOrderRaoToOrderConverter. convertToShippingOrderCharge(AbstractOrderRAO cartRao)
creates the OrderCharge of type SHIPPING based on the given cart. -
Uses of OrderCharge in de.hybris.platform.ruleengineservices.util
Methods in de.hybris.platform.ruleengineservices.util that return OrderCharge Modifier and Type Method Description OrderCharge
OrderUtils. createShippingCharge(Currency currency, boolean absolute, java.math.BigDecimal value)
Creates anOrderCharge
ofAbstractCharge.ChargeType.SHIPPING
for the given values.
-