Documents
HomeGlossary
Learn NetSuite
Learn NetSuite
  • Introduction
  • Integration Tools and Methodologies
    • SuiteScript
      • N/Task Module
      • N/Record Module
      • N/Search Module
      • N/File Module
    • Saved Search
    • Integration Methodologies
    • NetSuite
    • HotWax
  • Integration Flows
    • Inventory
    • Sales Orders
      • Order Approval
      • Order Allocation
      • Fulfillment
      • Invoicing
      • Shipping Methods
      • Gift Card Orders
      • POS Orders
      • Send Sale Orders
      • Reports
    • Returns
    • Exchanges
    • Kit Products
    • Transfer Orders
      • Warehouse to Store
      • Store to Warehouse
      • Store to Store
      • Reports
    • Cycle Count
    • Purchase Orders
  • NetSuite Deployment
    • Deployment
    • SDF Bundle Setup
      • Install SDF
      • Setup SFTP
      • Date Time Format
    • Prerequisites
      • Install NetSuite Jobs
      • Product Store Settings
      • SFTP Locations
      • Historical Customers
      • Shipping Methods
      • Price Level
      • Payment Methods
      • Promo Codes
      • NetSuite Facility Group
  • Synchronization Flows
    • Auditing
    • Products and Inventory
      • Product IDs
      • Inventory Reset
    • Orders
      • POS Cash Sales
      • Sync Customer
      • Sync Order IDs
      • Approve Orders
      • Reports
    • Allocation & Fulfillment
    • Transfer Orders
    • Purchase Orders
    • Integration Mappings
      • Payment Methods
      • Discount Codes
      • Price Levels
      • Shipping Methods
      • Facility Group
  • Troubleshooting
    • Failed SuiteScripts
    • Error Logs
    • Failure Notifications
    • Order Sync Failure
Powered by GitBook
On this page
  • Order level discounts:
  • Export Current Promo Codes from NetSuite
  • Export Discontinued Promo Codes
  • Discount items
  • Create data for Integration Type Mapping entity

Was this helpful?

Edit on GitHub
Export as PDF
  1. NetSuite Deployment
  2. Prerequisites

Promo Codes

Efficiently manage promo codes for order discounts with HotWax Commerce and NetSuite integration.

Order level discounts:

If an order has a discount code applied to it, during order sync to NetSuite, HotWax checks if the applied code is available in NetSuite. If the code is available then the exact code is used and the value of the discount is shared as the "Rate".

In the event that the code is not available in NetSuite, HotWax will replace the code with a default discount code 'SHOPIFY DISCOUNT' along with the value of the discount in "Amount". For this failover to work the discount item must be created in NetSuite first.

  1. Go to Lists > Accounting > Items > New

  2. Select Item Type: Discount

  3. Enter 'SHOPIFY DISCOUNT' in the Item Name and Display Name field

  4. Enter 0.00 in the Rate field

  5. Select Subsidiary

  6. In the Accounting sub-tab

    • Select Account

    • Check the 'Apply before sales tax' checkbox

To check promo codes in NetSuite, HotWax syncs promo codes from NetSuite once a day.

Create Enumeration data before creating IntegrationTypeMapping

<Enumeration description="Discount codes mapping between HotWax and Netsuite" enumId="NETSUITE_DISC_MTHD" enumName="Netsuite Discount Codes" enumTypeId="NETSUITE" sequenceId="1"/>

<IntegrationTypeMapping integrationTypeId="NETSUITE_DISC_MTHD" mappingKey="SHOPIFY_DISC" mappingValue="{NetSuite Discount Name}"/>
<IntegrationTypeMapping integrationTypeId="NETSUITE_DISC_MTHD" mappingKey="SHOPIFY_ITEM_DISC" mappingValue="{NetSuite Discount Item Internal ID}"/>

Export Current Promo Codes from NetSuite

Schedule this SuiteScript to export current promo codes in NetSuite that need to be synced to HotWax

HC_MR_ExportedDiscountItemCSV

SFTP location

/home/{sftp-username}/netsuite/discountitem/import

Job to save new promo codes

JOB_IMP_PRMO_CODE
Import Promo Code
FTP Config: IMP_PRMO_CODE

Export Discontinued Promo Codes

Schedule this SuiteScript to export removed promo codes in NetSuite that need to be synced to HotWax

HC_MR_ExportedInActiveDiscountCSV

SFTP location

/home/{sftp-username}/netsuite/discountitem/delete

Job to remove promo codes no longer active in NetSuite

JOB_RMV_PRMO_CODE
Remove Promo Code
FTP Config: IMP_RMV_PRMO_CODE

Discount items

Item level discounts have to be synced as a separate line item in the order using a "SHOPIFY ITEM DISCOUNT" item. The amount of the adjustment is added in the "Amount" field when preparing the CSV for NetSuite and the "Price Level" is always set to "Custom".

To learn more about how discounts are handled on orders, read the full NetSuite integration documentation.

For this sync to work, a blanket ‘discount item’ must be created in NetSuite. If you’re using Shopify this discount code is usually ‘Shopify Discount Item’

This ID of this product in NetSuite needs to be entered into the integration layer so that it can be sent to NetSuite during order sync.

  1. Go to Lists > Accounting > Items > New

  2. Select Item Type: Discount

  3. Enter 'SHOPIFY DISCOUNT ITEM' in the Item Name and Display Name field

  4. Enter 0.00 in the Rate field

  5. Select Subsidiary

  6. In the Accounting sub-tab

    • Select Account

    • Check the 'Apply before sales tax' checkbox

Create data for Integration Type Mapping entity

Create this data to map the generic Netsuite discount values in HotWax. This universal value will serve as a fallback when the discount code provided in the Shopify order JSON is not found in Netsuite.

PreviousPayment MethodsNextNetSuite Facility Group

Last updated 10 months ago

Was this helpful?