2
0
mirror of https://github.com/frappe/books.git synced 2024-12-22 10:58:59 +00:00

feat: pos shift closing schemas

This commit is contained in:
akshayitzme 2023-08-22 12:04:30 +05:30 committed by akshayitzme
parent 7ce556b8eb
commit e4907165bb
2 changed files with 19 additions and 2 deletions

View File

@ -1,6 +1,6 @@
{
"name": "POSShiftClosingAmounts",
"label": "Opening Amount",
"name": "ClosingAmounts",
"label": "Closing Amount",
"isChild": true,
"extends": "POSShiftAmounts",
"fields": [

View File

@ -0,0 +1,17 @@
{
"name": "ClosingCash",
"label": "Closing Cash In Denominations",
"isChild": true,
"extends": "CashDenominations",
"fields": [
{
"fieldname": "count",
"label": "Count",
"placeholder": "Count",
"fieldtype": "Int",
"default": 0,
"required": true
}
],
"tableFields": ["denomination", "count"]
}