コード例 #1
0
 private void CytologyUI_AccessionChanged(object sender, EventArgs e)
 {
     this.m_CytologyResultsWorkspace.TextBoxReportNoSearch.Text = this.m_CytologyUI.PanelSetOrderCytology.ReportNo;
     YellowstonePathology.Business.Document.CaseDocumentCollection caseDocumentCollection = new Business.Document.CaseDocumentCollection(this.m_CytologyUI.AccessionOrder, this.m_CytologyUI.PanelSetOrderCytology.ReportNo);
     this.m_DocumentViewer.ShowDocument(caseDocumentCollection.GetFirstRequisition());
     this.m_LabEventsControlTab.SetCurrentOrder(this.m_CytologyUI.AccessionOrder);
     this.m_CytologyResultsWorkspace.SelectAppropriatePanel();
 }
コード例 #2
0
ファイル: BillingPath.cs プロジェクト: waffle-iron/YPILIS
 private void PatientDetailPage_Back(object sender, EventArgs e)
 {
     YellowstonePathology.Business.Document.CaseDocumentCollection caseDocumentCollection = new Business.Document.CaseDocumentCollection(this.m_ReportSearchList.CurrentReportSearchItem.ReportNo);
     YellowstonePathology.Business.Document.CaseDocument           firstRequisition       = caseDocumentCollection.GetFirstRequisition();
     if (this.m_TifDocumentViewer != null)
     {
         this.m_TifDocumentViewer.Close();
     }
     if (this.m_BillingWindowPrimary.PageNavigator.HasDualMonitors() == false)
     {
         this.m_BillingWindowSecondary.Close();
     }
     if (firstRequisition != null)
     {
         this.BillingPage_ShowTIFDocument(this, new CustomEventArgs.FileNameReturnEventArgs(firstRequisition.FullFileName));
     }
 }
コード例 #3
0
 private void CytologyUI_AccessionChanged(object sender, EventArgs e)
 {
     this.m_CytologyResultsWorkspace.TextBoxReportNoSearch.Text = this.m_CytologyUI.PanelSetOrderCytology.ReportNo;
     YellowstonePathology.Business.Document.CaseDocumentCollection caseDocumentCollection = new Business.Document.CaseDocumentCollection(this.m_CytologyUI.AccessionOrder, this.m_CytologyUI.PanelSetOrderCytology.ReportNo);
     this.m_DocumentViewer.ShowDocument(caseDocumentCollection.GetFirstRequisition());
     this.m_LabEventsControlTab.SetCurrentOrder(this.m_CytologyUI.AccessionOrder);
     this.m_CytologyResultsWorkspace.SelectAppropriatePanel();
 }
コード例 #4
0
ファイル: BillingPath.cs プロジェクト: ericramses/YPILIS
 private void PatientDetailPage_Next(object sender, EventArgs e)
 {
     YellowstonePathology.Business.Document.CaseDocumentCollection caseDocumentCollection = new Business.Document.CaseDocumentCollection(this.m_ReportSearchList.CurrentReportSearchItem.ReportNo);
     YellowstonePathology.Business.Document.CaseDocument firstRequisition = caseDocumentCollection.GetFirstRequisition();
     if (this.m_TifDocumentViewer != null) this.m_TifDocumentViewer.Close();
     if (this.m_BillingWindowPrimary.PageNavigator.HasDualMonitors() == false)
     {
         this.m_BillingWindowSecondary.Close();
     }
     if (firstRequisition != null)
     {
         this.BillingPage_ShowTIFDocument(this, new CustomEventArgs.FileNameReturnEventArgs(firstRequisition.FullFileName));
     }
 }