mirror of
https://github.com/frappe/books.git
synced 2024-11-10 15:50:56 +00:00
7023ce2171
- prevent random strings when manual naming - set naming
36 lines
691 B
JSON
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"]
|
|
}
|