mirror of
https://github.com/frappe/books.git
synced 2024-11-10 15:50:56 +00:00
52 lines
1.0 KiB
JSON
52 lines
1.0 KiB
JSON
{
|
|
"name": "SerialNumber",
|
|
"label": "Serial Number",
|
|
"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": "Select",
|
|
"default": "Inactive",
|
|
"readOnly": true,
|
|
"options": [
|
|
{
|
|
"value": "Inactive",
|
|
"label": "Inactive"
|
|
},
|
|
{
|
|
"value": "Active",
|
|
"label": "Active"
|
|
},
|
|
{
|
|
"value": "Delivered",
|
|
"label": "Delivered"
|
|
}
|
|
]
|
|
}
|
|
],
|
|
"quickEditFields": ["item", "description"],
|
|
"keywordFields": ["name"]
|
|
}
|