mirror of
https://github.com/frappe/books.git
synced 2024-11-10 07:40:55 +00:00
b08a3b9d52
- add removeFields - fix Party schema
85 lines
1.7 KiB
JSON
85 lines
1.7 KiB
JSON
{
|
|
"name": "Party",
|
|
"label": "Party",
|
|
"fields": [
|
|
{
|
|
"fieldname": "name",
|
|
"label": "Name",
|
|
"fieldtype": "Data",
|
|
"required": true,
|
|
"placeholder": "Full Name"
|
|
},
|
|
{
|
|
"fieldname": "image",
|
|
"label": "Image",
|
|
"fieldtype": "AttachImage"
|
|
},
|
|
{
|
|
"fieldname": "role",
|
|
"label": "Role",
|
|
"fieldtype": "Select",
|
|
"default": "Both",
|
|
"options": [
|
|
{
|
|
"value": "Both",
|
|
"label": "Both"
|
|
},
|
|
{
|
|
"value": "Supplier",
|
|
"label": "Supplier"
|
|
},
|
|
{
|
|
"value": "Customer",
|
|
"label": "Customer"
|
|
}
|
|
],
|
|
"required": true
|
|
},
|
|
{
|
|
"fieldname": "defaultAccount",
|
|
"label": "Default Account",
|
|
"fieldtype": "Link",
|
|
"target": "Account"
|
|
},
|
|
{
|
|
"fieldname": "outstandingAmount",
|
|
"label": "Outstanding Amount",
|
|
"fieldtype": "Currency"
|
|
},
|
|
{
|
|
"fieldname": "currency",
|
|
"label": "Currency",
|
|
"fieldtype": "Link",
|
|
"target": "Currency",
|
|
"placeholder": "INR"
|
|
},
|
|
{
|
|
"fieldname": "email",
|
|
"label": "Email",
|
|
"fieldtype": "Data",
|
|
"placeholder": "john@doe.com"
|
|
},
|
|
{
|
|
"fieldname": "phone",
|
|
"label": "Phone",
|
|
"fieldtype": "Data",
|
|
"placeholder": "Phone"
|
|
},
|
|
{
|
|
"fieldname": "address",
|
|
"label": "Address",
|
|
"fieldtype": "Link",
|
|
"target": "Address",
|
|
"placeholder": "Click to create",
|
|
"inline": true
|
|
},
|
|
{
|
|
"fieldname": "taxId",
|
|
"label": "Tax ID",
|
|
"fieldtype": "Data"
|
|
}
|
|
],
|
|
"quickEditFields": ["email", "role", "phone", "address", "defaultAccount", "currency", "taxId"],
|
|
"keywordFields": ["name"]
|
|
}
|