SMPIS01700.xjs 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Script type="xscript4.0"><![CDATA[function pidfGetClamdg(clamymfrom, clamtoym, ioflag, insukind, ds_init_clamdg)
  3. {
  4. // if(clamymfrom > clamtoym)
  5. // {
  6. // sysf_messageBox("종료일은 시작일보다 클 수 ", "I004");
  7. // }
  8. // else
  9. // {
  10. dsf_createDsRow("ds_init", [{col:"clamym", type:"STRING", size:256 , val : clamymfrom}
  11. , {col:"clamtoym", type:"STRING", size:256 , val : clamtoym}
  12. , {col:"ioflag", type:"STRING", size:256 , val : ioflag}
  13. , {col:"insukind", type:"STRING", size:256 , val : insukind}]);
  14. dsf_createDsRow(ds_init_clamdg, [{col:"clamdgnm", type:"STRING", size:256 , val : ""}
  15. , {col:"clamdgcd", type:"STRING", size:256 , val : ""}]);
  16. var oParam = {};
  17. oParam.id = "TRPID20407";
  18. oParam.service = "aftjudgapp.InAftJudgTrgtMan";
  19. oParam.method = "reqGetClamdg";
  20. oParam.inds = "req=ds_init";
  21. oParam.outds = ds_init_clamdg+"=clamdg";
  22. oParam.async = false;
  23. //oParam.callback = "cf_TRPID20407";
  24. tranf_submit(oParam);
  25. // }
  26. }
  27. ]]></Script>