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.

39 lines
754 B
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
2023-08-16 12:20:57 +00:00
},
{
"fieldname": "openingDate",
"label": "Opening Date",
"fieldtype": "Datetime"
2023-08-16 12:20:57 +00:00
},
{
"fieldname": "closingDate",
"label": "Closing Date",
"fieldtype": "Datetime"
2023-08-16 12:20:57 +00:00
},
{
"fieldname": "openingCash",
2023-08-16 12:20:57 +00:00
"fieldtype": "Table",
"target": "OpeningCash"
2023-08-16 12:20:57 +00:00
},
{
"fieldname": "closingCash",
2023-08-16 12:20:57 +00:00
"fieldtype": "Table",
"target": "ClosingCash"
2023-08-16 12:20:57 +00:00
},
{
"fieldname": "openingAmounts",
2023-08-16 12:20:57 +00:00
"fieldtype": "Table",
"target": "OpeningAmounts"
2023-08-16 12:20:57 +00:00
}
]
}