This is an automated email from the ASF dual-hosted git repository.
arnold pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/fineract.git
The following commit(s) were added to refs/heads/develop by this push:
new 264cc3a29 FINERACT-1553-fix-boolean-premitive-to-handle-null
264cc3a29 is described below
commit 264cc3a2990720be5ce4f3839e278151a58e8d50
Author: Manoj VM <[email protected]>
AuthorDate: Fri May 27 16:13:52 2022 +0530
FINERACT-1553-fix-boolean-premitive-to-handle-null
---
.../service/SavingsAccountWritePlatformServiceJpaRepositoryImpl.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/fineract-provider/src/main/java/org/apache/fineract/portfolio/savings/service/SavingsAccountWritePlatformServiceJpaRepositoryImpl.java
b/fineract-provider/src/main/java/org/apache/fineract/portfolio/savings/service/SavingsAccountWritePlatformServiceJpaRepositoryImpl.java
index d1dfe3c43..beb806d96 100644
---
a/fineract-provider/src/main/java/org/apache/fineract/portfolio/savings/service/SavingsAccountWritePlatformServiceJpaRepositoryImpl.java
+++
b/fineract-provider/src/main/java/org/apache/fineract/portfolio/savings/service/SavingsAccountWritePlatformServiceJpaRepositoryImpl.java
@@ -1814,7 +1814,7 @@ public class
SavingsAccountWritePlatformServiceJpaRepositoryImpl implements Savi
final boolean backdatedTxnsAllowedTill =
this.savingAccountAssembler.getPivotConfigStatus();
final SavingsAccount account =
this.savingAccountAssembler.assembleFrom(savingsId, backdatedTxnsAllowedTill);
final LocalDate transactionDate =
command.localDateValueOfParameterNamed(transactionDateParamName);
- final boolean lienAllowed =
command.booleanObjectValueOfParameterNamed(lienAllowedParamName);
+ final boolean lienAllowed =
command.booleanPrimitiveValueOfParameterNamed(lienAllowedParamName);
checkClientOrGroupActive(account);