Exemple #1
0
 private void ComboBoxProcessorRun_SelectionChanged(object sender, SelectionChangedEventArgs e)
 {
     if (this.ComboBoxProcessorRun.SelectedItem != null)
     {
         YellowstonePathology.Business.Surgical.ProcessorRun processorRun = (YellowstonePathology.Business.Surgical.ProcessorRun) this.ComboBoxProcessorRun.SelectedItem;
         this.m_SpecimenOrder.SetProcessor(processorRun);
     }
 }
Exemple #2
0
        public void SetProcessor(YellowstonePathology.Business.Surgical.ProcessorRun processorRun)
        {
            this.m_ProcessorRun          = processorRun.Name;
            this.m_ProcessorRunId        = processorRun.ProcessorRunId;
            this.m_ProcessorFixationTime = Convert.ToInt32(processorRun.FixationTime.TotalMinutes);
            this.m_ProcessorStartTime    = processorRun.GetProcessorStartTime(this.m_DateReceived);

            this.SetFixationEndTime();
            this.SetFixationDuration();
            this.NotifyPropertyChanged(string.Empty);
        }
Exemple #3
0
        private void HyperLinkReceivedInPreservCyte_Click(object sender, RoutedEventArgs e)
        {
            this.m_SpecimenOrder.ClientFixation = YellowstonePathology.Business.Specimen.Model.FixationType.PreservCyt;
            this.m_SpecimenOrder.LabFixation    = YellowstonePathology.Business.Specimen.Model.FixationType.PreservCyt;
            this.m_SpecimenOrder.SetFixationStartTime();
            this.m_SpecimenOrder.SetTimeToFixation();
            this.m_SpecimenOrder.SetFixationDuration();

            YellowstonePathology.Business.Surgical.NullProcessor nullProcessor = new Business.Surgical.NullProcessor();
            YellowstonePathology.Business.Surgical.ProcessorRun  processorRun  = nullProcessor.ProcessorRunCollection[0];
            this.m_SpecimenOrder.SetProcessor(processorRun);
        }
 private void ButtonSet_Click(object sender, RoutedEventArgs e)
 {
     if (ListBoxProcessorRun.SelectedItem != null)
     {
         YellowstonePathology.Business.Surgical.ProcessorRun processorRun = (YellowstonePathology.Business.Surgical.ProcessorRun) this.ListBoxProcessorRun.SelectedItem;
         foreach (YellowstonePathology.Business.Specimen.Model.SpecimenOrder specimenOrder in this.ListViewSpecimen.SelectedItems)
         {
             specimenOrder.SetFixationStartTime();
             specimenOrder.SetTimeToFixation();
             specimenOrder.SetFixationEndTime();
             specimenOrder.SetFixationDuration();
         }
     }
 }
Exemple #5
0
        public FixationUpdate(YellowstonePathology.Business.Specimen.Model.SpecimenOrder specimenOrder, YellowstonePathology.Business.Surgical.ProcessorRunCollection processorRunCollection)
        {
            this.m_ClientAccessioned     = specimenOrder.ClientAccessioned;
            this.m_TimeSpecimenCollected = specimenOrder.CollectionTime;
            this.m_DateSpecimenCollected = specimenOrder.CollectionDate;
            this.m_TimeSpecimenReceived  = specimenOrder.DateReceived;
            this.m_ReceivedIn            = specimenOrder.ClientFixation;
            //this.m_TimeToFixation = specimenOrder.TimeToFixation;
            //this.m_FixationDuration = specimenOrder.FixationDuration;
            this.m_SpecimenAccessioningAssumption = true;

            if (string.IsNullOrEmpty(specimenOrder.ProcessorRunId) == false)
            {
                this.m_ProcessorRun = processorRunCollection.Get(specimenOrder.ProcessorRunId);
            }
        }
        public FixationUpdate(YellowstonePathology.Business.Specimen.Model.SpecimenOrder specimenOrder, YellowstonePathology.Business.Surgical.ProcessorRunCollection processorRunCollection)
        {
            this.m_ClientAccessioned = specimenOrder.ClientAccessioned;
            this.m_TimeSpecimenCollected = specimenOrder.CollectionTime;
            this.m_DateSpecimenCollected = specimenOrder.CollectionDate;
            this.m_TimeSpecimenReceived = specimenOrder.DateReceived;
            this.m_ReceivedIn = specimenOrder.ClientFixation;
            //this.m_TimeToFixation = specimenOrder.TimeToFixation;
            //this.m_FixationDuration = specimenOrder.FixationDuration;
            this.m_SpecimenAccessioningAssumption = true;

            if (string.IsNullOrEmpty(specimenOrder.ProcessorRunId) == false)
            {
                this.m_ProcessorRun = processorRunCollection.Get(specimenOrder.ProcessorRunId);
            }
        }
