|
@@ -196,14 +196,14 @@ public class ShmtOdrService extends CommonService {
|
196
|
196
|
LoanMgntBaseInfoEntity loanEntity = new LoanMgntBaseInfoEntity();
|
197
|
197
|
loanEntity.setLoanMgntUnqNo(loanMgntUnqNo);
|
198
|
198
|
loanEntity.setStoreId(entity.getStoreId());
|
199
|
|
- loanEntity.setUseAmtTotal((entity.getPchOdrDtlInfo().getPodrQty() - reqEntity.getShmtQty()) * entity.getPchOdrDtlInfo().getUnitAmt());
|
|
199
|
+ loanEntity.setUseAmtTotal( Long.valueOf ((entity.getPchOdrDtlInfo().getPodrQty() - reqEntity.getShmtQty()) * entity.getPchOdrDtlInfo().getUnitAmt()));
|
200
|
200
|
loanList.add(loanEntity);
|
201
|
201
|
}
|
202
|
202
|
} else {
|
203
|
203
|
LoanMgntBaseInfoEntity loanEntity = new LoanMgntBaseInfoEntity();
|
204
|
204
|
loanEntity.setLoanMgntUnqNo(loanMgntUnqNo);
|
205
|
205
|
loanEntity.setStoreId(entity.getStoreId());
|
206
|
|
- loanEntity.setUseAmtTotal((entity.getPchOdrDtlInfo().getPodrQty() - reqEntity.getShmtQty()) * entity.getPchOdrDtlInfo().getUnitAmt());
|
|
206
|
+ loanEntity.setUseAmtTotal( Long.valueOf ( (entity.getPchOdrDtlInfo().getPodrQty() - reqEntity.getShmtQty()) * entity.getPchOdrDtlInfo().getUnitAmt()));
|
207
|
207
|
|
208
|
208
|
loanList.add(loanEntity);
|
209
|
209
|
}
|