Hello everybody,
today I want to share with you on how to override Action CreatePrepayment in Acumatica.
General rule of overriding methods in Acumatica according to T300 manual is like this:
- Create delegate.
- Add [PXOverride] over your method which is named exactly as base method ( in our case CreatePrepayment )
- Add your implementation
For example you can achieve it like this:
//Create your delegate
public delegate void CreatePrepaymentDelegate();
[PXOverride]
public void CreatePrepayment(CreatePrepaymentDelegate baseDel)
{
// your code of overriding
}
Way from manual T300 is perfectly workable, but I propose you to use feature of .Net which is named Action, which is declared very much exactly as mentioned delegate.
Then your code for overriding will look pretty much the same, you'll just need use Action and omit delegate declaration:
[PXOverride]
public void CreatePrepayment1(Action baseDel)
{
// your code of overriding
}
with such simple trick you can save a bit of time on typing.