Exemple #7
0
        public ProcessorRun Get(YellowstonePathology.Business.User.UserPreference userPreference)
        {
            YellowstonePathology.Business.Surgical.ProcessorRunCollection processorRunCollection = YellowstonePathology.Business.Surgical.ProcessorRunCollection.GetAll(true);
            YellowstonePathology.Business.Surgical.ProcessorRun           result = null;

            switch (DateTime.Today.DayOfWeek)
            {
            case DayOfWeek.Monday:
            case DayOfWeek.Tuesday:
            case DayOfWeek.Wednesday:
            case DayOfWeek.Thursday:
                result = processorRunCollection.Get(YellowstonePathology.Business.User.UserPreferenceInstance.Instance.UserPreference.WeekdayProcessorRunId);
                break;

            case DayOfWeek.Friday:
            case DayOfWeek.Saturday:
            case DayOfWeek.Sunday:
                result = processorRunCollection.Get(YellowstonePathology.Business.User.UserPreferenceInstance.Instance.UserPreference.WeekendProcessorRunId);
                break;
            }

            return(result);
        }
Exemple #8
0
        private void ScanContainerPage_UseThisContainer(object sender, string containerId)
        {
            string masterAccessionNo = YellowstonePathology.Business.Gateway.AccessionOrderGateway.GetMasterAccessionNoFromContainerId(containerId);

            if (string.IsNullOrEmpty(masterAccessionNo) == false)
            {
                this.m_AccessionOrder = YellowstonePathology.Business.Persistence.DocumentGateway.Instance.PullAccessionOrder(masterAccessionNo, m_HistologyGrossDialog);

                if (this.m_AccessionOrder == null)
                {
                    System.Windows.MessageBox.Show("The scanned container was not found.");
                    this.ShowScanContainerPage();
                }
                else
                {
                    if (this.m_AccessionOrder.IsLockAquiredByMe == true)
                    {
                        YellowstonePathology.Business.Specimen.Model.SpecimenOrder specimenOrder = this.m_AccessionOrder.SpecimenOrderCollection.GetSpecimenOrderByContainerId(containerId);
                        this.AddMaterialTrackingLog(specimenOrder);

                        if (this.m_HistologyGrossDialog.PageNavigator.HasDualMonitors() == true)
                        {
                            DictationTemplatePage dictationTemplatePage = new DictationTemplatePage(specimenOrder, this.m_AccessionOrder, this.m_SystemIdentity);
                            this.m_SecondaryWindow.PageNavigator.Navigate(dictationTemplatePage);
                        }

                        if (string.IsNullOrEmpty(specimenOrder.ProcessorRunId) == true)
                        {
                            YellowstonePathology.Business.Surgical.ProcessorRunCollection processorRunCollection = YellowstonePathology.Business.Surgical.ProcessorRunCollection.GetAll(false);
                            YellowstonePathology.Business.Surgical.ProcessorRun           processorRun           = processorRunCollection.Get(YellowstonePathology.Business.User.UserPreferenceInstance.Instance.UserPreference);
                            specimenOrder.SetProcessor(processorRun);
                            specimenOrder.SetFixationDuration();
                        }

                        if (this.m_AccessionOrder.PrintMateColumnNumber == 0 && this.m_AccessionOrder.PanelSetOrderCollection.HasTestBeenOrdered(48) == false)
                        {
                            this.ShowBlockColorSelectionPage(specimenOrder);
                        }
                        else
                        {
                            this.ShowPrintBlockPage(specimenOrder);
                        }
                    }
                    else
                    {
                        this.ShowCaseLockPage();
                    }
                }
            }
            else
            {
                System.Windows.MessageBox.Show("The scanned container was not found.");
                this.ShowScanContainerPage();
            }
        }