/// [설계자]
/// 클립소프트 연구소 홍지철 (jchong@clipsoft.co.kr)
/// [원본 작성자]
/// 클립소프트 기술부 4팀 이창훈 (chlee@clipsoft.co.kr)
/// [수정 작성자]
/// 클립소프트 기술부 이인희
/// ----------------------------------------------------------------------------------------
/// [HISTORY]
/// 2015-07-30 : 최초작성
/// ----------------------------------------------------------------------------------------
///
public partial class ConsentSelectTabConsentSearch : UserControl {
private ConsentSvcRef.ConsentSvcSoapClient consentWebService = null;
private HospitalSvcRef.HospitalSvcSoapClient hospitalWebService = null;
private IConsentMain consentMain = null;
private ConsentCommandCtrl commandControl = null;
Timer grdClickTimer = new Timer();
public ConsentSelectTabConsentSearch() {
InitializeComponent();
grdClickTimer.Interval = 500;
grdClickTimer.Tag = "stop";
grdClickTimer.Tick += grdTimer_Tick;
}
private void ConsentSelectTabConsentSearch_Load(object sender, EventArgs e) {
if (this.DesignMode || LicenseManager.UsageMode == LicenseUsageMode.Designtime) {
return;
}
consentMain = ConsentMainControl.GetConsentMainInterface(this);
commandControl = consentMain.ConsentCommandCtrl as ConsentCommandCtrl;
consentWebService = WebMethodCommon.GetConsentWebService(consentMain.PluginExecuteInfo["consentSvcUrl"]);
hospitalWebService = WebMethodCommon.GetHospitalWebService(consentMain.PluginExecuteInfo["hospitalSvcUrl"]);
InitComboBoxConsentType();
// 동의서 찾기에서 기본 카테고리를 해당 기관으로 기본적으로 설정되게끔 변경
//comboBoxConsentType.SelectedValue = string.Format("EMA_{0}", consentMain.ConsentExecuteInfo["dutinstcd"]);
InitDataGrid();
}
///