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

25 lines
477 B
JSON
Raw Normal View History

{
"name": "Location",
"label": "Location",
"isSingle": false,
"isChild": false,
"naming": "manual",
"fields": [
{
"fieldname": "name",
"label": "Location Name",
"fieldtype": "Data",
"required": true
},
{
2022-11-21 07:15:57 +00:00
"fieldname": "address",
"label": "Address",
"fieldtype": "Link",
2022-11-21 07:15:57 +00:00
"target": "Address",
"placeholder": "Click to create",
"inline": true
}
],
2022-11-21 07:15:57 +00:00
"quickEditFields": ["item", "address"]
}