2
0
mirror of https://github.com/frappe/books.git synced 2024-11-15 01:44:04 +00:00
books/schemas/app/PricingRuleItem.json

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

26 lines
513 B
JSON
Raw Normal View History

2024-01-30 12:54:01 +00:00
{
"name": "PricingRuleItem",
"label": "Pricing Rule Item",
"isChild": true,
"fields": [
{
"fieldname": "item",
"label": "Item",
"fieldtype": "Link",
"target": "Item",
"required": true
},
{
"fieldname": "unit",
"label": "Unit Type",
"placeholder": "Unit Type",
"fieldtype": "Link",
"target": "UOM",
"create": true,
"section": "Default"
}
],
"tableFields": ["item", "unit"],
"quickEditFields": ["item", "unit"]
}