2
0
mirror of https://github.com/frappe/books.git synced 2024-09-20 19:29:02 +00:00
books/schemas/app/PrintSettings.json
2023-03-13 21:14:10 +05:30

120 lines
2.4 KiB
JSON

{
"name": "PrintSettings",
"label": "Print Settings",
"isSingle": true,
"fields": [
{
"fieldname": "logo",
"label": "Logo",
"fieldtype": "AttachImage",
"section": "Default"
},
{
"fieldname": "companyName",
"label": "Company Name",
"fieldtype": "Data",
"section": "Default"
},
{
"fieldname": "email",
"label": "Email",
"fieldtype": "Data",
"placeholder": "john@doe.com",
"section": "Contacts"
},
{
"fieldname": "phone",
"label": "Phone",
"fieldtype": "Data",
"placeholder": "9888900000",
"section": "Contacts"
},
{
"fieldname": "address",
"label": "Address",
"fieldtype": "Link",
"target": "Address",
"create": true,
"section": "Contacts"
},
{
"fieldname": "color",
"label": "Color",
"placeholder": "Select Color",
"fieldtype": "Color",
"default": "#112B42",
"options": [
{
"label": "Red",
"value": "#f56565"
},
{
"label": "Orange",
"value": "#ed8936"
},
{
"label": "Yellow",
"value": "#ecc94b"
},
{
"label": "Green",
"value": "#48bb78"
},
{
"label": "Teal",
"value": "#38b2ac"
},
{
"label": "Blue",
"value": "#33a1ff"
},
{
"label": "Indigo",
"value": "#667eea"
},
{
"label": "Purple",
"value": "#9f7aea"
},
{
"label": "Pink",
"value": "#ed64a6"
},
{
"label": "Black",
"value": "#112B42"
}
],
"section": "Customizations"
},
{
"fieldname": "font",
"label": "Font",
"placeholder": "Font",
"fieldtype": "Select",
"options": [
{
"value": "Arial",
"label": "Arial"
},
{
"value": "Times New Roman",
"label": "Times New Roman"
},
{
"value": "Courier",
"label": "Courier"
}
],
"default": "Arial",
"section": "Customizations"
},
{
"fieldname": "displayLogo",
"label": "Display Logo in Invoice",
"fieldtype": "Check",
"section": "Customizations"
}
]
}