mirror of
https://github.com/frappe/books.git
synced 2025-01-10 02:07:12 +00:00
36 lines
650 B
JSON
36 lines
650 B
JSON
{
|
|
"name": "PaymentMethod",
|
|
"label": "Payment Method",
|
|
"naming": "manual",
|
|
"fields": [
|
|
{
|
|
"fieldname": "name",
|
|
"label": "Name",
|
|
"fieldtype": "Data"
|
|
},
|
|
{
|
|
"fieldname": "type",
|
|
"label": "Type",
|
|
"fieldtype": "Select",
|
|
"required": true,
|
|
"options": [
|
|
{
|
|
"value": "Cash",
|
|
"label": "Cash"
|
|
},
|
|
{
|
|
"value": "Bank",
|
|
"label": "Bank"
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"fieldname": "account",
|
|
"label": "Account",
|
|
"fieldtype": "Link",
|
|
"target": "Account"
|
|
}
|
|
],
|
|
"quickEditFields": ["name", "type", "account"]
|
|
}
|