2
0
mirror of https://github.com/frappe/books.git synced 2024-11-10 07:40:55 +00:00
books/schemas/app/BatchNumber.json

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

30 lines
773 B
JSON
Raw Normal View History

{
"name": "BatchNumber",
"label": "Batch Number",
"naming": "manual",
"fields": [
{
"fieldname": "name",
"fieldtype": "Data",
"create": true,
"label": "Batch Number",
"required": true
},
{
"fieldname": "expiryDate",
"fieldtype": "Date",
"label": "Expiry Date",
"create": true,
"required": false
},
{
"fieldname": "manufactureDate",
"fieldtype": "Date",
"label": "Manufacture Date",
"create": true,
"required": false
}
],
2023-01-18 12:03:51 +00:00
"quickEditFields": ["batchNumber", "expiryDate", "manufactureDate"],
"keywordFields": ["name"]
}