팝업 창 작업
1538 단어 UI
public Map Open_ReplyWin(Map paramMap) throws Exception{
String openUIClass = UIClass;
IUIWindow win = UIFactory.createUIFactory(UIFactoryName.MODEL).create(openUIClass, paramMap, null,OprtState.ADDNEW);
win.show();
Map resultMap = win.getUIObject().getUIContext();
return resultMap;
}
Map resultMap = Open_ReplyWin(paramMap);//
2. 증빙서류 인터페이스 호출
증빙 서류 도구 모음에 단추를 추가하고 단추를 누르면 다른 증빙 서류 인터페이스가 튀어나와 상응하는 조작을 할 수 있습니다 (기능이 증빙 서류 순서와 유사할 때 얇은 인터페이스가 추가, 수정됨)
public void openCarRent_Dialog(String tourCodeId) throws Exception{
UIContext uiContext = new UIContext(this);
// UI
uiContext.put("FROM", "OPEN");
String ui = "com.kingdee.eas.ors.bill.client.CarRentEditUI";
//
String oprtState = "";
String fid = getCarRentBillId(tourCodeId);
if(fid == null){// ,
oprtState = OprtState.ADDNEW;
uiContext.put("tourcodeid", tourCodeId);
}else{// ,
oprtState = OprtState.EDIT;
uiContext.put("ID", fid);// : FID( FID )
}
IUIWindow uiWindow = UIFactory.createUIFactory(UIFactoryName.MODEL).create(ui, uiContext, null, oprtState);//OprtState.ADDNEW
uiWindow.show();
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Application Development in WebOSDevelop applications in WebOS Recognize the abstract class Application The operating system accepts classes that impleme...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.