Following is the GraphQL mutation to capture order payment in Shopify. mutation CaptureOrderPayment($input: OrderCaptureInput!) { orderCapture(input: $input) { transaction { id kind status amountSet { presentmentMoney { amount … Continue reading Capture Payments in Shopify GraphQL
Author: Nathasha K V
Graphql MetaObect Details from Shopify
Metaobjects entries details can be fetched from Shopify with the following graphQL query: query getMetaobjectByName($afterCursor: String) { metaobjects(type: “${metaObjectType}”, first: 200, after: $afterCursor) { edges { node { id handle type fields { key value } } } pageInfo { hasNextPage endCursor } } }
Fetch Product Details from SKU in Shopify
query getInventoryItems($afterCursor: String) { inventoryItems(first: 200, after: $afterCursor, query: “sku:${itemSku}”) { nodes { id sku tracked } pageInfo { hasNextPage endCursor } } }
Bulk Edit in Shopify
The Shopify Bulk Editor allows to efficiently edit multiple products at once, saving time and streamlining product management process. The Bulk Editor presents a spreadsheet-like interface where we can see all selected products and their properties. We can click on Add fields at the top of the Bulk Editor to include more options for editing.… Continue reading Bulk Edit in Shopify
Lot Auto Numbering – SuiteApp
Lot Auto Numbering The Lot Auto Numbering SuiteApp enables to define lot and serial numbering formats and select items that require auto numbering. User can also configure additional information such as supplier lot number, sequence number, and manufactured date, and maintain this information in the inventory detail. Lot and Serial Number Formats: Lot and serial… Continue reading Lot Auto Numbering – SuiteApp
Wave record and Pick Tasks
Wave A wave transaction is used to consolidate orders for release to the warehouse. When you release a wave, the items from the order become available for picking and further fulfillment processing on a mobile device. Pending Release – In this status, you have the option of assigning pick tasks to warehouse operators. Released –… Continue reading Wave record and Pick Tasks
Stock Ledger Report in NetSuite
NetSuite reports are a powerful tool you can use to assess inventory at all stages of your inventory workflow. You can view reports with inventory costs, stock levels, activity, valuation, revenue generated and profitability. It is important to track your inventory, so you know what stock you have and what stock you need. You can… Continue reading Stock Ledger Report in NetSuite
Inbound Shipment
Inbound shipments provide visibility of in-transit inventory and the status of a shipment. Items from multiple purchase orders can be assigned to an incoming shipment and bulk received and billed from within the record. The internal ID for this record is “inboundshipment”. An order is identified as an inbound shipment when a vendor packs the… Continue reading Inbound Shipment
Apply Gift Certificate to an order in NetSuite
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
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