-
Type: Dev Task
-
Status: Done (View Workflow)
-
Resolution: Done
-
Fix Version/s: None
-
Labels:None
-
Sprint:2021.R5 CloudLink Sprint 5
Reference the following code in the "Radiant" implementation (method: GetTransactionHeaderRecord):
else if (transactionHeader.event_id == (short)TransactionType.WasteSampling || transactionHeader.event_id == (short)TransactionType.RefundWasteSampling) { recordSubType = EnumUtils<HeaderRecordSubType>.GetClassName(HeaderRecordSubType.ProductEvent); switch (transactionHeader.subevent_id) { case 1: pLUCode = "WholeProductSampling"; break; case 3: pLUCode = "Sampling"; break; case 4: pLUCode = "DistributionSampling"; break; case 5: pLUCode = "Waste"; break; default: pLUCode = string.Format("Waste{0}", transactionHeader.subevent_id); break; } }