Hi,
How I can override or extend the GenerateLotSerial action in the Inventory Receipt page?
Thanks,
Ev
Hi,
How I can override or extend the GenerateLotSerial action in the Inventory Receipt page?
Thanks,
Ev
public class LSINTranCustom : LSINTran
{
public override IEnumerable GenerateLotSerial(PXAdapter adapter)
{
base.GenerateLotSerial(adapter);
}
}
And create a graph extension for INReceiptEntry overriding the lsselect view with your new custom class:
public class INReceiptEntryExt : PXGraphExtension<INReceiptEntry>
{
public LSINTranCustom lsselect;
}
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.