mirror of
https://github.com/frappe/books.git
synced 2024-11-10 07:40:55 +00:00
23 lines
422 B
JSON
23 lines
422 B
JSON
{
|
|
"name": "CustomForm",
|
|
"label": "Custom Form",
|
|
"naming": "manual",
|
|
"fields": [
|
|
{
|
|
"fieldname": "name",
|
|
"fieldtype": "AutoComplete",
|
|
"label": "Form Type",
|
|
"options": [],
|
|
"required": true
|
|
},
|
|
{
|
|
"fieldname": "customFields",
|
|
"label": "Custom Fields",
|
|
"fieldtype": "Table",
|
|
"target": "CustomField",
|
|
"required": true,
|
|
"edit": true
|
|
}
|
|
]
|
|
}
|