123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- <?xml version="1.0" encoding="utf-8"?>
- <FDL version="1.5">
- <TypeDefinition url="..\..\..\default_typedef.xml"/>
- <Form id="SMRPQ03300" position="absolute 0 0 707 797" titletext="평가안내문" oninit="SMRPQ03300_oninit" onload="SMRPQ03300_onload">
- <Layouts>
- <Layout>
- <Static id="caption6" text="평가안내문" class="tit_1" position="absolute 0 0 199 23"/>
- <Shape id="line2" class="line_10" position="absolute 0 46 700 52"/>
- <TextArea id="textarea1" taborder="1" position="absolute 0 51 700 791" autoselect="true" autoskip="true" wordwrap="word"/>
- <Button id="btn_save" taborder="2" text="저장" class="btn5" visible="false" position="absolute 658 27 700 46" onclick="btn_save_onclick"/>
- <Button id="btn_search" taborder="3" text="조회" class="btn5" visible="false" position="absolute 615 27 657 46" onclick="btn_search_onclick"/>
- </Layout>
- </Layouts>
- <Objects>
- <Dataset id="ds_main_evalnoticlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="noticedesc" type="STRING" size="256"/>
- <Column id="status" type="STRING" size="256"/>
- <Column id="instcd" type="STRING" size="256"/>
- </ColumnInfo>
- </Dataset>
- </Objects>
- <Bind>
- <BindItem id="item0" compid="textarea1" propid="value" datasetid="ds_main_evalnoticlist" columnid="noticedesc"/>
- </Bind>
- <Script type="xscript4.0"><![CDATA[/***************************************************************************************
- * System Name :
- * Job Name :
- * Creator :
- * Make Date : 2017-06-19
- * Description :
- *---------------------------------------------------------------------------------------
- * Modify Date Modifier Modify Description
- *---------------------------------------------------------------------------------------
- * 2017-06-19 Live Converter TF->XP
- *
- *---------------------------------------------------------------------------------------
- ****************************************************************************************/
- include "com_commonxp::comm_main.xjs";
- include "mis_miscommonxp::MIS.xjs";
- function SMRPQ03300_oninit(obj:Form, e:InitEventInfo)
- {
- frmf_initForm(obj);
- }
- function SMRPQ03300_onload(obj:Form, e:LoadEventInfo)
- {
- fInit();
- }
- function fInit()
- {
- misfGetUserAuth();
-
- if (DUTY_WKVL_YN == "Y")
- {
- btn_save.visible = true;
- }
- btn_search.click();
- }
- function btn_search_onclick(obj:Button, e:ClickEventInfo)
- {
- dsf_createDsRow("ds_send", [{col:"instcd", type:"STRING", size:256 , val : sysf_getUserInfo("dutplceinstcd")}]);
-
- var oParam = {};
- oParam.id = "TRRPQ03301";
- oParam.service = "knuhppeapp.DutyevalMngt";
- oParam.method = "reqGetEvalNoticList";
- oParam.inds = "req=ds_send";
- oParam.outds = "ds_main_evalnoticlist=evalnoticlist";
- oParam.async = false;
- oParam.callback = "cf_TRRPQ03301";
- tranf_submit(oParam);
- }
- function btn_save_onclick(obj:Button, e:ClickEventInfo)
- {
- var oParam = {};
- oParam.id = "TXRPQ03301";
- oParam.service = "knuhppeapp.DutyevalMngt";
- oParam.method = "reqExeEvalNoticList";
- oParam.inds = "req=ds_main_evalnoticlist";
- oParam.outds = "";
- oParam.async = false;
- oParam.callback = "cf_TXRPQ03301";
- tranf_submit(oParam);
- }
- function cf_TXRPQ03301(sSvcId, nErrorCode, sErrorMsg)
- {
- if(nErrorCode < 0)
- {
- return;
- }
- else
- {
- sysf_messageBox("정상적으로 처리되었습니다.", "E999", "");
- btn_search.click();
- }
- }]]></Script>
- </Form>
- </FDL>
|