mirror of
https://github.com/frappe/books.git
synced 2024-11-10 07:40:55 +00:00
3e466c647c
- get form to render - minor ui fixes
43 lines
791 B
JSON
43 lines
791 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",
|
|
"role",
|
|
"gstType",
|
|
"gstin"
|
|
],
|
|
"removeFields": ["taxId"]
|
|
}
|