2
0
mirror of https://github.com/frappe/books.git synced 2024-09-20 19:29:02 +00:00
books/schemas/app/SalesInvoiceSettings.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

65 lines
1.3 KiB
JSON
Raw Normal View History

2022-03-23 07:31:15 +00:00
{
"name": "SalesInvoiceSettings",
2022-03-23 08:37:00 +00:00
"label": "Sales Invoice Settings",
2022-03-23 07:31:15 +00:00
"isSingle": true,
"isChild": false,
"fields": [
{
"fieldname": "template",
"label": "Template",
"placeholder": "Template",
"fieldtype": "Select",
"options": [
2022-03-23 08:37:00 +00:00
{
"value": "Basic I",
"label": "Basic I"
},
{
"value": "Basic II",
"label": "Basic II"
},
{
"value": "Modern",
"label": "Modern"
}
2022-03-23 07:31:15 +00:00
],
"required": true,
"default": "Basic I"
},
{
"fieldname": "font",
"label": "Font",
"placeholder": "Font",
"fieldtype": "Select",
"options": [
2022-03-23 08:37:00 +00:00
{
"value": "Montserrat",
"label": "Montserrat"
},
{
"value": "Open Sans",
"label": "Open Sans"
},
{
"value": "Oxygen",
"label": "Oxygen"
},
{
"value": "Merriweather",
"label": "Merriweather"
}
2022-03-23 07:31:15 +00:00
],
"required": true,
"default": "Montserrat"
},
{
"fieldname": "themeColor",
"label": "Theme Color",
"fieldtype": "Data",
"required": true,
"default": "#000000",
"hidden": true
}
]
2022-03-23 08:37:00 +00:00
}