apzl_leasing/src_tenwa/com/tenwa/customer/handler/relative/CustomerRelativeHandler.java
2018-06-03 22:26:41 +08:00

18 lines
474 B
Java

package com.tenwa.customer.handler.relative;
import com.amarsoft.are.jbo.BizObject;
import com.amarsoft.awe.dw.handler.impl.CommonHandler;
public class CustomerRelativeHandler extends CommonHandler{
@Override
protected void initDisplayForAdd(BizObject bo) throws Exception {
//获取当前客户ID
String customerId=this.asPage.getAttribute("customerId").toString();
//初始化客户ID
bo.setAttributeValue("CUSTOMERID", customerId);
super.initDisplayForAdd(bo);
}
}