mirror of
https://github.com/frappe/books.git
synced 2024-11-14 09:24:04 +00:00
26 lines
513 B
JSON
26 lines
513 B
JSON
{
|
|
"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"]
|
|
}
|