2
0
mirror of https://github.com/frappe/books.git synced 2024-09-20 19:29:02 +00:00
books/schemas/app/TaxSummary.json
18alantom 28158e5add incr: update invoice schema with sections
- hide name from transactional schemas
2023-04-12 14:35:38 +05:30

28 lines
531 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
},
{
"fieldname": "amount",
"label": "Tax Amount",
"fieldtype": "Currency",
"required": true
}
],
"tableFields": ["account", "rate", "amount"]
}