mirror of
https://github.com/frappe/books.git
synced 2024-11-10 07:40:55 +00:00
30 lines
579 B
JSON
30 lines
579 B
JSON
{
|
|
"name": "TaxSummary",
|
|
"label": "Tax Summary",
|
|
"isChild": true,
|
|
"fields": [
|
|
{
|
|
"fieldname": "account",
|
|
"label": "Tax Account",
|
|
"fieldtype": "Link",
|
|
"target": "Account",
|
|
"required": true
|
|
},
|
|
{
|
|
"fieldname": "rate",
|
|
"label": "Tax Rate",
|
|
"fieldtype": "Float",
|
|
"required": true,
|
|
"readOnly": true
|
|
},
|
|
{
|
|
"fieldname": "amount",
|
|
"label": "Tax Amount",
|
|
"fieldtype": "Currency",
|
|
"required": true,
|
|
"readOnly": true
|
|
}
|
|
],
|
|
"tableFields": ["account", "rate", "amount"]
|
|
}
|