SMMNN01500.js 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /*
  2. 예방접종 실시대장(SMMNN01500_예방접종 실시대장.xrw - JScript )
  3. - Version :
  4. 1) : Ver.1.00.01
  5. */
  6. var xVaccinListPath = "/root/main/vaccininfo/vaccinlist";
  7. /**
  8. * @group :
  9. * @ver : 2007.07.25
  10. * @by : 최경용
  11. * @---------------------------------------------------
  12. * @type : function
  13. * @access : public
  14. * @desc : 초기화 작업을 합니다.
  15. * @param :
  16. * @param :
  17. * @return :
  18. * @---------------------------------------------------
  19. */
  20. function fInitialize(){
  21. model.setValue("/root/main/cond/fromdd", getCurrentDate().substr(0,6) + "01");
  22. model.setValue("/root/main/cond/todd", getCurrentDate());
  23. fGetVaccinList();
  24. }
  25. /**
  26. * @group :
  27. * @ver : 2007.09.07
  28. * @by : 최경용
  29. * @---------------------------------------------------
  30. * @type : function
  31. * @access : public
  32. * @desc : 예방접종 리스트 조회.
  33. * @param :
  34. * @param :
  35. * @return :
  36. * @---------------------------------------------------
  37. */
  38. function fGetVaccinList(){
  39. model.copyNode("/root/send/reqdata", "/root/main/cond");
  40. submit("TRMNN01501");
  41. }