123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- /*
-
- 주사실 기타 처치등록 관리(SMMNI00700.xfm - JScript )
- - Version :
- 1) : Ver.1.00.01
- */
- /**
- * @group :
- * @ver : 2007.06.11
- * @by : 신혁춘
- * @---------------------------------------------------
- * @type : function
- * @access : public
- * @desc : 검색조건에 따른 이름 검색 리스트 검색.
- * @param :
- * @return :
- * @---------------------------------------------------
- */
- function fPatInfoList(){
- model.removeNodeset("/root/send");
- var pid = ipt_pid.value;
- var hngnm = ipt_hngnm.value;
- var brthdd = ipt_brthdd.value;
- var mpphontel = ipt_mpphontel.value;
- if(pid==""){
- pid = "0";
- }
- if(hngnm.length<2){
- if(hngnm.length==0){
- }else{
- messageBox("최소2자 이상", "C001");
- return;
- }
- }
- if(brthdd.length<6){
- if(brthdd.length==0){
- }else{
- messageBox("최소6자 이상", "C001");
- return;
- }
- }
- if(mpphontel.length<6){
- if(mpphontel.length==0){
- }else{
- messageBox("최소6자 이상", "C001");
- return;
- }
- }
- if(mpphontel.length==0 && brthdd.length==0 && hngnm.length==0 && pid == "0"){
- return;
- }
- model.makeValue("/root/send/pid",pid);
- model.makeValue("/root/send/hngnm",hngnm);
- model.makeValue("/root/send/brthdd",brthdd);
- model.makeValue("/root/send/mpphontel",mpphontel);
-
- if(submit("TRMNI00701")){
- }
- }
|