mirror of
https://github.com/frappe/books.git
synced 2024-11-14 09:24:04 +00:00
25 lines
475 B
JSON
25 lines
475 B
JSON
{
|
|
"name": "UOMConversionFactor",
|
|
"label": "UOM Conversion Factor",
|
|
"isChild": true,
|
|
"fields": [
|
|
{
|
|
"fieldname": "uom",
|
|
"label": "UOM",
|
|
"fieldtype": "Link",
|
|
"target": "UOM",
|
|
"create": true,
|
|
"required": true
|
|
},
|
|
{
|
|
"fieldname": "value",
|
|
"label": "Value",
|
|
"fieldtype": "Float",
|
|
"default": 1,
|
|
"required": true
|
|
}
|
|
],
|
|
"tableFields": ["uom", "value"],
|
|
"quickEditFields": ["uom", "value"]
|
|
}
|