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:

automise generation of a bill without a delivery sheet
plugin.tt_products.bill {
    generation = auto
}

plugin.tt_products.delivery {
    generation =
}
Copied!

type

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

handleLib
Type
string / arry
Required

true

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

Example:

automise generation of a bill without a delivery sheet
bill.handleLib =  PhpWord
Copied!

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:

automatice generation of a bill by PhpWord by a master branch
bill.handleLib = PhpWord
bill.handleLib {
    path = PHPWord-master
    rendererLibrary {
       path = dompdf-0.6.1
    }
}
Copied!