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
40 lines
783 B
JSON
40 lines
783 B
JSON
{
|
|
"name": "PriceList",
|
|
"label": "Price List",
|
|
"naming": "manual",
|
|
"fields": [
|
|
{
|
|
"fieldname": "name",
|
|
"label": "Name",
|
|
"fieldtype": "Data",
|
|
"required": true
|
|
},
|
|
{
|
|
"fieldname": "isEnabled",
|
|
"label": "Is Price List Enabled",
|
|
"fieldtype": "Check",
|
|
"default": true
|
|
},
|
|
{
|
|
"fieldname": "isSales",
|
|
"label": "For Sales",
|
|
"fieldtype": "Check",
|
|
"default": true
|
|
},
|
|
{
|
|
"fieldname": "isPurchase",
|
|
"label": "For Purchase",
|
|
"fieldtype": "Check",
|
|
"default": false
|
|
},
|
|
{
|
|
"fieldname": "priceListItem",
|
|
"label": "Item Prices",
|
|
"fieldtype": "Table",
|
|
"target": "PriceListItem",
|
|
"required": true,
|
|
"section": "Item Prices"
|
|
}
|
|
]
|
|
}
|