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/data/bill.

generation

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: .. code-block:: typoscript :caption: automatice generation of a bill

plugin.tt_products.bill {
generation = auto

}

plugin.tt_products.delivery {
generation =

}

type

type
Type
string
Required

true

Type of bill or delivery html: HTML format pdf: PDF format (extension 'fpdf' must have been installed.)

handleLib

handleLib
Type
string / arry
Required

true

Name of the PHP library to handle the PDF generation. Currently you can set only 'PhpWord' here.

Example: bill.handleLib = PhpWord

array values: path ... file path to the library, relative to the TYPO3 directory rendererLibrary.path ... file path to the helper library to generate formats which the main library cannot handle

Example: .. code-block:: typoscript :caption: automatice generation of a bill by PhpWord

bill.handleLib = PhpWord bill.handleLib { path = PHPWord-master rendererLibrary { path = dompdf-0.6.1 } }