2
0
mirror of https://github.com/frappe/books.git synced 2025-01-23 15:18:24 +00:00
books/schemas/app/Currency.json

36 lines
691 B
JSON
Raw Normal View History

2022-03-23 13:01:15 +05:30
{
"name": "Currency",
"label": "Currency",
"naming": "manual",
2022-03-23 13:01:15 +05:30
"isSingle": false,
"fields": [
{
"fieldname": "name",
"label": "Currency Name",
"fieldtype": "Data",
"required": true
},
{
"fieldname": "fraction",
"label": "Fraction",
"fieldtype": "Data"
},
{
"fieldname": "fractionUnits",
"label": "Fraction Units",
"fieldtype": "Int"
},
{
"label": "Smallest Currency Fraction Value",
"fieldname": "smallestValue",
"fieldtype": "Currency"
},
{
"label": "Symbol",
"fieldname": "symbol",
"fieldtype": "Data"
}
2022-03-23 14:07:00 +05:30
],
2022-06-20 12:01:20 +05:30
"quickEditFields": ["symbol"]
2022-03-23 14:07:00 +05:30
}