mirror of
https://github.com/frappe/books.git
synced 2024-11-08 23:00:56 +00:00
89e45c604c
- make price list searchable - remove row edit from price list
32 lines
608 B
JSON
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"]
|
|
}
|