mirror of
https://github.com/frappe/books.git
synced 2024-11-10 15:50:56 +00:00
45 lines
908 B
JSON
45 lines
908 B
JSON
|
{
|
||
|
"name": "SalesInvoiceSettings",
|
||
|
"label": "SalesInvoice Settings",
|
||
|
"doctype": "DocType",
|
||
|
"isSingle": true,
|
||
|
"isChild": false,
|
||
|
"keywordFields": [],
|
||
|
"fields": [
|
||
|
{
|
||
|
"fieldname": "template",
|
||
|
"label": "Template",
|
||
|
"placeholder": "Template",
|
||
|
"fieldtype": "Select",
|
||
|
"options": [
|
||
|
"Basic I",
|
||
|
"Basic II",
|
||
|
"Modern"
|
||
|
],
|
||
|
"required": true,
|
||
|
"default": "Basic I"
|
||
|
},
|
||
|
{
|
||
|
"fieldname": "font",
|
||
|
"label": "Font",
|
||
|
"placeholder": "Font",
|
||
|
"fieldtype": "Select",
|
||
|
"options": [
|
||
|
"Montserrat",
|
||
|
"Open Sans",
|
||
|
"Oxygen",
|
||
|
"Merriweather"
|
||
|
],
|
||
|
"required": true,
|
||
|
"default": "Montserrat"
|
||
|
},
|
||
|
{
|
||
|
"fieldname": "themeColor",
|
||
|
"label": "Theme Color",
|
||
|
"fieldtype": "Data",
|
||
|
"required": true,
|
||
|
"default": "#000000",
|
||
|
"hidden": true
|
||
|
}
|
||
|
]
|
||
|
}
|