Created
October 8, 2021 15:41
-
-
Save lekker-solutions/9218985815bc406eba0441e262fce21f 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
[PXProtectedAccess] | |
public abstract class GPSOOrderEntryExt : PXGraphExtension<SOOrderEntry> | |
{ | |
protected const string NotificationID = "FUTUREPO"; | |
public PXAction<SOOrder> ActionEmailSoToVendor; | |
[PXUIField(DisplayName = "Email SO To Vendor")] | |
[PXButton] | |
protected IEnumerable actionEmailSoToVendor(PXAdapter adapter) => Notification(adapter, NotificationID); | |
[PXProtectedAccess] | |
protected abstract IEnumerable Notification(PXAdapter adapter, [PXString] string notificationCD); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment