nc中部门参照选择不到

出现问题原因:由于没有组织,导致在组织下的部门参照选择不到

解决方案:写一个编辑前事件,给参照注入一下当前组织


代码:

import nc.ui.pub.beans.UIRefPane;
import nc.ui.pub.bill.BillItem;
import nc.ui.pubapp.uif2app.event.IAppEventHandler;
import nc.ui.pubapp.uif2app.event.card.CardBodyBeforeEditEvent;


public class RefContrastAfterEditHeadler implements
IAppEventHandler {

@Override
public void handleAppEvent(CardBodyBeforeEditEvent e) {
// TODO 自动生成的方法存根
if("ncdeptcode".equals(e.getKey())){
BillItem item = e.getBillCardPanel().getBodyItem("ncdeptcode");
// 获取当前所属组织主键
String pk_org =  e.getBillCardPanel().getBodyItem("pk_org")
.getValue();
// 获取参照组件
UIRefPane ref = (UIRefPane) item.getComponent();
// 设置当前组织
ref.setPk_org(pk_org);
}
e.setReturnValue(true);


}
}


你可能感兴趣的:(nc中部门参照选择不到)