Created
May 17, 2022 03:46
-
-
Save tocohara/e74897a1c42ff9c630946f4eb9efb0e4 to your computer and use it in GitHub Desktop.
Exploring the Sales Order Processing Functions - 4
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
protected virtual void _SetProcessTargetInternal(string graphType, string stepID, string action, string menu, IEnumerable parameters) | |
{ | |
if (TryWithExternal(delegate(PXProcessingBase<Table> e) | |
{ | |
e._SetProcessTargetInternal(graphType, stepID, action, menu, parameters); | |
})) | |
{ | |
return; | |
} | |
if (menu != null && menu.Contains("$")) | |
{ | |
string[] splitted = menu.Split('$'); | |
menu = splitted[0]; | |
stepID = splitted[1]; | |
_StepsFromRow = new HashSet<string>(splitted.Skip(1), StringComparer.OrdinalIgnoreCase); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment