2
0
mirror of https://github.com/frappe/books.git synced 2024-09-20 03:29:00 +00:00
books/schemas/app/PriceListItem.json
18alantom 89e45c604c fix: price list table visiblity
- make price list searchable
- remove row edit from price list
2023-06-07 11:58:15 +05:30

32 lines
608 B
JSON

{
"name": "PriceListItem",
"label": "Price List Item",
"isChild": true,
"fields": [
{
"fieldname": "item",
"label": "Item",
"fieldtype": "Link",
"target": "Item",
"required": true,
"create": true,
"section": "Item"
},
{
"fieldname": "unit",
"label": "Unit Type",
"fieldtype": "Link",
"target": "UOM",
"section": "Item"
},
{
"fieldname": "rate",
"label": "Rate",
"fieldtype": "Currency",
"required": true,
"section": "Item"
}
],
"tableFields": ["item", "unit", "rate"]
}