2
0
mirror of https://github.com/frappe/books.git synced 2024-09-20 11:29:00 +00:00
books/schemas/app/inventory/Location.json
18alantom 48797dff62 fix: support option field value or label
- remove address placeholder
- allow more types of entries to be imported
2023-02-15 19:19:17 +05:30

24 lines
437 B
JSON

{
"name": "Location",
"label": "Location",
"isSingle": false,
"isChild": false,
"naming": "manual",
"fields": [
{
"fieldname": "name",
"label": "Location Name",
"fieldtype": "Data",
"required": true
},
{
"fieldname": "address",
"label": "Address",
"fieldtype": "Link",
"target": "Address",
"inline": true
}
],
"quickEditFields": ["item", "address"]
}