SMMNP20600.js 696 B

123456789101112131415161718192021222324252627282930313233
  1. /*
  2. 수술통계 - 마취대장
  3. - Version :
  4. 1) : Ver.1.00.01
  5. - Create : 2012.04.17 KJS
  6. */
  7. var ScreenMode = "";
  8. //화면초기화
  9. function fInitialize(){
  10. var currentdate = getCurrentDate();
  11. var sdate = currentdate.substr(0,6)+"01";
  12. var edate = currentdate;
  13. model.setValue("/root/cond/sdate", sdate);
  14. model.setValue("/root/cond/edate", edate);
  15. zbcfGetDeptCodeList(getUserInfo("dutplceinstcd"), "orduseyn", "D", "/root/init/orddept"); //부서코드 콤보조회
  16. addComboInstance("/root/init/orddept", "deptcd^depthngnm", "-^전체", "dept"); //부서콤보 전체추가
  17. model.refresh();
  18. }
  19. // 현황내역 가져오기
  20. function fSearch()
  21. {
  22. submit("TRMNP20601");
  23. model.refresh();
  24. }