2
0
mirror of https://github.com/frappe/books.git synced 2024-11-15 17:57:08 +00:00
books/schemas/app/inventory/Point of Sale/POSShift.json

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

57 lines
1.2 KiB
JSON
Raw Normal View History

2023-08-16 12:20:57 +00:00
{
"name": "POSShift",
"isSingle": true,
"isChild": false,
"fields": [
{
"fieldname": "isShiftOpen",
"label": "Is POS Shift Open",
"fieldtype": "Check",
"default": false,
"section": "Defaults"
},
{
"fieldname": "openingDate",
"label": "Opening Date",
"fieldtype": "Datetime",
"section": "Defaults"
},
{
"fieldname": "closingDate",
"label": "Closing Date",
"fieldtype": "Datetime",
"section": "Defaults"
},
{
"fieldname": "openingCashAmount",
"label": "Opening Cash Amount",
"fieldtype": "Currency",
"section": "Defaults"
},
{
"fieldname": "totalOpeningAmount",
"label": "Opening Amount",
"fieldtype": "Currency",
"section": "Defaults"
},
{
"fieldname": "openingCashInDenominations",
"fieldtype": "Table",
"target": "OpeningCashInDenominations",
"section": "Defaults"
},
{
"fieldname": "openingAmounts",
"fieldtype": "Table",
"target": "POSShiftOpeningAmounts",
"section": "Defaults"
},
{
"fieldname": "closingAmounts",
"fieldtype": "Table",
"target": "POSShiftClosingAmounts",
"section": "Defaults"
}
]
}