18 lines
474 B
Java
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);
|
|
}
|
|
|
|
}
|