Skip to content

Instantly share code, notes, and snippets.

@jvanhoesen
Created November 23, 2020 20:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jvanhoesen/b3f688911bfd0375ed1dd8bd8b147884 to your computer and use it in GitHub Desktop.
Save jvanhoesen/b3f688911bfd0375ed1dd8bd8b147884 to your computer and use it in GitHub Desktop.
Extension of Acumatica approval map maintenance graph
public class AAEPApprovalMapMaintExtension : PXGraphExtension<EPApprovalMapMaint>
{
#region Overrides
public delegate IEnumerable<string> GetEntityTypeScreensDel();
[PXOverride]
public virtual IEnumerable<string> GetEntityTypeScreens(GetEntityTypeScreensDel del)
{
foreach (string s in del())
{
yield return s;
}
yield return "AA301060";
}
#endregion
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment