2
0
mirror of https://github.com/frappe/books.git synced 2024-09-20 03:29:00 +00:00
books/schemas/app/Currency.json
18alantom 7023ce2171 fix: allow account creation from tax
- prevent random strings when manual naming
- set naming
2022-09-15 14:23:13 +05:30

36 lines
691 B
JSON

{
"name": "Currency",
"label": "Currency",
"naming": "manual",
"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"
}
],
"quickEditFields": ["symbol"]
}