diff --git a/src/PowderCoating.Infrastructure/Services/AccountBalanceService.cs b/src/PowderCoating.Infrastructure/Services/AccountBalanceService.cs index 59b4918..527d8ff 100644 --- a/src/PowderCoating.Infrastructure/Services/AccountBalanceService.cs +++ b/src/PowderCoating.Infrastructure/Services/AccountBalanceService.cs @@ -117,7 +117,8 @@ public class AccountBalanceService : IAccountBalanceService /// private static bool IsNormalDebitBalance(AccountSubType subType) => subType switch { - AccountSubType.Checking + AccountSubType.Cash + or AccountSubType.Checking or AccountSubType.Savings or AccountSubType.AccountsReceivable or AccountSubType.Inventory diff --git a/src/PowderCoating.Infrastructure/Services/LedgerService.cs b/src/PowderCoating.Infrastructure/Services/LedgerService.cs index c71be3c..5ae07af 100644 --- a/src/PowderCoating.Infrastructure/Services/LedgerService.cs +++ b/src/PowderCoating.Infrastructure/Services/LedgerService.cs @@ -349,7 +349,8 @@ public class LedgerService : ILedgerService private static bool IsNormalDebitBalance(AccountSubType subType) => subType switch { // Asset subtypes → normal debit balance - AccountSubType.Checking + AccountSubType.Cash + or AccountSubType.Checking or AccountSubType.Savings or AccountSubType.AccountsReceivable or AccountSubType.Inventory