2
0
mirror of https://github.com/frappe/books.git synced 2025-01-10 02:07:12 +00:00
books/schemas/app/inventory/UOMConversion.json
2023-02-21 13:33:30 +05:30

32 lines
654 B
JSON

{
"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"]
}