Click or drag to resize

IUCServiceActivityAdditionalChargesSet Method

Change or insert additional charges to Activity

Namespace:  LSOmni.Service
Assembly:  LSOmni.Service (in LSOmni.Service.dll) Version: Commerce Service for LS Central 2024.4
Syntax
C#
bool ActivityAdditionalChargesSet(
	AdditionalCharge request
)

Parameters

request
Type: LSRetail.Omni.Domain.DataModel.Activity.ActivitiesAdditionalCharge

Return Value

Type: Boolean
Remarks
LS Central WS2 : SetAdditionalChargesV3
Examples
This Sample request can be used in SOAP UI application to send request to LS Commerce.

Include minimum data needed to be able to process the request

SOAP Sample Request
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ser="http://lsretail.com/LSOmniService/EComm/2017/Service" xmlns:ns="http://lsretail.com/LSOmniService/Activity/2017">
   <soapenv:Header/>
   <soapenv:Body>
      <ser:ActivityAdditionalChargesSet>
         <ser:request>
            <ns:ActivityNo>ACT0034</ns:ActivityNo>
            <ns:DiscountPercentage>0.0</ns:DiscountPercentage>
            <ns:InvoiceReference></ns:InvoiceReference>
            <ns:ItemNo>40020</ns:ItemNo>
            <ns:LineNo>1</ns:LineNo>
            <ns:Optional></ns:Optional>
            <ns:OptionalComment></ns:OptionalComment>
            <ns:ParentLine>0</ns:ParentLine>
            <ns:Price>110.0</ns:Price>
            <ns:ProductType>Item</ns:ProductType>
            <ns:Quantity>1.0</ns:Quantity>
            <ns:TotalAmount>110.0</ns:TotalAmount>
            <ns:UnitOfMeasure></ns:UnitOfMeasure>
            <ns:VariantCode></ns:VariantCode>
         </ser:request>
      </ser:ActivityAdditionalChargesSet>
   </soapenv:Body>
</soapenv:Envelope>
See Also