mirror of
https://github.com/frappe/books.git
synced 2025-04-04 17:21:51 +00:00
30 lines
562 B
JSON
30 lines
562 B
JSON
{
|
|
"name": "UOMConversionFactor",
|
|
"label": "UOM Conversion Factor",
|
|
"naming": "manual",
|
|
"fields": [
|
|
{
|
|
"fieldname": "name",
|
|
"label": "UOM",
|
|
"fieldtype": "Link",
|
|
"target": "UOM",
|
|
"create": true,
|
|
"required": true
|
|
},
|
|
{
|
|
"fieldname": "item",
|
|
"label": "Item",
|
|
"fieldtype": "Link",
|
|
"target": "Item",
|
|
"required": true
|
|
},
|
|
{
|
|
"fieldname": "value",
|
|
"label": "Value",
|
|
"fieldtype": "Float",
|
|
"required": true
|
|
}
|
|
],
|
|
"quickEditFields": ["item", "value"]
|
|
}
|