2
0
mirror of https://github.com/frappe/books.git synced 2025-01-06 08:40:43 +00:00
books/schemas/app/inventory/Point of Sale/POSSettings.json
2024-11-14 12:41:59 +05:30

55 lines
1.1 KiB
JSON

{
"name": "POSSettings",
"label": "POS Settings",
"isSingle": true,
"isChild": false,
"fields": [
{
"fieldname": "inventory",
"label": "Inventory",
"fieldtype": "Link",
"target": "Location",
"create": true,
"default": "Stores",
"section": "Default"
},
{
"fieldname": "cashAccount",
"label": "Counter Cash Account",
"fieldtype": "Link",
"target": "Account",
"default": "Cash In Hand",
"required": true,
"create": true,
"section": "Default"
},
{
"fieldname": "writeOffAccount",
"label": "Write Off Account",
"fieldtype": "Link",
"target": "Account",
"create": true,
"default": "Write Off",
"section": "Default"
},
{
"fieldname": "posUI",
"label": "Pos Ui",
"fieldtype": "Select",
"options": [
{
"value": "Classic",
"label": "POS1"
},
{
"value": "Modern",
"label": "POS2"
}
],
"default": "POS1",
"required": true,
"section": "Default"
}
]
}