invoice
is used for creating e-invoices from either spreadsheet data or JSON.The General Mode of Operation is to first map spreadsheet data to the internal invoice format in JSON and then generate an e-invoice XML or a hybrid PDF/XML file from that JSON. But it is also possible to bypass the first mapping step and generate the invoice directly from JSON data.
What you need exactly, depends on the desired output format and your exact requirements. Please see the overview of required arguments in the section FAQ for details.
You need one or more of the following:
contrib/templates/default-invoice.ods
.contrib/mappings/default-invoice.yaml
.E-Invoice-EU uses LibreOffice in headless mode to create PDFs from spreadsheet files. If you do not use this feature, there is no need for LibreOffice. Alternatively, you can always provide a PDF file from other sources instead of generating it from spreadsheet data.
The command invoice
supports the following options:
Name | Argument | Description |
---|---|---|
-f, --format | string |
a supported format |
-o, --output | string |
write output to specified file instead of standard output |
-i, --invoice | string |
JSON file with invoice data, mandatory for invoice generation from JSON |
-m, --mapping | string |
YAML or JSON file with mapping, mandatory for invoice generation from spreadsheet data |
-s, --spreadsheet | string |
invoice spreadsheet file, mandataory for invoice generation from spreadsheet data |
-l, --lang | string |
a language identifier like fr-fr |
--embedPDF | use if a PDF version should be embedded into XML output | |
-p, --pdf | string |
a PDF version of the invoice |
--pdf-id | string |
ID of the embedded PDF, defaults to the document number; ignored for Factur-X/ZUGFeRD |
--pdf-description | string |
optional description of the embedded PDF; ignored for Factur-X/ZUGFeRD |
-a, --attachment | string |
optional name of an additional attachment |
--attachment-id | string |
In its most simple form, you can create an e-invoice from spreadsheet data like this:
e-invoice-eu --format=UBL \
--spreadsheet=contrib/templates/default-invoice.ods \
--mapping=contrib/mappings/default-invoice.yaml
This will create an e-invoice in the format UBL.
The invoice data (option data
) is read from the spreadsheet file
contrib/templates/default-invoice.ods
. That spreadsheet data is then
mapped (parameter mapping
) with the mapping definition
contrib/mappings/default-invoice.yaml
.
It is possible to attach files with additional information. This works both for pure XML formats and for hybrid Factur-X/ZUGFeRD e-invoices. The example creates a Factur-X Extended invoice with three attachments:
e-invoice-eu --format=UBL
--lang=de \
--spreadsheet=contrib/templates/default-invoice.ods \
--mapping=@contrib/mappings/default-invoice.yaml \
--embedPDF \
--pdf=@invoice.pdf \
--pdf-id=1234567890 \
--pdf-description="Invoice as PDF." \
--attachment=time-sheet.ods \
--attachment-mimetype=application/vnd.oasis.opendocument.spreadsheet \
--attachment-d=abc-123-xyz \
--attachment-description="Detailed description of hours spent." \
--attachment=payment-terms.pdf \
--attachment-description="Our payment terms."
Let us break that down into the individual options used:
--lang
: This is used to determine the language for some canned texts.--spreadsheet
: The spreadsheet with the invoice data.--mapping
: The mapping definition for the invoice data.--embedPDF
: Embed a PDF version of the e-invoice in the XML; ignored for Factur-X/ZUGFeRD.--pdf
: The PDF version of the e-invoice. If embedding a PDF was requested but the parameter pdf
is missing, the PDF is generated from the spreadsheet file (parameter data
).--pdf-id
: The attachment id of the embedded PDF, defaults to the filename.pdf-description
: An optional description of that attachment.--attachment
: Optionally, an additional file to be embedded.--attachment-mimetype
: Optionally, the MIME type of the file to be embedded if it not guessed correctly.--attachment-id
: Optionally, the id of the attachment, defaults to the filename.--attachment-description
: An optional description of the attachment.The last group of arguments --attachment
is passed twice for two additional
attachments. Because the second group omits the option
--attachment-description
that attachment does not have a description.
If the PDF is not provided with the option --pdf
, it is generated from
the spreadsheet file (optoin --spreadsheet
). In that case you must
ensure that the LibreOffice executable is found. The program tries to guess
the correct location. If that fails, it must be either in your
$PATH
or you have configured its
location.
Each attachment to the e-invoice may have an optional id and an optional
description. However, the program only "sees" 3 lists of the options
--attachment
, --attachment-mimetype
, --attachment-id
, and
attachment-description
, even if you group them per attachment.
If you use the option --attachment
four times, --attachment-id
twice,
and attachment-description
three times, in whatever order, the following
attachments are embedded:
Attachment | Filename | ID | Description |
---|---|---|---|
Attachment #1 | attachment #1 |
attachmentID #1 |
attachmentDescription #1 |
Attachment #2 | attachment #2 |
attachmentID #2 |
attachmentDescription #2 |
Attachment #3 | attachment #3 |
- | attachmentDescription #3 |
Attachment #4 | attachment #4 |
- | - |
You will probably want to avoid that hassle by specifying an id and/or description either for all attachments or for none.
There is nothing special about creating Factur-X/ZUGFeRD, only that the output
is binary and you want to redirect it to a file or use the option --output
.
e-invoice-eu --format=Factur-X-Extended \
--spreadsheet=contrib/templates/default-invoice.ods \
--mapping=@contrib/mappings/default-invoice.yaml \
--output e-invoice.pdf
This would create a Factur-X/ZUGFeRD e-invoice with the profile Extended.
You must also keep in mind that the hybrid Factur-X/ZUGFeRD format requires
a PDF version of the input. You must either specify it yourself with the
option --pdf
or LibreOffice
must be available so that it can be generated
from the spreadsheet file specified as an argument to --spreadsheet
.
Depending on what shell you are using, redirecting standard output messes up the generated PDF. More precisely, it converts all newline characters (`LF`) to `CRLF` which corrupts the binary file. It also encodes it as UTF-16-LE, a 2-byte character encoding, which is again wrong for binary files. You can avoid that by using the option `-o` resp. `--output`. See https://github.com/gflohr/e-invoice-eu/issues/96#issuecomment-2708171823 for more information!
You can bypass the mapping step and generate
the invoice directly from JSON. All you have to do is to omit the parameter
mapping
.
Example:
e-invoice-eu --forma=UBL --invoice=contrib/data/default-invoice.json
In this case, a Peppol UBL invoice is created.
You can create all other options and arguments that are allowed for the
generation of invoices from spreadsheet data with the exception of --mapping
which makes no sense.