1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- /*
- - ▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩
- 처방조회 ( SMMMO00300_처방조회.xrw - JScript )
- - ▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩
- */
- /**
- * @desc : 처방조회 초기화
- * @
- * @param :
- * @return :
- * @author : 오지훈
- * @---------------------------------------------------
- */
- function fInitialize_SMMMO00300(){
- model.setValue("/root/main/cond/fromdd", getCurrentDate());
- model.setValue("/root/main/cond/todd" , getCurrentDate());
-
- grd_patprcphistlist.mergeCells = "bycol";
- grd_patprcphistlist.mergeCol(grd_patprcphistlist.colRef("prcpdt")) = true;
- grd_patprcphistlist.mergeCol(grd_patprcphistlist.colRef("prcpkindnm")) = true;
- grd_patprcphistlist.mergeCol(grd_patprcphistlist.colRef("prcpinfo")) = false;
- grd_patprcphistlist.mergeCol(grd_patprcphistlist.colRef("prcpdetlinfo")) = false;
-
- model.removeNodeset("/root/main/patprcphistlist/patprcphistlist");
- model.refresh();
- }
- /**
- * @desc : 환자처방이력 조회
- * @
- * @param :
- * @return :
- * @author : 오지훈
- * @---------------------------------------------------
- */
- function fReqPatPrcpHistList(){
- model.removeNodeset("/root/send/reqdata");
- model.makeNode("/root/send/reqdata");
- model.copyNode("/root/send/reqdata", "/root/main/cond");
- submit("TRMMO00301");
- }
|