mirror of
https://github.com/frappe/books.git
synced 2024-11-10 07:40:55 +00:00
28 lines
496 B
JSON
28 lines
496 B
JSON
|
{
|
||
|
"name": "TaxDetail",
|
||
|
"label": "Tax Detail",
|
||
|
"doctype": "DocType",
|
||
|
"isSingle": false,
|
||
|
"isChild": true,
|
||
|
"keywordFields": [],
|
||
|
"fields": [
|
||
|
{
|
||
|
"fieldname": "account",
|
||
|
"label": "Tax Account",
|
||
|
"fieldtype": "Link",
|
||
|
"target": "Account",
|
||
|
"required": true
|
||
|
},
|
||
|
{
|
||
|
"fieldname": "rate",
|
||
|
"label": "Rate",
|
||
|
"fieldtype": "Float",
|
||
|
"required": true,
|
||
|
"placeholder": "0%"
|
||
|
}
|
||
|
],
|
||
|
"tableFields": [
|
||
|
"account",
|
||
|
"rate"
|
||
|
]
|
||
|
}
|