2024.2 Discounts
Discount synchronizing in the NetSuite Connector happens within the following parent scenarios:
- Order Export - 2024.2 Order
- Invoice Export - 2024.2 Invoice Export
- Cashsale/Invoice Import - 2024.2 [b2b] NetSuite Invoice Import from NetSuite and 2024.2 NetSuite Cashsale Import from NetSuite
Order Export Scenario
Discounts for Magento Orders are exported to NetSuite during the Order Export scenario. There are 2 possible strategies that can be used for the Discounts Export:
- Line Strategy
- Body Strategy
Depending on the configuration, (see: 2024.2 Order Settings) one of the strategies is chosen.
For both strategies, adding the discount to the NetSuite Sales Order starts via plugins (see: RocketWeb/NetSuiteDiscount/Plugin/OrderExport/OrderAddDiscount.php and RocketWeb/NetSuiteDiscount/Plugin/OrderExport/OrderItemAddDiscount.php). If the Line Strategy is set, the NetSuite Connector adds additional Sales Order Items per each discount amount from the Magento Order to the NetSuite Sales Order (Shipping Discount+Sum of All other Discount or Shipping Discount+Each Discount as separate Sales Order Item). By doing this, NetSuite will have the same order sum as in Magento. For details see: RocketWeb/NetSuiteDiscount/Model/Provider/Line/OrderDiscount.php. In the case of Body Strategy, the NetSuite Connector sets all discounts to the Sales Order attribute discountItem. In order to distinguish between discounts, the NetSuite Connector sets additional Custom Field custbody_rw_cf_coupon_codes to the Sales Order. This field contains all coupon codes used in the Magento Order and is used by RocketWeb NetSuite Bundle SuiteScripts. For details see: RocketWeb/NetSuiteDiscount/Model/Provider/Body/OrderDiscount.php.
Invoice Export Scenario
The same is true for the Order Export Scenario, in which the Invoice Export supports both Line and Body approaches for Discounts sent to NetSuite.
For the Line Strategy, the NetSuite Connector adds a separate Discount Item to the Item List of the Cashsale (see: RocketWeb/NetSuiteDiscount/Model/Provider/Line/InvoiceDiscount.php). If the Body Strategy is set to be used, the NetSuite Connector adds discount information to the Cashsale body field discountItem (see: RocketWeb/NetSuiteDiscount/Model/Provider/Body/InvoiceDiscount.php). For both strategies, the NetSuite Connector uses a configured DiscountItemId and Magento Invoice Discount Amount.
Cashsale/Invoice Import Scenario
This is an extension point that is used for Discount setting in the Cashsale/Invoice Import Scenario in the \RocketWeb\NetSuiteInvoice\Model\Mapper\ImportInvoice::getDiscountAmount() method. Using a plugin, the NetSuite Connector adds a Discount to the Magento Invoice extracting it from Cashsale/Invoice Item or its Body attribute. For details see: RocketWeb/NetSuiteDiscount/Plugin/InvoiceImport/CashSaleGetDiscount.php.