扣款卡信息变更,查询历史表

This commit is contained in:
tangft 2019-01-21 18:41:23 +08:00
parent e8425af7a8
commit 30a1755544

View File

@ -53,11 +53,12 @@ public class LBCustomerAccountChangeToFormalBusiness extends BaseBussiness{
fromCond.put("ACC_NUMBER", cat.getAttribute("ACC_NUMBER").getString());
fromCond.put("BANK_NAME", cat.getAttribute("BANK_NAME").getString());
fromCond.put("MOBILE", cat.getAttribute("MOBILE").getString());
BizObject ca = DataOperatorUtil.getSingleJBO(CUSTOMER_ACCOUNT.CLASS_NAME, fromCond, Sqlca);
if(ca==null){
fromCond.put("PROJECT_ID", this.getAttribute("projectId").toString());
BizObject cah = DataOperatorUtil.getSingleJBO(CUSTOMER_ACCOUNT_HIS.CLASS_NAME, fromCond, Sqlca);
if(cah==null){
other.put(CUSTOMER_ACCOUNT.sign_status, "N");
}else{
other.put(CUSTOMER_ACCOUNT.sign_status, ca.getAttribute("SIGN_STATUS").getString());
other.put(CUSTOMER_ACCOUNT.sign_status, cah.getAttribute("SIGN_STATUS").getString());
}
}