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 b08a3b9d52 incr: type Party, JournalEntry
- add removeFields
- fix Party schema
2022-05-23 16:18:21 +05:30

42 lines
779 B
JSON

{
"name": "Party",
"fields": [
{
"fieldname": "gstin",
"label": "GSTIN No.",
"fieldtype": "Data"
},
{
"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"
}
]
}
],
"quickEditFields": [
"email",
"phone",
"address",
"defaultAccount",
"currency",
"gstType",
"gstin"
],
"removeFields": ["taxId"]
}