2
0
mirror of https://github.com/frappe/books.git synced 2024-11-15 09:54:04 +00:00
books/schemas/app/inventory/Point of Sale/POSShiftAmounts.json

26 lines
478 B
JSON
Raw Normal View History

2023-08-16 12:20:57 +00:00
{
2023-08-21 08:58:41 +00:00
"name": "POSShiftAmounts",
"label": "POS Shift Amount",
"isChild": true,
"isAbstract": true,
"fields": [
{
"fieldname": "paymentMethod",
"label": "Payment Method",
"placeholder": "Payment Method",
"fieldtype": "Select",
"options": [
{
"value": "Cash",
"label": "Cash"
},
{
"value": "Transfer",
"label": "Transfer"
}
],
"required": true
2023-08-21 08:58:41 +00:00
}
]
}