Bill and Delivery Configuration
Setup only.
These are some settings if you want to use the feature of the creation and usage of bill and delivery sheets.
They are generated in the folder fileadmin/.
generation
-
- Type
- string
- Required
true
Defines the behaviour for the generation of the bill/delivery sheet.
- auto: Generation will be done when the order is finalized.
Example:
automise generation of a bill without a delivery sheetplugin.tt_products.bill { generation = auto } plugin.tt_products.delivery { generation = }Copied!
type
-
- Type
- string
- Required
true
Type of bill or delivery :typoscript:`html`: HTML format
pdf: PDF format (extension :composer:'codingms/fluid-fpdf' must have been installed.)
handleLib
-
- Type
- string / arry
- Required
true
Name of the PHP library to handle the PDF generation. Currently you can set only
Phphere.Word Example:
automise generation of a bill without a delivery sheetbill.handleLib = PhpWordCopied!array values:
path... file path to the library, relative to the TYPO3 directoryrenderer... file path to the helper library to generate formats which the main library cannot handleLibrary. path
Example:
automatice generation of a bill by PhpWord by a master branchbill.handleLib = PhpWord bill.handleLib { path = PHPWord-master rendererLibrary { path = dompdf-0.6.1 } }Copied!