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