Exemplo n.º 1
0
        public void Post88360(YellowstonePathology.Business.Billing.Model.BillingComponentEnum billingComponent, string billTo, string billBy)
        {
            YellowstonePathology.Business.Billing.Model.CptCodeDefinition.CPT88360 cpt88360 = new YellowstonePathology.Business.Billing.Model.CptCodeDefinition.CPT88360();
            int cpt88360Count = this.m_StainSpecimenCollection.GetBillable88360Count();

            if (cpt88360Count > 0)
            {
                string modifier = cpt88360.GetModifier(billingComponent);
                if (this.m_PanelSetOrder.PanelSetOrderCPTCodeBillCollection.Exists(cpt88360.Code, modifier) == false)
                {
                    YellowstonePathology.Business.Test.PanelSetOrderCPTCodeBill panelSetOrderCPTCodeBill = this.m_PanelSetOrder.PanelSetOrderCPTCodeBillCollection.GetNextItem(this.m_PanelSetOrder.ReportNo);
                    panelSetOrderCPTCodeBill.ClientId = this.m_AccessionOrder.ClientId;
                    panelSetOrderCPTCodeBill.BillTo   = billTo;
                    panelSetOrderCPTCodeBill.BillBy   = billBy;
                    panelSetOrderCPTCodeBill.CPTCode  = cpt88360.Code;
                    panelSetOrderCPTCodeBill.CodeType = cpt88360.CodeType.ToString();
                    panelSetOrderCPTCodeBill.Modifier = modifier;
                    panelSetOrderCPTCodeBill.Quantity = cpt88360Count;
                    this.m_PanelSetOrder.PanelSetOrderCPTCodeBillCollection.Add(panelSetOrderCPTCodeBill);
                }
            }
        }
Exemplo n.º 2
0
 public void Post88360(YellowstonePathology.Business.Billing.Model.BillingComponentEnum billingComponent, string billTo, string billBy)
 {
     YellowstonePathology.Business.Billing.Model.CptCodeDefinition.CPT88360 cpt88360 = new YellowstonePathology.Business.Billing.Model.CptCodeDefinition.CPT88360();
     int cpt88360Count = this.m_StainSpecimenCollection.GetBillable88360Count();
     if (cpt88360Count > 0)
     {
         string modifier = cpt88360.GetModifier(billingComponent);
         if (this.m_PanelSetOrder.PanelSetOrderCPTCodeBillCollection.Exists(cpt88360.Code, modifier) == false)
         {
             YellowstonePathology.Business.Test.PanelSetOrderCPTCodeBill panelSetOrderCPTCodeBill = this.m_PanelSetOrder.PanelSetOrderCPTCodeBillCollection.GetNextItem(this.m_PanelSetOrder.ReportNo);
             panelSetOrderCPTCodeBill.ClientId = this.m_AccessionOrder.ClientId;
             panelSetOrderCPTCodeBill.BillTo = billTo;
             panelSetOrderCPTCodeBill.BillBy = billBy;
             panelSetOrderCPTCodeBill.CPTCode = cpt88360.Code;
             panelSetOrderCPTCodeBill.CodeType = cpt88360.CodeType.ToString();
             panelSetOrderCPTCodeBill.Modifier = modifier;
             panelSetOrderCPTCodeBill.Quantity = cpt88360Count;
             this.m_PanelSetOrder.PanelSetOrderCPTCodeBillCollection.Add(panelSetOrderCPTCodeBill);
         }
     }
 }