mirror of
https://github.com/frappe/books.git
synced 2024-11-10 07:40:55 +00:00
37 lines
751 B
JSON
37 lines
751 B
JSON
{
|
|
"name": "SerialNo",
|
|
"label": "Serial No",
|
|
"naming": "manual",
|
|
"fields": [
|
|
{
|
|
"fieldname": "name",
|
|
"fieldtype": "Data",
|
|
"label": "Serial Number",
|
|
"create": true,
|
|
"required": true
|
|
},
|
|
{
|
|
"fieldname": "item",
|
|
"fieldtype": "Link",
|
|
"label": "Item",
|
|
"target": "Item",
|
|
"create": true,
|
|
"required": true
|
|
},
|
|
{
|
|
"fieldname": "description",
|
|
"label": "Description",
|
|
"placeholder": "Serial Number Description",
|
|
"fieldtype": "Text"
|
|
},
|
|
{
|
|
"fieldname": "status",
|
|
"label": "Status",
|
|
"fieldtype": "Data",
|
|
"default": "Inactive"
|
|
}
|
|
],
|
|
"quickEditFields": ["item", "description", "party"],
|
|
"keywordFields": ["name"]
|
|
}
|