2
0
mirror of https://github.com/frappe/books.git synced 2025-01-10 18:24:40 +00:00
books/schemas/app/PaymentMethod.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
650 B
JSON
Raw Normal View History

2024-12-26 09:49:30 +00:00
{
"name": "PaymentMethod",
"label": "Payment Method",
"naming": "manual",
"fields": [
{
"fieldname": "name",
"label": "Name",
"fieldtype": "Data"
},
2024-12-27 11:01:23 +00:00
{
"fieldname": "type",
"label": "Type",
"fieldtype": "Select",
"required": true,
"options": [
{
"value": "Cash",
"label": "Cash"
},
{
"value": "Bank",
"label": "Bank"
}
]
},
2024-12-26 09:49:30 +00:00
{
"fieldname": "account",
"label": "Account",
"fieldtype": "Link",
"target": "Account"
}
],
"quickEditFields": ["name", "type", "account"]
2024-12-26 09:49:30 +00:00
}