mirror of
https://github.com/frappe/books.git
synced 2024-11-15 01:44:04 +00:00
27 lines
558 B
JSON
27 lines
558 B
JSON
|
{
|
||
|
"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,
|
||
|
"section": "Details"
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
|