Invoice Notes

You can add a textual reference or note to your Documents.

Use the InvoiceNote element to model this information.

You can specify it on the Document or Line level.

Elements

Document Level

ElementDescription
/Invoice/InvoiceNoteSpecify the information that you want to note.

Line Level

ElementDescription
/Invoice/InvoiceLine/InvoiceNoteSpecify the information that you want to note.

Examples

Document Level

<Invoice>
    <!-- code omitted for clarity -->
    <cbc:InvoiceNote>Please note our new address.</cbc:InvoiceNote>
    <!-- code omitted for clarity -->
</Invoice>

Line Level

<Invoice>
    <!-- code omitted for clarity -->
    <cac:InvoiceLine>
        <!-- code omitted for clarity -->
        <cbc:Note>New article number 12345</cbc:Note>
        <!-- code omitted for clarity -->
    </cac:InvoiceLine>
</Invoice>