The Gift Certificate can be applied to a Sales Order in NetSuite under the Billing Subtab > Payments > Gift Certificate The Gift Certificate can be applied only if the sales order in which the gift card was purchased is billed. A Gift Certificate item when ordered in NetSuite creates a respective automated unique Gift… Continue reading Apply Gift Certificate to an order in NetSuite
Tag: gift certificate
Fetch Gift Card details from Shopify
Pass the customer email to the query to fetch the gift cards for that customer. The Gift Card Id is generated in NetSuite once the order is fulfilled. The gift card can then be applied to any payment. Use the following query to fetch gift card details from Shopify: giftCards(first: 10, query: “abc@xyz.com”) { … Continue reading Fetch Gift Card details from Shopify
Apply the gift certificate to the sales order through script
The following function can be used to apply the gift certificate to the sales order through script function applyGiftCertificateToSalesOrder(salesOrderId, giftCertificateCode, amountApplied) { try { let salesOrder = record.load({ type: record.Type.SALES_ORDER,… Continue reading Apply the gift certificate to the sales order through script
Custom Item Field Values not Displayed for Gift Certificate Items in the Webstore
Scenario When checking out Gift Certificate items, user encounter an error when submitting the order in web store: “Error processing dynamic tag for the custom item field because the system cannot find this field for gift certificate items.” This error is caused by the custom item field values is not displayed in Gift Certificate items… Continue reading Custom Item Field Values not Displayed for Gift Certificate Items in the Webstore