2
0
mirror of https://github.com/frappe/books.git synced 2024-09-20 11:29:00 +00:00
books/schemas/regional/in/Party.json
18alantom d9415233f5 fix(ux): Add sections for a few Entry types
- remove widgets from the QuickEditForm
- remove redundant files
2023-04-14 15:31:04 +05:30

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"]
}