1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- /*
-
- 예방접종 실시대장(SMMNN01500_예방접종 실시대장.xrw - JScript )
- - Version :
- 1) : Ver.1.00.01
- */
- var xVaccinListPath = "/root/main/vaccininfo/vaccinlist";
- /**
- * @group :
- * @ver : 2007.07.25
- * @by : 최경용
- * @---------------------------------------------------
- * @type : function
- * @access : public
- * @desc : 초기화 작업을 합니다.
- * @param :
- * @param :
- * @return :
- * @---------------------------------------------------
- */
- function fInitialize(){
- model.setValue("/root/main/cond/fromdd", getCurrentDate().substr(0,6) + "01");
- model.setValue("/root/main/cond/todd", getCurrentDate());
- fGetVaccinList();
- }
- /**
- * @group :
- * @ver : 2007.09.07
- * @by : 최경용
- * @---------------------------------------------------
- * @type : function
- * @access : public
- * @desc : 예방접종 리스트 조회.
- * @param :
- * @param :
- * @return :
- * @---------------------------------------------------
- */
- function fGetVaccinList(){
- model.copyNode("/root/send/reqdata", "/root/main/cond");
- submit("TRMNN01501");
- }
|