This commit is contained in:
liujiaji 2018-08-07 13:47:27 +08:00
parent 905b63e767
commit b90837b8cd
2 changed files with 2 additions and 2 deletions

View File

@ -243,7 +243,7 @@ public class ProductBaseLoanTools {
String nowTotal = "99999999";
BizObject bo = JBOFactory
.createBizObjectQuery(FLOW_BUSSINESS_OBJECT.CLASS_NAME,
"typeno=:productID")
"productID=:productID")
.setParameter("productID", productId).getSingleResult(false);
if (null == bo)
return nowTotal;

View File

@ -77,9 +77,9 @@ public class LoanSimulationBasicServiceImpl implements
body.put("productId", baseMap.get("productId"));
body.put("productName", baseMap.get("productName"));
body.put("nowTotal", baseMap.get("nowTotal"));
body.put("productDatas", appList);
body.put("productFundRules", calcRulesMap);
ProductBaseLoanTools.configAppDisplay(appList, productId);
body.put("productDatas", appList);
ReturnMapUtil.setReturnMap(body,
RestfullConstant.baseProperty.get("success").toString(), "");
return ReturnMapUtil.getReturnMap();