mirror of
https://github.com/pretix/pretix.git
synced 2026-05-07 15:34:02 +00:00
PDF editor: New text element implementation (#4246)
* draft * almost working * Widgth adjustment * Fix crash on empty text * Change default layouts * Fix editor bugs * Update src/pretix/control/templates/pretixcontrol/pdf/index.html Co-authored-by: Richard Schreiber <schreiber@rami.io> * Show deprecated text on old text * lockScalingFlip * Regroup editor controls * Update src/pretix/static/pretixcontrol/js/ui/main.js Co-authored-by: Richard Schreiber <schreiber@rami.io> * Update src/pretix/static/pretixcontrol/js/ui/main.js Co-authored-by: Richard Schreiber <schreiber@rami.io> * Update src/pretix/static/pretixcontrol/js/ui/main.js Co-authored-by: Richard Schreiber <schreiber@rami.io> * Update src/pretix/static/pretixcontrol/js/ui/editor.js Co-authored-by: Richard Schreiber <schreiber@rami.io> * Increase default height even further * Add a small version warning * Update src/pretix/control/templates/pretixcontrol/pdf/index.html Co-authored-by: Richard Schreiber <schreiber@rami.io> * Update src/pretix/control/templates/pretixcontrol/pdf/index.html Co-authored-by: Richard Schreiber <schreiber@rami.io> --------- Co-authored-by: Richard Schreiber <schreiber@rami.io>
This commit is contained in:
@@ -27,191 +27,279 @@ from django.utils.translation import gettext_lazy as _
|
||||
|
||||
from pretix.base.models import LoggedModel
|
||||
|
||||
DEFAULT_TICKET_LAYOUT = '''[{
|
||||
"type":"textarea",
|
||||
"left":"17.50",
|
||||
"bottom":"274.60",
|
||||
"fontsize":"16.0",
|
||||
"color":[
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1
|
||||
],
|
||||
"fontfamily":"Open Sans",
|
||||
"bold":false,
|
||||
"italic":false,
|
||||
"width":"175.00",
|
||||
"content":"event_name",
|
||||
"text":"Sample event name",
|
||||
"align":"left"
|
||||
},
|
||||
{
|
||||
"type":"textarea",
|
||||
"left":"17.50",
|
||||
"bottom":"262.90",
|
||||
"fontsize":"13.0",
|
||||
"color":[
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1
|
||||
],
|
||||
"fontfamily":"Open Sans",
|
||||
"bold":false,
|
||||
"italic":false,
|
||||
"width":"110.00",
|
||||
"content":"itemvar",
|
||||
"text":"Sample product – sample variation",
|
||||
"align":"left"
|
||||
},
|
||||
{
|
||||
"type":"textarea",
|
||||
"left":"17.50",
|
||||
"bottom":"252.50",
|
||||
"fontsize":"13.0",
|
||||
"color":[
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1
|
||||
],
|
||||
"fontfamily":"Open Sans",
|
||||
"bold":false,
|
||||
"italic":false,
|
||||
"width":"110.00",
|
||||
"content":"attendee_name",
|
||||
"text":"John Doe",
|
||||
"align":"left"
|
||||
},
|
||||
{
|
||||
"type":"textarea",
|
||||
"left":"17.50",
|
||||
"bottom":"242.10",
|
||||
"fontsize":"13.0",
|
||||
"color":[
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1
|
||||
],
|
||||
"fontfamily":"Open Sans",
|
||||
"bold":false,
|
||||
"italic":false,
|
||||
"width":"110.00",
|
||||
"content":"event_begin",
|
||||
"text":"2016-05-31 20:00",
|
||||
"align":"left"
|
||||
},
|
||||
{
|
||||
"type":"textarea",
|
||||
"left":"17.50",
|
||||
"bottom":"231.70",
|
||||
"fontsize":"13.0",
|
||||
"color":[
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1
|
||||
],
|
||||
"fontfamily":"Open Sans",
|
||||
"bold":false,
|
||||
"italic":false,
|
||||
"width":"110.00",
|
||||
"content":"seat",
|
||||
"text":"Ground floor, Row 3, Seat 4",
|
||||
"align":"left"
|
||||
},
|
||||
{
|
||||
"type":"textarea",
|
||||
"left":"17.50",
|
||||
"bottom":"204.80",
|
||||
"fontsize":"13.0",
|
||||
"color":[
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1
|
||||
],
|
||||
"fontfamily":"Open Sans",
|
||||
"bold":false,
|
||||
"italic":false,
|
||||
"width":"110.00",
|
||||
"content":"event_location",
|
||||
"text":"Random City",
|
||||
"align":"left"
|
||||
},
|
||||
{
|
||||
"type":"textarea",
|
||||
"left":"17.50",
|
||||
"bottom":"194.50",
|
||||
"fontsize":"13.0",
|
||||
"color":[
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1
|
||||
],
|
||||
"fontfamily":"Open Sans",
|
||||
"bold":false,
|
||||
"italic":false,
|
||||
"width":"30.00",
|
||||
"content":"order",
|
||||
"text":"A1B2C",
|
||||
"align":"left"
|
||||
},
|
||||
{
|
||||
"type":"textarea",
|
||||
"left":"52.50",
|
||||
"bottom":"194.50",
|
||||
"fontsize":"13.0",
|
||||
"color":[
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1
|
||||
],
|
||||
"fontfamily":"Open Sans",
|
||||
"bold":false,
|
||||
"italic":false,
|
||||
"width":"45.00",
|
||||
"content":"price",
|
||||
"text":"123.45 EUR",
|
||||
"align":"right"
|
||||
},
|
||||
{
|
||||
"type":"textarea",
|
||||
"left":"102.50",
|
||||
"bottom":"194.50",
|
||||
"fontsize":"13.0",
|
||||
"color":[
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1
|
||||
],
|
||||
"fontfamily":"Open Sans",
|
||||
"bold":false,
|
||||
"italic":false,
|
||||
"width":"90.00",
|
||||
"content":"secret",
|
||||
"text":"tdmruoekvkpbv1o2mv8xccvqcikvr58u",
|
||||
"align":"left"
|
||||
},
|
||||
{
|
||||
"type":"barcodearea",
|
||||
"left":"130.40",
|
||||
"bottom":"204.50",
|
||||
"size":"64.00",
|
||||
"content":"secret"
|
||||
},
|
||||
{
|
||||
"type":"poweredby",
|
||||
"left":"88.72",
|
||||
"bottom":"10.00",
|
||||
"size":"20.00",
|
||||
"content":"dark"
|
||||
}]'''
|
||||
DEFAULT_TICKET_LAYOUT = '''[
|
||||
{
|
||||
"type": "barcodearea",
|
||||
"page": 1,
|
||||
"left": "130.40",
|
||||
"bottom": "204.50",
|
||||
"size": "64.00",
|
||||
"content": "secret",
|
||||
"text": "",
|
||||
"text_i18n": {},
|
||||
"nowhitespace": false
|
||||
},
|
||||
{
|
||||
"type": "poweredby",
|
||||
"page": 1,
|
||||
"left": "88.72",
|
||||
"bottom": "10.00",
|
||||
"size": "20.00",
|
||||
"content": "dark"
|
||||
},
|
||||
{
|
||||
"type": "textcontainer",
|
||||
"page": 1,
|
||||
"locale": "",
|
||||
"left": "16.35",
|
||||
"bottom": "272.09",
|
||||
"fontsize": "14.0",
|
||||
"lineheight": "1",
|
||||
"color": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1
|
||||
],
|
||||
"fontfamily": "Open Sans",
|
||||
"bold": false,
|
||||
"italic": false,
|
||||
"width": "177.07",
|
||||
"height": "11.80",
|
||||
"content": "event_name",
|
||||
"text": "Sample event name",
|
||||
"text_i18n": {},
|
||||
"rotation": 0,
|
||||
"align": "left",
|
||||
"verticalalign": "middle",
|
||||
"autoresize": true,
|
||||
"splitlongwords": true
|
||||
},
|
||||
{
|
||||
"type": "textcontainer",
|
||||
"page": 1,
|
||||
"locale": "",
|
||||
"left": "16.35",
|
||||
"bottom": "261.77",
|
||||
"fontsize": "13.0",
|
||||
"lineheight": "1",
|
||||
"color": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1
|
||||
],
|
||||
"fontfamily": "Open Sans",
|
||||
"bold": false,
|
||||
"italic": false,
|
||||
"width": "113.03",
|
||||
"height": "7.83",
|
||||
"content": "itemvar",
|
||||
"text": "Sample product – sample variation",
|
||||
"text_i18n": {},
|
||||
"rotation": 0,
|
||||
"align": "left",
|
||||
"verticalalign": "middle",
|
||||
"autoresize": true,
|
||||
"splitlongwords": true
|
||||
},
|
||||
{
|
||||
"type": "textcontainer",
|
||||
"page": 1,
|
||||
"locale": "",
|
||||
"left": "16.35",
|
||||
"bottom": "251.30",
|
||||
"fontsize": "13.0",
|
||||
"lineheight": "1",
|
||||
"color": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1
|
||||
],
|
||||
"fontfamily": "Open Sans",
|
||||
"bold": false,
|
||||
"italic": false,
|
||||
"width": "113.03",
|
||||
"height": "7.83",
|
||||
"content": "attendee_name",
|
||||
"text": "Dr John Doe",
|
||||
"text_i18n": {},
|
||||
"rotation": 0,
|
||||
"align": "left",
|
||||
"verticalalign": "middle",
|
||||
"autoresize": true,
|
||||
"splitlongwords": true
|
||||
},
|
||||
{
|
||||
"type": "textcontainer",
|
||||
"page": 1,
|
||||
"locale": "",
|
||||
"left": "16.35",
|
||||
"bottom": "240.30",
|
||||
"fontsize": "13.0",
|
||||
"lineheight": "1",
|
||||
"color": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1
|
||||
],
|
||||
"fontfamily": "Open Sans",
|
||||
"bold": false,
|
||||
"italic": false,
|
||||
"width": "113.03",
|
||||
"height": "7.83",
|
||||
"content": "event_begin",
|
||||
"text": "2017-05-31 20:00",
|
||||
"text_i18n": {},
|
||||
"rotation": 0,
|
||||
"align": "left",
|
||||
"verticalalign": "middle",
|
||||
"autoresize": true,
|
||||
"splitlongwords": true
|
||||
},
|
||||
{
|
||||
"type": "textcontainer",
|
||||
"page": 1,
|
||||
"locale": "",
|
||||
"left": "16.35",
|
||||
"bottom": "231.30",
|
||||
"fontsize": "13.0",
|
||||
"lineheight": "1",
|
||||
"color": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1
|
||||
],
|
||||
"fontfamily": "Open Sans",
|
||||
"bold": false,
|
||||
"italic": false,
|
||||
"width": "113.03",
|
||||
"height": "7.83",
|
||||
"content": "seat",
|
||||
"text": "Ground floor, Row 3, Seat 4",
|
||||
"text_i18n": {},
|
||||
"rotation": 0,
|
||||
"align": "left",
|
||||
"verticalalign": "middle",
|
||||
"autoresize": true,
|
||||
"splitlongwords": true
|
||||
},
|
||||
{
|
||||
"type": "textcontainer",
|
||||
"page": 1,
|
||||
"locale": "",
|
||||
"left": "16.35",
|
||||
"bottom": "203.43",
|
||||
"fontsize": "13.0",
|
||||
"lineheight": "1",
|
||||
"color": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1
|
||||
],
|
||||
"fontfamily": "Open Sans",
|
||||
"bold": false,
|
||||
"italic": false,
|
||||
"width": "113.03",
|
||||
"height": "25.70",
|
||||
"content": "event_location",
|
||||
"text": "Random City",
|
||||
"text_i18n": {},
|
||||
"rotation": 0,
|
||||
"align": "left",
|
||||
"verticalalign": "bottom",
|
||||
"autoresize": true,
|
||||
"splitlongwords": true
|
||||
},
|
||||
{
|
||||
"type": "textcontainer",
|
||||
"page": 1,
|
||||
"locale": "",
|
||||
"left": "101.50",
|
||||
"bottom": "193.33",
|
||||
"fontsize": "13.0",
|
||||
"lineheight": "1",
|
||||
"color": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1
|
||||
],
|
||||
"fontfamily": "Open Sans",
|
||||
"bold": false,
|
||||
"italic": false,
|
||||
"width": "91.93",
|
||||
"height": "7.83",
|
||||
"content": "secret",
|
||||
"text": "tdmruoekvkpbv1o2mv8xccvqcikvr58u",
|
||||
"text_i18n": {},
|
||||
"rotation": 0,
|
||||
"align": "left",
|
||||
"verticalalign": "middle",
|
||||
"autoresize": true,
|
||||
"splitlongwords": true
|
||||
},
|
||||
{
|
||||
"type": "textcontainer",
|
||||
"page": 1,
|
||||
"locale": "",
|
||||
"left": "51.50",
|
||||
"bottom": "193.33",
|
||||
"fontsize": "13.0",
|
||||
"lineheight": "1",
|
||||
"color": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1
|
||||
],
|
||||
"fontfamily": "Open Sans",
|
||||
"bold": false,
|
||||
"italic": false,
|
||||
"width": "47.38",
|
||||
"height": "7.83",
|
||||
"content": "price",
|
||||
"text": "123.45 EUR",
|
||||
"text_i18n": {},
|
||||
"rotation": 0,
|
||||
"align": "right",
|
||||
"verticalalign": "middle",
|
||||
"autoresize": true,
|
||||
"splitlongwords": true
|
||||
},
|
||||
{
|
||||
"type": "textcontainer",
|
||||
"page": 1,
|
||||
"locale": "",
|
||||
"left": "16.50",
|
||||
"bottom": "193.33",
|
||||
"fontsize": "13.0",
|
||||
"lineheight": "1",
|
||||
"color": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1
|
||||
],
|
||||
"fontfamily": "Open Sans",
|
||||
"bold": false,
|
||||
"italic": false,
|
||||
"width": "32.32",
|
||||
"height": "7.83",
|
||||
"content": "order",
|
||||
"text": "A1B2C",
|
||||
"text_i18n": {},
|
||||
"rotation": 0,
|
||||
"align": "left",
|
||||
"verticalalign": "middle",
|
||||
"autoresize": true,
|
||||
"splitlongwords": true
|
||||
}
|
||||
]'''
|
||||
|
||||
|
||||
def bg_name(instance, filename: str) -> str:
|
||||
|
||||
Reference in New Issue
Block a user