2
0
mirror of https://github.com/frappe/books.git synced 2025-01-24 07:38:25 +00:00

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

90 lines
1.9 KiB
JSON
Raw Normal View History

2023-09-05 17:33:42 +05:30
{
"name": "POSSettings",
"label": "POS Settings",
"isSingle": true,
"isChild": false,
"fields": [
2024-12-24 22:17:40 +05:30
{
"fieldname": "isShiftOpen",
"label": "Is POS Shift Open",
"fieldtype": "Check",
"default": false,
"hidden": false
},
2023-09-05 17:33:42 +05:30
{
"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 17:33:42 +05:30
"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 15:59:39 +05:30
"label": "Classic"
},
{
"value": "Modern",
2024-10-30 15:59:39 +05:30
"label": "Modern"
}
],
2024-10-30 15:59:39 +05:30
"default": "Classic",
"required": true,
"section": "Default"
2024-12-26 15:10:24 +05:30
},
{
"fieldname": "weightEnabledBarcode",
"label": "Weigth Enabled Barcode",
"fieldtype": "Check",
"default": false,
"section": "Barcode"
},
{
"fieldname": "checkDigits",
"label": "Check Digits",
2024-12-26 15:10:24 +05:30
"fieldtype": "Int",
"default": 0,
"section": "Barcode"
},
{
2024-12-26 18:51:51 +05:30
"fieldname": "itemCodeDigits",
"label": "Item Code Digits",
2024-12-26 15:10:24 +05:30
"fieldtype": "Int",
"default": 0,
"section": "Barcode"
},
{
"fieldname": "itemWeightDigits",
"label": "item Weight Digits",
2024-12-26 15:10:24 +05:30
"fieldtype": "Int",
"default": 0,
"section": "Barcode"
2023-09-05 17:33:42 +05:30
}
]
}