2
0
mirror of https://github.com/frappe/books.git synced 2024-11-10 07:40:55 +00:00
books/schemas/app/PriceList.json

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

40 lines
783 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": "isEnabled",
"label": "Is Price List Enabled",
2023-06-06 08:58:48 +00:00
"fieldtype": "Check",
"default": true
},
{
"fieldname": "isSales",
"label": "For Sales",
2023-06-06 08:58:48 +00:00
"fieldtype": "Check",
2023-06-07 05:07:13 +00:00
"default": true
2023-06-06 08:58:48 +00:00
},
{
"fieldname": "isPurchase",
"label": "For Purchase",
2023-06-06 08:58:48 +00:00
"fieldtype": "Check",
2023-06-07 05:07:13 +00:00
"default": false
2023-06-06 08:58:48 +00:00
},
{
"fieldname": "priceListItem",
2023-06-06 08:58:48 +00:00
"label": "Item Prices",
"fieldtype": "Table",
"target": "PriceListItem",
2023-06-06 08:58:48 +00:00
"required": true,
"section": "Item Prices"
}
]
}