/
2024.1 NetSuite Cashsale Import from NetSuite

2024.1 NetSuite Cashsale Import from NetSuite


The NetSuite Cashsale Import is the post-process of the Order Export Process. Once the Order is exported and a Cashsale is created for it in NetSuite, the NetSuite Cashsale Import is triggered. As part of NetSuite Import Process (see: 2024.1 2. Import process),  \RocketWeb\NetSuiteInvoice\Model\Process\Import\Cashsale::process() transforms the NetSuite Cashsale into the Magento Invoice. 

This process does not support Magento Invoices Update.

Transform the NetSuite Cashsale into Magento Format

For this purpose, we use \RocketWeb\NetSuiteInvoice\Model\Mapper\ImportInvoice:: getMagentoFormatFromCashSale(), that checks a few basic conditions:

  • A NetSuite Cashsale was created from the Sales Order
  • A Magento Order exists for Sales Order linked with NetSuite Invoice

And if all passes, the $magentoInvoice data is set:

  • Store ID
  • Order ID
  • Billing Address ID
  • Shipping Address ID

During mapping, the NetSuite Connector uses the Discount Module logic to set discounts to the Magento Invoice (see: 2024.1 Discounts).

The $magentoInvoice then runs thru CopyService sales_covert_order => to_invoice to copy the data and modifies the Invoice Items list in \RocketWeb\NetSuiteFulfillment\Model\Mapper\invoice::addInvoiceItems() which filters the Items and their Quantities to match the Item Fulfillment Item List.

Next, Totals and Amounts are calculated and set to  $magentoInvoice.

Save Magento Invoice

The $magentoInvoice is saved using the standard Magento Repository.


Related content