Gets or sets the total handling charges for this order.
Namespace: Asi.iBO.CommerceAssembly: Asi.iBO (in Asi.iBO.dll) Version: 15.1.3.0
Syntax
| C# |
|---|
protected decimal TotalHandlingAmount { get; } |
| Visual Basic |
|---|
Protected ReadOnly Property TotalHandlingAmount As Decimal Get |
| Visual C++ |
|---|
protected: property Decimal TotalHandlingAmount { Decimal get (); } |
Field Value
A monetary value indicating how much was charged for handling on this order.
Remarks
TotalHandling may be automatically calculated or set manually. The default, and how it is done are
based on two system settings:AutoCalculateHandlingFlag indicates whether or not handling should automatically be calculated on the order.HandlingChargeType tells how the calculation is made.
The order also has a flag for AutoCalculateHandlingFlag. This can only be set to true if the system
setting is set to true. But it can be manually set to false in either case.
In order to manually set TotalHandling you must first set AutoCalculateHandlingFlag to false, otherwise
your value will be wiped out by the automatic calculation at some point.