Hello,
I am trying to add a scan mode to the Receive and Put Away screen. I've tried the guides on the help site but can't seem to get the mode redirect to work. https://help-2022r2.acumatica.com/(W(6))/Help?ScreenId=ShowWiki&pageid=365ee72f-d2f0-42fb-bdbb-315158ee5693
Here is the code i have so far:
using System;
using System.Linq;
using System.Collections;
using System.Collections.Generic;
using PX.Common;
using PX.Data;
using PX.Data.BQL;
using PX.Data.BQL.Fluent;
using PX.BarcodeProcessing;
using PX.Objects.Common;
using PX.Objects.IN;
using PX.Objects.IN.WMS;
using PX.Objects.PO.WMS;
namespace CWDasign
{
using WMSBase = WarehouseManagementSystem<ReceivePutAway, ReceivePutAway.Host>;
public class PrintLabelsExt : ReceivePutAway.ScanExtension
{
public static bool IsActive() => true;
[PXOverride]
public virtual IEnumerable<ScanMode<ReceivePutAway>> CreateScanModes(Func<IEnumerable<ScanMode<ReceivePutAway>>> base_CreateScanModes)
{
foreach (var mode in base_CreateScanModes())
yield return mode;
yield return new PrintLabelsMode();
}
[PXOverride]
public virtual ScanMode<ReceivePutAway> DecorateScanMode(
ScanMode<ReceivePutAway> original,
Func<ScanMode<ReceivePutAway>, ScanMode<ReceivePutAway>> base_DecorateScanMode)
{
var mode = base_DecorateScanMode(original);
if (mode is PrintLabelsMode countMode)
{
countMode
.Intercept.CreateRedirects.ByAppend(() => AllWMSRedirects.CreateFor<ReceivePutAway>());
}
return mode;
}
public sealed class PrintLabelsMode : ReceivePutAway.ScanMode
{
public const string Value = "PRTLBL";
public class value : BqlString.Constant<value> { public value() : base(PrintLabelsMode.Value) { } }
public override string Code => Value;
public override string Description => Msg.Description;
protected override IEnumerable<ScanState<ReceivePutAway>> CreateStates()
{
yield return new ReceivePutAway.ReceiveMode.ReceiptState();
yield return new WMSBase.InventoryItemState() { AlternateType = INPrimaryAlternateType.CPN };
//yield return new ConfirmState();
}
protected override IEnumerable<ScanTransition<ReceivePutAway>> CreateTransitions()
{
return StateFlow(flow => flow
.From<ReceivePutAway.ReceiveMode.ReceiptState>()
.NextTo<ReceivePutAway.InventoryItemState>());
}
protected override IEnumerable<ScanRedirect<ReceivePutAway>> CreateRedirects() => AllWMSRedirects.CreateFor<ReceivePutAway>();
protected override void ResetMode(bool fullReset)
{
base.ResetMode(fullReset);
}
#region Redirect
public new sealed class RedirectFrom<TForeignBasis> : WMSBase.RedirectFrom<TForeignBasis>.SetMode<PrintLabelsMode>
where TForeignBasis : PXGraphExtension, IBarcodeDrivenStateMachine
{
public override string Code => "PRTLBL";
public override string DisplayName => Msg.DisplayName;
private string RefNbr { get; set; }
public override bool IsPossible => true;
#region Messages
[PXLocalizable]
public abstract class Msg
{
public const string DisplayName = "Print Label";
}
#endregion
}
#endregion
#region Messages
[PXLocalizable]
new public abstract class Msg
{
public const string Description = "Print Labels";
}
#endregion
}
#region Redirect
public sealed class RedirectFrom<TForeignBasis> : WMSBase.RedirectFrom<TForeignBasis>.SetMode<PrintLabelsMode>
where TForeignBasis : PXGraphExtension, IBarcodeDrivenStateMachine
{
public override string Code => "PRTLBL";
public override string DisplayName => Msg.DisplayName;
public override bool IsPossible => true;
#region Messages
[PXLocalizable]
public abstract class Msg
{
public const string DisplayName = "Print Label";
}
#endregion
}
#endregion
}
}
Does anyone have some example code for adding scan modes