Fixed amount issue in call

This commit is contained in:
rajesh
2024-09-18 19:38:58 +05:30
parent d03f5ad653
commit b46aa5aad4

View File

@@ -116,7 +116,7 @@ public class CallDao {
} }
callEntity.setStatus(CallStatusEnum.DRAFT.getValue()); callEntity.setStatus(CallStatusEnum.DRAFT.getValue());
callEntity.setAmountMax(createCallRequest.getAmountMax()); callEntity.setAmountMax(createCallRequest.getAmountMax());
callEntity.setAmount(createCallRequest.getAmountMax()); callEntity.setAmount(createCallRequest.getAmount());
callEntity.setConfidi(false); callEntity.setConfidi(false);
if (createCallRequest.getConfidi() != null) { if (createCallRequest.getConfidi() != null) {
callEntity.setConfidi(createCallRequest.getConfidi()); callEntity.setConfidi(createCallRequest.getConfidi());