2
0
mirror of https://github.com/frappe/books.git synced 2025-01-23 15:18:24 +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 14:28:48 +05:30
{
"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 14:28:48 +05:30
"fieldtype": "Check",
"default": true
},
{
"fieldname": "isSales",
"label": "For Sales",
2023-06-06 14:28:48 +05:30
"fieldtype": "Check",
2023-06-07 10:37:13 +05:30
"default": true
2023-06-06 14:28:48 +05:30
},
{
"fieldname": "isPurchase",
"label": "For Purchase",
2023-06-06 14:28:48 +05:30
"fieldtype": "Check",
2023-06-07 10:37:13 +05:30
"default": false
2023-06-06 14:28:48 +05:30
},
{
"fieldname": "priceListItem",
2023-06-06 14:28:48 +05:30
"label": "Item Prices",
"fieldtype": "Table",
"target": "PriceListItem",
2023-06-06 14:28:48 +05:30
"required": true,
"section": "Item Prices"
}
]
}