2
0
mirror of https://github.com/frappe/books.git synced 2025-01-23 15:18:24 +00:00
books/schemas/app/Batch.json

28 lines
545 B
JSON
Raw Permalink Normal View History

{
2023-02-28 11:31:04 +05:30
"name": "Batch",
"label": "Batch",
2023-02-17 10:23:24 +05:30
"naming": "manual",
"fields": [
{
"fieldname": "name",
"fieldtype": "Data",
2023-02-28 11:31:04 +05:30
"label": "Batch",
2023-02-17 10:23:24 +05:30
"required": true
},
{
"fieldname": "expiryDate",
"fieldtype": "Date",
"label": "Expiry Date",
"required": false
},
{
"fieldname": "manufactureDate",
"fieldtype": "Date",
"label": "Manufacture Date",
"required": false
}
],
"quickEditFields": ["expiryDate", "manufactureDate"],
"keywordFields": ["name"]
}