123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- /**
- * @desc : 초기화
- * @
- * @param :
- * @return :
- * @---------------------------------------------------
- */
- function fInitialize(){
-
- var fromdd = getCurrentDate().substr(0,6)+"0101";
- var todd = getCurrentDate();
-
- model.setValue("/root/main/cond/fromdd", fromdd);
- model.setValue("/root/main/cond/todd", todd);
- model.setValue("/root/main/cond/recflag", "F");
- model.setValue("/root/main/cond/instcd", getUserInfo("dutplceinstcd"));
-
-
-
- model.refresh();
- }
- /**
- * @desc : 미비 확인
- * @
- * @param :
- * @return :
- * @---------------------------------------------------
- */
- function fCnfmBtn(){
-
-
- var fromdd = model.getValue("/root/main/cond/fromdd");
- var todd = model.getValue("/root/main/cond/todd");
-
- if( getDateInterval(fromdd, todd) > 31 ){
- messageBox("배치 최대 기간은 1달입니다. 일자구분에서 날짜를 수정하세요!", "E999", "");
- return false;
- }
-
- if (submit("TXMRH00101") == true){
- alert("미비 배치가 성공하였습니다. ");
- }
- else {
- alert("미비 배치가 실패하였습니다. 담당자에게 문의 바랍니다. ");
- }
-
- }
- /**
- * @desc : Close
- * @
- * @param :
- * @return :
- * @---------------------------------------------------
- */
- function fClose(){
-
- model.close();
- }
|