Legal Monetary Totals

Legal monetary totals are those that are submitted to the Tax Authority.

Use the LegalMonetaryTotal element to model payments that are submitted as the legal record to the Tax Authority. These can be used in conjunction with the following:

These elements can be used in conjunction with the ones listed in this topic to specify the amounts that are used.

These elements are also checked to see if they meet the requirements for that country. For example, in Germany, the following logic is used:

Monetary Total Payable Amount = Legal Monetary Total Tax Inclusive Amount - Legal Monetary Total Prepaid Amount + Legal Monetary Total Payable Rounding Amount - sum of Prepaid Payment Paid Amount

Restrictions

  • You need to ensure that the totals here are correct.
  • Only the amounts specified in the LegalMonetaryTotal element are submitted to Tax Authorities. If there is a discrepancy between the amounts in the LegalMonetaryTotal element and the others like AllowanceCharge, the totals in the LegalMonetaryTotal element are used.

Elements

ElementDescription
LegalMonetaryTotal/LineExtensionAmount [@currencyID=]Sum of all line net amounts in the Invoice.
LegalMonetaryTotal/TaxExclusiveAmount [@currencyID=]The total amount of the Invoice without VAT.
LegalMonetaryTotal/TaxInclusiveAmount [@currencyID=]The total amount of the Invoice with VAT.
LegalMonetaryTotal/AllowanceTotalAmount [@currencyID=]Sum of all allowances on document level in the Invoice. See Allowances.
LegalMonetaryTotal/ChargeTotalAmount [@currencyID=]Sum of all allowances on document level in the Invoice. See Charges.
LegalMonetaryTotal/PayableRoundingAmount [@currencyID=]The amount to be added to the invoice total to round the amount to be paid. Must be rounded to a maximum of 2 decimals.
LegalMonetaryTotal/PayableAmount [@currencyID=]The outstanding amount that is requested to be paid.

Example

<Invoice>
    <!-- code omitted for clarity -->
    <cac:LegalMonetaryTotal>
        <cbc:LineExtensionAmount currencyID="EUR">1300.00</cbc:LineExtensionAmount>
        <cbc:TaxExclusiveAmount currencyID="EUR">1325.00</cbc:TaxExclusiveAmount>
        <cbc:TaxInclusiveAmount currencyID="EUR">1656.25</cbc:TaxInclusiveAmount>
        <cbc:AllowanceTotalAmount currencyID="EUR">25.00</cbc:AllowanceTotalAmount>
        <cbc:ChargeTotalAmount currencyID="EUR">50.00</cbc:ChargeTotalAmount>
        <cbc:PrepaidAmount currencyID="EUR">1000.00</cbc:PrepaidAmount>
        <cbc:PayableRoundingAmount currencyID="EUR">0.02</cbc:PayableRoundingAmount>
        <cbc:PayableAmount currencyID="EUR">656.27</cbc:PayableAmount>
    </cac:LegalMonetaryTotal>
    <!-- code omitted for clarity -->
</Invoice>