Created
May 17, 2022 03:36
-
-
Save tocohara/681c603dbe5f3aa059534373a5e66f14 to your computer and use it in GitHub Desktop.
Exploring the Sales Order Processing Functions - 1
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
if (!String.IsNullOrEmpty(filter.Action)) | |
{ | |
Orders.SetProcessWorkflowAction( | |
filter.Action, | |
isCreateShipment ? filter.ShipmentDate | |
: isCreateChildOrders ? filter.SchedOrderDate | |
: filter.EndDate, | |
filter.SiteID); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment