Created
February 18, 2021 19:48
-
-
Save sampetrosov/2fc2a44de6274ce5c276ae889d5462ea to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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