Fehlende Dateien und Ordner hinzugefügt
This commit is contained in:
111
target/classes/examples/lieferschein_pdf_table_fields.json
Normal file
111
target/classes/examples/lieferschein_pdf_table_fields.json
Normal file
@@ -0,0 +1,111 @@
|
||||
{
|
||||
"coordinateUnit": "mm",
|
||||
"coordinateOrigin": "TOP_LEFT",
|
||||
"pdfFields": [
|
||||
{
|
||||
"name": "deliveryNumber",
|
||||
"type": "TEXT",
|
||||
"value": "{{deliveryNumber}}",
|
||||
"page": 1,
|
||||
"x": 38,
|
||||
"y": 35,
|
||||
"width": 70,
|
||||
"height": 6,
|
||||
"fontSize": 10
|
||||
},
|
||||
{
|
||||
"name": "customerName",
|
||||
"type": "TEXT",
|
||||
"value": "{{customer.name}}",
|
||||
"page": 1,
|
||||
"x": 38,
|
||||
"y": 43,
|
||||
"width": 90,
|
||||
"height": 6,
|
||||
"fontSize": 10
|
||||
},
|
||||
{
|
||||
"name": "deliveryDate",
|
||||
"type": "TEXT",
|
||||
"value": "{{deliveryDate}}",
|
||||
"page": 1,
|
||||
"x": 38,
|
||||
"y": 51,
|
||||
"width": 70,
|
||||
"height": 6,
|
||||
"fontSize": 10
|
||||
},
|
||||
{
|
||||
"name": "deliveryQr",
|
||||
"type": "QR_CODE",
|
||||
"value": "{{deliveryNumber}}",
|
||||
"page": 1,
|
||||
"x": 162,
|
||||
"y": 25,
|
||||
"width": 28,
|
||||
"height": 28
|
||||
},
|
||||
{
|
||||
"name": "positionsTable",
|
||||
"type": "TABLE",
|
||||
"source": "items",
|
||||
"page": 1,
|
||||
"x": 18,
|
||||
"y": 78,
|
||||
"width": 174,
|
||||
"height": 125,
|
||||
"rowHeight": 13,
|
||||
"headerHeight": 8,
|
||||
"maxRows": 9,
|
||||
"overflow": "CUT",
|
||||
"fontSize": 7,
|
||||
"border": true,
|
||||
"drawHeader": true,
|
||||
"repeatHeader": true,
|
||||
"padding": 1.5,
|
||||
"headerBackground": "#EEEEEE",
|
||||
"headerColor": "#000000",
|
||||
"gridColor": "#000000",
|
||||
"columns": [
|
||||
{
|
||||
"title": "Pos.",
|
||||
"field": "pos",
|
||||
"width": 12,
|
||||
"align": "CENTER"
|
||||
},
|
||||
{
|
||||
"title": "Artikel",
|
||||
"field": "partNumber",
|
||||
"width": 29,
|
||||
"align": "LEFT"
|
||||
},
|
||||
{
|
||||
"title": "Bezeichnung",
|
||||
"field": "description",
|
||||
"width": 47,
|
||||
"align": "LEFT",
|
||||
"multiline": true
|
||||
},
|
||||
{
|
||||
"title": "Menge",
|
||||
"field": "quantity",
|
||||
"width": 16,
|
||||
"align": "RIGHT"
|
||||
},
|
||||
{
|
||||
"title": "SNR",
|
||||
"field": "serialNumber",
|
||||
"width": 31,
|
||||
"align": "LEFT"
|
||||
},
|
||||
{
|
||||
"title": "Barcode",
|
||||
"type": "BARCODE",
|
||||
"barcodeType": "CODE_128",
|
||||
"field": "serialNumber",
|
||||
"width": 39
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user