2
0
mirror of https://github.com/frappe/books.git synced 2025-01-09 17:53:56 +00:00
books/schemas/app/inventory/Point of Sale/POSSettings.json

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

62 lines
1.3 KiB
JSON
Raw Normal View History

2023-09-05 12:03:42 +00:00
{
"name": "POSSettings",
"label": "POS Settings",
"isSingle": true,
"isChild": false,
"fields": [
2024-12-24 16:47:40 +00:00
{
"fieldname": "isShiftOpen",
"label": "Is POS Shift Open",
"fieldtype": "Check",
"default": false,
"hidden": false
},
2023-09-05 12:03:42 +00:00
{
"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",
2023-09-05 12:03:42 +00:00
"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",
2024-10-30 10:29:39 +00:00
"label": "Classic"
},
{
"value": "Modern",
2024-10-30 10:29:39 +00:00
"label": "Modern"
}
],
2024-10-30 10:29:39 +00:00
"default": "Classic",
"required": true,
"section": "Default"
2023-09-05 12:03:42 +00:00
}
]
}