ArticleBaseWebLineNo Property |
The order line number of the article. If applicable.
Is and should remain null in all cases except when returned from the service method "OrderInfo" or when calling service method UpdateOrder.
See also remarks.
Namespace:
Tse.EasyBook.Server.DataContracts
Assembly:
Tse.EasyBook.Server.DataContracts (in Tse.EasyBook.Server.DataContracts.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic int? LineNo { get; set; }
Property Value
Type:
NullableInt32
Remarks
When calling the service method "UpdateOrder" with the purpose of modifying 1 or more existing order lines do the following:
1) Set LineNumber on the ArticleBaseWeb to the same linenumber of the article that you want to change.
2) Set Count to the new desired value.
3) Call UpdateOrder to process the request.
The server will automatically adjust the count value of the article and create a new invoice - or credit note of the value was adjusted down.
Important: For new orderlines added through "UpdateOrder" service method leave the property LineNo null!
See Also