diff --git a/src_app_fresh/apx/com/amarsoft/als/apzl/apply/business/loan/controller/LoanSimulationBasicInfoController.java b/src_app_fresh/apx/com/amarsoft/als/apzl/apply/business/loan/controller/LoanSimulationBasicInfoController.java index cff43f32d..93d109323 100644 --- a/src_app_fresh/apx/com/amarsoft/als/apzl/apply/business/loan/controller/LoanSimulationBasicInfoController.java +++ b/src_app_fresh/apx/com/amarsoft/als/apzl/apply/business/loan/controller/LoanSimulationBasicInfoController.java @@ -64,7 +64,7 @@ public class LoanSimulationBasicInfoController { LoanSimulationBasicService service = new LoanSimulationBasicServiceImpl(); try { - return service.saveInfo(request, response, tx, sqlca, ReturnMapUtil); + return service.run(request, response, tx, sqlca, ReturnMapUtil); } catch (Exception e) { return ReturnMapUtil.rollback(e); } diff --git a/src_app_fresh/apx/com/amarsoft/als/base/awe/execute/manage/CustomerPersonDoQueryManage.java b/src_app_fresh/apx/com/amarsoft/als/base/awe/execute/manage/CustomerPersonDoQueryManage.java index 35f53c9a5..e1f4638fe 100644 --- a/src_app_fresh/apx/com/amarsoft/als/base/awe/execute/manage/CustomerPersonDoQueryManage.java +++ b/src_app_fresh/apx/com/amarsoft/als/base/awe/execute/manage/CustomerPersonDoQueryManage.java @@ -37,8 +37,8 @@ public class CustomerPersonDoQueryManage extends AbstractAweDoQueryManage { bo.setAttributeValue("CUSTOMERID", customerId); bo.setAttributeValue("FULLNAME", cust.getAttribute("customername") .getString()); - bo.setAttributeValue("status", custtype.getAttribute("custstatus") - .getString()); +// bo.setAttributeValue("status", custtype.getAttribute("custstatus") +// .getString()); bo.setAttributeValue("CERTTYPE", cust.getAttribute("certtype") .getString()); bo.setAttributeValue("CERTID", cust.getAttribute("certid").getString()); @@ -47,7 +47,7 @@ public class CustomerPersonDoQueryManage extends AbstractAweDoQueryManage { } protected void initDisplayForEdit(BizObject bo) throws JBOException { - String customerId = this.fieldMap.get("customerId").toString(); + String customerId = bo.getAttribute("customerId").toString(); BizObject cust = JBOFactory .getBizObjectManager(CUSTOMER_INFO.CLASS_NAME) @@ -62,13 +62,10 @@ public class CustomerPersonDoQueryManage extends AbstractAweDoQueryManage { bo.setAttributeValue("CUSTOMERID", customerId); bo.setAttributeValue("FULLNAME", cust.getAttribute("customername") .getString()); - bo.setAttributeValue("status", custtype.getAttribute("custstatus") - .getString()); - bo.setAttributeValue("CERTTYPE", cust.getAttribute("certtype") - .getString()); - bo.setAttributeValue("CERTID", cust.getAttribute("certid").getString()); - bo.setAttributeValue("COUNTRY", cust.getAttribute("nationcode") - .getString()); +// bo.setAttributeValue("status", custtype.getAttribute("custstatus")); + bo.setAttributeValue("CERTTYPE", cust.getAttribute("certtype")); + bo.setAttributeValue("CERTID", cust.getAttribute("certid")); + bo.setAttributeValue("COUNTRY", cust.getAttribute("nationcode")); } public void setFieldMap(Map fieldMap) {