2
0
mirror of https://github.com/frappe/books.git synced 2025-01-10 10:16:22 +00:00
books/schemas/app/inventory/UOMConversion.json

32 lines
654 B
JSON
Raw Normal View History

2023-02-21 08:03:30 +00:00
{
"name": "UOMConversion",
"label": "UOM Conversion",
"naming": "autoincrement",
"fields": [
{
"fieldname": "fromUOM",
"label": "From UOM",
"fieldtype": "Link",
"target": "UOM",
"create": true,
"required": true
},
{
"fieldname": "toUOM",
"label": "To UOM",
"fieldtype": "Link",
"target": "UOM",
"create": true,
"required": true
},
{
"fieldname": "conversionFactor",
"label": "Conversion Factor",
"fieldtype": "Float",
"default": 1,
"required": true
}
],
"quickEditFields": ["fromUOM", "toUOM", "conversionFactor"]
}