Skip to content

Instantly share code, notes, and snippets.

@sampetrosov
Created February 18, 2021 19:48
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 sampetrosov/2fc2a44de6274ce5c276ae889d5462ea to your computer and use it in GitHub Desktop.
Save sampetrosov/2fc2a44de6274ce5c276ae889d5462ea to your computer and use it in GitHub Desktop.
using PX.Data;
using PX.Objects.FA;
namespace Acumatica_ChangeID
{
// Acuminator disable once PX1016 ExtensionDoesNotDeclareIsActiveMethod extension should be constantly active
public class AssetMaintExt : PXGraphExtension<AssetMaint>
{
public override void Initialize()
{
base.Initialize();
this.Base.action.AddMenuAction(ChangeID);
}
public PXChangeID<FixedAsset, FixedAsset.assetCD> ChangeID;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment