mirror of
https://github.com/frappe/books.git
synced 2024-11-15 01:44:04 +00:00
d9415233f5
- remove widgets from the QuickEditForm - remove redundant files
45 lines
847 B
JSON
45 lines
847 B
JSON
{
|
|
"name": "Party",
|
|
"fields": [
|
|
{
|
|
"fieldname": "gstType",
|
|
"label": "GST Registration",
|
|
"placeholder": "GST Registration",
|
|
"fieldtype": "Select",
|
|
"default": "Unregistered",
|
|
"options": [
|
|
{
|
|
"value": "Unregistered",
|
|
"label": "Unregistered"
|
|
},
|
|
{
|
|
"value": "Registered Regular",
|
|
"label": "Registered Regular"
|
|
},
|
|
{
|
|
"value": "Consumer",
|
|
"label": "Consumer"
|
|
}
|
|
],
|
|
"section": "Billing"
|
|
},
|
|
{
|
|
"fieldname": "gstin",
|
|
"label": "GSTIN No.",
|
|
"fieldtype": "Data",
|
|
"section": "Billing"
|
|
}
|
|
],
|
|
"quickEditFields": [
|
|
"email",
|
|
"phone",
|
|
"address",
|
|
"defaultAccount",
|
|
"currency",
|
|
"role",
|
|
"gstType",
|
|
"gstin"
|
|
],
|
|
"removeFields": ["taxId"]
|
|
}
|