2
0
mirror of https://github.com/frappe/books.git synced 2025-01-03 15:17:30 +00:00

Merge pull request #927 from frappe/fix-pos-counter-cash-account

fix: POS Setting Allows Cash in Hand Group to be Counter Cash Account
This commit is contained in:
Akshay 2024-08-14 11:08:40 +05:30 committed by GitHub
commit 47f4f83bc3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -14,6 +14,7 @@ export class POSSettings extends Doc {
cashAccount: () => ({ cashAccount: () => ({
rootType: AccountRootTypeEnum.Asset, rootType: AccountRootTypeEnum.Asset,
accountType: AccountTypeEnum.Cash, accountType: AccountTypeEnum.Cash,
isGroup: false,
}), }),
}; };
} }