コード例 #1
0
        public void Post88341(YellowstonePathology.Business.Billing.Model.BillingComponentEnum billingComponent, string billTo, string billBy)
        {
            YellowstonePathology.Business.Billing.Model.CptCodeDefinition.CPT88341 cpt88341 = new YellowstonePathology.Business.Billing.Model.CptCodeDefinition.CPT88341();
            int cpt88341Count = this.m_StainSpecimenCollection.GetBillable88341Count();

            if (cpt88341Count > 0)
            {
                string modifier = cpt88341.GetModifier(billingComponent);
                if (this.m_PanelSetOrder.PanelSetOrderCPTCodeBillCollection.Exists(cpt88341.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  = cpt88341.Code;
                    panelSetOrderCPTCodeBill.CodeType = cpt88341.CodeType.ToString();
                    panelSetOrderCPTCodeBill.Modifier = modifier;
                    panelSetOrderCPTCodeBill.Quantity = cpt88341Count;
                    this.m_PanelSetOrder.PanelSetOrderCPTCodeBillCollection.Add(panelSetOrderCPTCodeBill);
                }
            }
        }
コード例 #2
0
 public void Post88341(YellowstonePathology.Business.Billing.Model.BillingComponentEnum billingComponent, string billTo, string billBy)
 {
     YellowstonePathology.Business.Billing.Model.CptCodeDefinition.CPT88341 cpt88341 = new YellowstonePathology.Business.Billing.Model.CptCodeDefinition.CPT88341();
     int cpt88341Count = this.m_StainSpecimenCollection.GetBillable88341Count();
     if (cpt88341Count > 0)
     {
         string modifier = cpt88341.GetModifier(billingComponent);
         if (this.m_PanelSetOrder.PanelSetOrderCPTCodeBillCollection.Exists(cpt88341.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 = cpt88341.Code;
             panelSetOrderCPTCodeBill.CodeType = cpt88341.CodeType.ToString();
             panelSetOrderCPTCodeBill.Modifier = modifier;
             panelSetOrderCPTCodeBill.Quantity = cpt88341Count;
             this.m_PanelSetOrder.PanelSetOrderCPTCodeBillCollection.Add(panelSetOrderCPTCodeBill);
         }
     }
 }