1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- /**
- * @desc : 초기화
- * @
- * @param :
- * @return :
- * @---------------------------------------------------
- */
- function fInitialize(){
-
- model.setValue("/root/main/cond/fromdd", getCurrentDate());
-
- model.setValue("/root/main/cond/instcd", getUserInfo("dutplceinstcd"));
- model.refresh();
- }
- /**
- * @desc : 미비 확인
- * @
- * @param :
- * @return :
- * @---------------------------------------------------
- */
- function fCnfmBtn(){
-
- var sPid = model.getValue("/root/main/cond/pid");
- if(isNull(sPid)) {
- messageBox("등록번호가", "I004");
- return;
- }
-
- if (submit("TXMRI03701") == true){
- alert("미비 배치가 성공하였습니다. ");
- }
- else {
- alert("미비 배치가 실패하였습니다. 담당자에게 문의 바랍니다. ");
- }
-
-
- }
- /**
- * @desc : Close
- * @
- * @param :
- * @return :
- * @---------------------------------------------------
- */
- function fClose(){
-
- model.close();
- }
|