2
0
mirror of https://github.com/frappe/books.git synced 2024-09-20 11:29:00 +00:00
books/schemas/app/Currency.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
669 B
JSON
Raw Normal View History

2022-03-23 07:31:15 +00:00
{
"name": "Currency",
"label": "Currency",
"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 08:37:00 +00:00
],
2022-06-20 06:31:20 +00:00
"quickEditFields": ["symbol"]
2022-03-23 08:37:00 +00:00
}