mirror of
https://github.com/frappe/books.git
synced 2024-11-10 15:50:56 +00:00
24 lines
466 B
JSON
24 lines
466 B
JSON
{
|
|
"name": "UOMConversionItem",
|
|
"label": "UOM Conversion Item",
|
|
"isChild": true,
|
|
"fields": [
|
|
{
|
|
"fieldname": "uom",
|
|
"label": "UOM",
|
|
"fieldtype": "Link",
|
|
"target": "UOM",
|
|
"create": true,
|
|
"required": true
|
|
},
|
|
{
|
|
"fieldname": "conversionFactor",
|
|
"label": "Conversion Factor",
|
|
"fieldtype": "Float",
|
|
"default": 1,
|
|
"required": true
|
|
}
|
|
],
|
|
"tableFields": ["uom", "conversionFactor"]
|
|
}
|