mirror of
https://github.com/frappe/books.git
synced 2024-11-13 00:46:28 +00:00
32 lines
612 B
JSON
32 lines
612 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"
|
||
|
}
|
||
|
],
|
||
|
"quickEditFields": ["item", "unit", "rate"]
|
||
|
}
|