# BR-13 Invoice total amount without VAT is required

An invoice shall have the Invoice total amount without VAT (BT-109), the net payable amount before VAT is added.

## Problem Description

An invoice shall have the Invoice total amount without VAT (BT-109), the net payable amount before VAT is added.

> **ERROR**: XRechnung 3.0

## Context and Significance

This is a core EN16931 rule; BT-109 is the VAT base of the document and links line totals to the VAT breakdown, so it is mandatory.

## Solution

Add cac:LegalMonetaryTotal/cbc:TaxExclusiveAmount equal to BT-106 minus document allowances plus document charges.

- validate
- convert

## Valid Examples

- BT-109 = 1000.00 — net total before VAT

## Invalid Examples

- cac:LegalMonetaryTotal has no cbc:TaxExclusiveAmount element

## Code Examples

### Valid XML
```
<cac:LegalMonetaryTotal>
  <cbc:LineExtensionAmount currencyID="EUR">1000.00</cbc:LineExtensionAmount>
  <cbc:TaxExclusiveAmount currencyID="EUR">1000.00</cbc:TaxExclusiveAmount>
  <cbc:TaxInclusiveAmount currencyID="EUR">1190.00</cbc:TaxInclusiveAmount>
</cac:LegalMonetaryTotal>
```

### Invalid XML
```
<cac:LegalMonetaryTotal>
  <cbc:LineExtensionAmount currencyID="EUR">1000.00</cbc:LineExtensionAmount>
  <cbc:TaxInclusiveAmount currencyID="EUR">1190.00</cbc:TaxInclusiveAmount>
</cac:LegalMonetaryTotal>
```

## Affected Fields

- [BT-109 Invoice total amount without VAT](/resources/xrechnung/bt-109-invoice-total-amount-without-vat)

## Related Rules

- [BR-12](/resources/kosit-validator-errors/br-12-sum-of-line-net-amount-required)
- [BR-14](/resources/kosit-validator-errors/br-14-invoice-total-with-vat-required)
- [BR-CO-13](/resources/kosit-validator-errors/br-co-13-invoice-total-without-vat-must-match-totals-chain)

## Validation Tools

- [Official KoSIT Validator](https://erechnungsvalidator.service-bw.de/): Validate your XRechnung files against all BR-DE rules.
- [Convert PDF to XRechnung](/pdf-to-xrechnung): Automatic validation error fixes when converting.

## Related Resources

- [Official Specification](https://xeinkauf.de/xrechnung/)
- [Test Suite](https://github.com/itplr-kosit/xrechnung-testsuite)
- [Complete Error List](/resources/kosit-validator-errors): Overview of all German XRechnung validation rules.
