2
0
mirror of https://github.com/frappe/books.git synced 2024-09-20 11:29:00 +00:00
books/schemas/app/Batch.json

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

28 lines
545 B
JSON
Raw Normal View History

{
2023-02-28 06:01:04 +00:00
"name": "Batch",
"label": "Batch",
2023-02-17 04:53:24 +00:00
"naming": "manual",
"fields": [
{
"fieldname": "name",
"fieldtype": "Data",
2023-02-28 06:01:04 +00:00
"label": "Batch",
2023-02-17 04:53:24 +00:00
"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"]
}