public override void PostTechnical(string billTo, string billBy) { base.PostManualEntriesTechnical(billTo, billBy); BillableObjectStains billableObjectStains = new BillableObjectStains(this.m_AccessionOrder, this.m_PanelSetOrder.ReportNo); billableObjectStains.PostTechnical(billTo, billBy); }
public override void PostTechnical(string billTo, string billBy) { if (billTo == "Client") { this.Post88305(YellowstonePathology.Business.Billing.Model.BillingComponentEnum.Technical, billTo, billBy); } else { this.PostG0416(YellowstonePathology.Business.Billing.Model.BillingComponentEnum.Technical, billTo, billBy); } BillableObjectStains billableObjectStains = new BillableObjectStains(this.m_AccessionOrder, this.m_PanelSetOrder.ReportNo); billableObjectStains.PostTechnical(billTo, billBy); }
public override void PostTechnical(string billTo, string billBy) { int blockCount = this.m_AccessionOrder.SpecimenOrderCollection.GetBlockCount(); YellowstonePathology.Business.Billing.Model.CptCodeDefinition.AutopsyBlock autopsyBlock = new Business.Billing.Model.CptCodeDefinition.AutopsyBlock(); foreach (YellowstonePathology.Business.Test.PanelSetOrderCPTCode panelSetOrderCPTCode in this.m_PanelSetOrder.PanelSetOrderCPTCodeCollection) { if(panelSetOrderCPTCode.CPTCode == autopsyBlock.Code) { YellowstonePathology.Business.Test.PanelSetOrderCPTCodeBill item = this.m_PanelSetOrder.PanelSetOrderCPTCodeBillCollection.GetNextItem(this.m_PanelSetOrder.ReportNo); item.FromPanelSetOrderCPTCode(panelSetOrderCPTCode); item.BillTo = billTo; item.BillBy = billBy; item.Quantity = blockCount; item.Modifier = autopsyBlock.Modifier; this.m_PanelSetOrder.PanelSetOrderCPTCodeBillCollection.Add(item); } } BillableObjectStains billableObjectStains = new BillableObjectStains(this.m_AccessionOrder, this.m_PanelSetOrder.ReportNo); billableObjectStains.PostTechnical(billTo, billBy); this.m_PanelSetOrder.TechnicalComponentBillingFacilityId = "YPIBLGS"; }
public override void PostTechnical(string billTo, string billBy) { int blockCount = this.m_AccessionOrder.SpecimenOrderCollection.GetBlockCount(); int billedCount = this.m_PanelSetOrder.PanelSetOrderCPTCodeBillCollection.GetBilledCount("AUTOPSYBLOCK", "TC"); YellowstonePathology.Business.Billing.Model.CptCode autopsyBlock = Store.AppDataStore.Instance.CPTCodeCollection.GetClone("AUTOPSYBLOCK", null); if (billedCount < blockCount) { YellowstonePathology.Business.Test.PanelSetOrderCPTCodeBill item = this.m_PanelSetOrder.PanelSetOrderCPTCodeBillCollection.GetNextItem(this.m_PanelSetOrder.ReportNo); item.FromPanelSetOrderCPTCode(this.m_PanelSetOrder.PanelSetOrderCPTCodeCollection[0]); item.BillTo = billTo; item.BillBy = billBy; item.Quantity = blockCount - billedCount; item.Modifier = "TC"; this.m_PanelSetOrder.PanelSetOrderCPTCodeBillCollection.Add(item); } BillableObjectStains billableObjectStains = new BillableObjectStains(this.m_AccessionOrder, this.m_PanelSetOrder.ReportNo); billableObjectStains.PostTechnical(billTo, billBy); this.m_PanelSetOrder.TechnicalComponentBillingFacilityId = "YPIBLGS"; }
public override void PostTechnical(string billTo, string billBy) { BillableObjectStains billableObjectStains = new BillableObjectStains(this.m_AccessionOrder, this.m_PanelSetOrder.ReportNo); billableObjectStains.PostTechnical(billTo, billBy); }