bug 测算 run

个人查询bug
This commit is contained in:
liujiaji 2018-07-30 09:52:14 +08:00
parent 573a041cef
commit c22802e965
2 changed files with 8 additions and 11 deletions

View File

@ -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);
}

View File

@ -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<String, Object> fieldMap) {