2
0
mirror of https://github.com/frappe/books.git synced 2024-11-08 14:50:56 +00:00

make Tax Rate and Tax Amount readOnly

This commit is contained in:
Abdallah A. Zaqout 2023-06-24 03:28:06 -07:00 committed by Alan
parent 3824b46883
commit c1649b11db

View File

@ -14,13 +14,15 @@
"fieldname": "rate",
"label": "Tax Rate",
"fieldtype": "Float",
"required": true
"required": true,
"readOnly": true
},
{
"fieldname": "amount",
"label": "Tax Amount",
"fieldtype": "Currency",
"required": true
"required": true,
"readOnly": true
}
],
"tableFields": ["account", "rate", "amount"]