Invoice Structure
AllowanceCharge

cac:AllowanceCharge

The conditions and amounts related to an allowance or charge. An "allowance" typically denotes a discount, while a "charge" implies an additional fee.

About

  • Occurrence: [0..1]
  • Namespace: urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-2

Child elements

Data FieldOccurrenceDefinition
cbc:ChargeIndicator[1..1]An indicator that this AllowanceCharge describes a charge (true) or a discount (false).
cbc:AllowanceChargeReason[0..*]The reason for this allowance or charge.
cbc:Amount[1..1]The monetary amount of this allowance or charge to be applied.

Example

<cac:AllowanceCharge>
    <cbc:ChargeIndicator>true</cbc:ChargeIndicator>
    <cbc:AllowanceChargeReason>Packing cost</cbc:AllowanceChargeReason>
    <cbc:Amount currencyID="KHR">10000</cbc:Amount>
</cac:AllowanceCharge>
<cac:AllowanceCharge>
    <cbc:ChargeIndicator>false</cbc:ChargeIndicator>
    <cbc:AllowanceChargeReason>Promotion discount</cbc:AllowanceChargeReason>
    <cbc:Amount currencyID="KHR">20000</cbc:Amount>
</cac:AllowanceCharge>