public virtual void openDocument() { ContractPostBatchDetail fsContractPostDocRow = ContractPostDocRecords.Current; if (fsContractPostDocRow == null) { return; } if (fsContractPostDocRow.PostedTO == ID.Batch_PostTo.SO) { if (PXAccess.FeatureInstalled <FeaturesSet.distributionModule>()) { SOOrderEntry graphSOOrderEntry = PXGraph.CreateInstance <SOOrderEntry>(); graphSOOrderEntry.Document.Current = graphSOOrderEntry.Document.Search <SOOrder.orderNbr>(fsContractPostDocRow.PostRefNbr, fsContractPostDocRow.PostDocType); throw new PXRedirectRequiredException(graphSOOrderEntry, null) { Mode = PXBaseRedirectException.WindowMode.NewWindow }; } } else if (fsContractPostDocRow.PostedTO == ID.Batch_PostTo.AR) { ARInvoiceEntry graphARInvoiceEntry = PXGraph.CreateInstance <ARInvoiceEntry>(); graphARInvoiceEntry.Document.Current = graphARInvoiceEntry.Document.Search <ARInvoice.refNbr>(fsContractPostDocRow.PostRefNbr, fsContractPostDocRow.PostDocType); throw new PXRedirectRequiredException(graphARInvoiceEntry, null) { Mode = PXBaseRedirectException.WindowMode.NewWindow }; } }
public virtual void openContract() { ContractPostBatchDetail fsContractPostDocRow = ContractPostDocRecords.Current; if (fsContractPostDocRow == null) { return; } FSServiceContract fsServiceContractRow = PXSelect <FSServiceContract, Where < FSServiceContract.serviceContractID, Equal <Required <FSServiceContract.serviceContractID> > > > .Select(this, fsContractPostDocRow.ServiceContractID); if (fsServiceContractRow == null) { return; } if (fsServiceContractRow.RecordType == ID.RecordType_ServiceContract.SERVICE_CONTRACT) { ServiceContractEntry graphServiceContractEntry = PXGraph.CreateInstance <ServiceContractEntry>(); graphServiceContractEntry.ServiceContractRecords.Current = graphServiceContractEntry.ServiceContractRecords.Search <FSServiceContract.serviceContractID>(fsServiceContractRow.ServiceContractID, fsServiceContractRow.CustomerID); throw new PXRedirectRequiredException(graphServiceContractEntry, null) { Mode = PXBaseRedirectException.WindowMode.NewWindow }; } else { RouteServiceContractEntry graphRouteServiceContractEntry = PXGraph.CreateInstance <RouteServiceContractEntry>(); graphRouteServiceContractEntry.ServiceContractRecords.Current = graphRouteServiceContractEntry.ServiceContractRecords.Search <FSServiceContract.serviceContractID>(fsServiceContractRow.ServiceContractID, fsServiceContractRow.CustomerID); throw new PXRedirectRequiredException(graphRouteServiceContractEntry, null) { Mode = PXBaseRedirectException.WindowMode.NewWindow }; } }