SalesOrderToStoreOrderDocumentGeneration Constructor |
Namespace:
Aloe.EnterpriseOne.Model.Crm.Sales
Assembly:
Aloe.EnterpriseOne.Model (in Aloe.EnterpriseOne.Model.dll) Version: 20.1.3.5
Syntaxpublic SalesOrderToStoreOrderDocumentGeneration(
SalesOrder parentDocument,
bool salesReturns,
bool splitQuantityByLots,
bool checkForShipped = true,
GenerationOptions options = null
)
Public Sub New (
parentDocument As SalesOrder,
salesReturns As Boolean,
splitQuantityByLots As Boolean,
Optional checkForShipped As Boolean = true,
Optional options As GenerationOptions = Nothing
)
public:
SalesOrderToStoreOrderDocumentGeneration(
SalesOrder^ parentDocument,
bool salesReturns,
bool splitQuantityByLots,
bool checkForShipped = true,
GenerationOptions^ options = nullptr
)
new :
parentDocument : SalesOrder *
salesReturns : bool *
splitQuantityByLots : bool *
?checkForShipped : bool *
?options : GenerationOptions
(* Defaults:
let _checkForShipped = defaultArg checkForShipped true
let _options = defaultArg options null
*)
-> SalesOrderToStoreOrderDocumentGeneration
Parameters
- parentDocument
- Type: Aloe.EnterpriseOne.Model.Crm.SalesSalesOrder
The parent document. - salesReturns
- Type: SystemBoolean
if set to true, generates for sales returns; otherwise - for normal sales. - splitQuantityByLots
- Type: SystemBoolean
if set to true, the generation splits the quantity based on availability by lots. - checkForShipped (Optional)
- Type: SystemBoolean
if set to false the generation does not check whether the products are shipped or not; otherwise it generates only
for products that are not shipped. - options (Optional)
- Type: Aloe.EnterpriseOne.Model.Core.TransformationsGenerationOptions
The options for starting this particular generation.
See Also