12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- /**
- * @desc : 초기화
- * @
- * @param :
- * @return :
- * @---------------------------------------------------
- */
- function fInitialize(){
-
- model.setValue("/root/send/fromdd", getCurrentDate());
-
- model.setValue("/root/send/instcd", getUserInfo("dutplceinstcd"));
- model.refresh();
- }
- function fCnfmBtn(){
-
- if (submit("TXMMR03600") == true){
- alert("아파치 배치가 성공하였습니다. ");
- }
- else {
- alert("아파치 배치가 실패하였습니다. 담당자에게 문의 바랍니다. ");
- }
-
-
- }
- /**
- * @desc : Close
- * @
- * @param :
- * @return :
- * @---------------------------------------------------
- */
- function fClose(){
-
- model.close();
- }
|