2
0
mirror of https://github.com/frappe/books.git synced 2024-09-20 19:29:02 +00:00
books/schemas/regional/in/Party.json

42 lines
779 B
JSON
Raw Normal View History

2022-03-23 08:37:00 +00:00
{
"name": "Party",
"fields": [
{
"fieldname": "gstin",
"label": "GSTIN No.",
"fieldtype": "Data"
},
{
"fieldname": "gstType",
"label": "GST Registration",
"placeholder": "GST Registration",
"fieldtype": "Select",
"default": "Unregistered",
2022-03-23 14:46:19 +00:00
"options": [
{
"value": "Unregistered",
"label": "Unregistered"
},
{
"value": "Registered Regular",
"label": "Registered Regular"
},
{
"value": "Consumer",
"label": "Consumer"
}
]
2022-03-23 08:37:00 +00:00
}
],
"quickEditFields": [
"email",
"phone",
"address",
"defaultAccount",
"currency",
"gstType",
"gstin"
],
"removeFields": ["taxId"]
2022-03-23 08:37:00 +00:00
}