2
0
mirror of https://github.com/frappe/books.git synced 2025-01-10 10:16:22 +00:00
books/schemas/app/PaymentMethod.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"]
}