/// <summary> /// 编辑诊断信息 /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void btnDialogInfo_Click(object sender, EventArgs e) { try { DrectSoft.Common.DS_Common.SetWaitDialogCaption(waitDialogForm, "正在加载数据"); if (m_UCIemDiagnose == null) { m_UCIemDiagnose = new UCIemDiagnose(); } //add by cyq 2012-12-05 病案室人员编辑首页(状态改为归档) m_UCIemDiagnose.editFlag = editFlag; ShowUCForm.ShowUCIemDiagnose(m_UCIemDiagnose, info); ShowUCForm.Height = 670; ShowUCForm.StartPosition = FormStartPosition.CenterScreen; DrectSoft.Common.DS_Common.HideWaitDialog(waitDialogForm); if (ShowUCForm.ShowDialog() == DialogResult.OK) { info = ShowUCForm.m_info; } RefreshForm(); } catch (Exception ex) { DrectSoft.Common.DS_Common.HideWaitDialog(waitDialogForm); MyMessageBox.Show(1, ex); } }
/// <summary> /// 编辑诊断信息 /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void simpleButton3_Click(object sender, EventArgs e) { try { SetWaitDialogCaption("正在加载数据"); if (m_UCIemDiagnose == null) { m_UCIemDiagnose = new UCIemDiagnose(); } //add by cyq 2012-12-05 病案室人员编辑首页(状态改为归档) m_UCIemDiagnose.editFlag = IsShowBackRecord; ShowUCForm.ShowUCIemDiagnose(m_UCIemDiagnose, info); ShowUCForm.StartPosition = FormStartPosition.CenterScreen; HideWaitDialog(); if (ShowUCForm.ShowDialog() == DialogResult.OK) { info = ShowUCForm.m_info; } RefreshForm(); } catch (Exception ex) { //throw new Exception(ex.Message); MyMessageBox.Show(1, ex); } }
/// <summary> /// 编辑诊断信息 /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void simpleButton3_Click(object sender, EventArgs e) { try { //add by cyq 2013-03-04 if (CheckOutHosCardCheckPassed((int)CurrentInpatient.NoOfFirstPage)) { DrectSoft.Common.Ctrs.DLG.MyMessageBox.Show("该病人的出院卡片已在HIS系统中审核通过,不可以修改。"); return; } SetWaitDialogCaption("正在加载数据"); if (m_UCIemDiagnose == null) { m_UCIemDiagnose = new UCIemDiagnose(); } //add by cyq 2012-12-05 病案室人员编辑首页(状态改为归档) m_UCIemDiagnose.editFlag = IsShowBackRecord; ShowUCForm.ShowUCIemDiagnose(m_UCIemDiagnose, info); ShowUCForm.Height = 670; ShowUCForm.StartPosition = FormStartPosition.CenterScreen; HideWaitDialog(); if (ShowUCForm.ShowDialog() == DialogResult.OK) { info = ShowUCForm.m_info; } RefreshForm(); } catch (Exception ex) { DrectSoft.Common.Ctrs.DLG.MyMessageBox.Show(ex.Message); } }
/// <summary> /// 编辑诊断信息 /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void simpleButton3_Click(object sender, EventArgs e) { SetWaitDialogCaption("正在加载数据"); string emrSetting = BasicSettings.GetStringConfig("isCnMaiPage");//取得配置表中的配置信息 if (emrSetting == "1") { if (m_UCIemDiagnose == null) { m_UCIemDiagnose = new UCIemDiagnose(m_Host); } ShowUCForm.ShowUCIemDiagnose(m_UCIemDiagnose, info); } else { if (m_UCIemDiagnoseEn == null) { m_UCIemDiagnoseEn = new UCIemDiagnoseEn(m_Host); } ShowUCForm.ShowUCIemDiagnoseEn(m_UCIemDiagnoseEn, info); } ShowUCForm.StartPosition = FormStartPosition.CenterScreen; HideWaitDialog(); if (ShowUCForm.ShowDialog() == DialogResult.OK) { info = ShowUCForm.m_info; } RefreshForm(); }
/// <summary> /// 编辑诊断信息 /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void simpleButton3_Click(object sender, EventArgs e) { SetWaitDialogCaption("正在加载数据"); if (m_UCIemDiagnose == null) { m_UCIemDiagnose = new UCIemDiagnose(); } ShowUCForm.ShowUCIemDiagnose(m_UCIemDiagnose, info); ShowUCForm.StartPosition = FormStartPosition.CenterScreen; HideWaitDialog(); if (ShowUCForm.ShowDialog() == DialogResult.OK) { info = ShowUCForm.m_info; } RefreshForm(); }