2
0
mirror of https://github.com/frappe/books.git synced 2024-12-23 19:39:07 +00:00
books/schemas/app/PriceList.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

49 lines
958 B
JSON
Raw Normal View History

2023-06-06 08:58:48 +00:00
{
"name": "PriceList",
"label": "Price List",
"naming": "manual",
"fields": [
{
"fieldname": "name",
"label": "Name",
"fieldtype": "Data",
"required": true
},
{
"fieldname": "enabled",
"label": "Enabled",
"fieldtype": "Check",
"default": true
},
{
"fieldname": "buying",
"label": "Buying",
"fieldtype": "Check",
"default": false,
"required": true
},
{
"fieldname": "selling",
"label": "Selling",
"fieldtype": "Check",
"default": false,
"required": true
},
{
"fieldname": "isUomDependent",
"label": "Is Price UOM Dependent",
"fieldtype": "Check",
"default": false
},
{
"fieldname": "itemPrice",
"label": "Item Prices",
"fieldtype": "Table",
"target": "ItemPrice",
"edit": true,
"required": true,
"section": "Item Prices"
}
]
}