Version: eXtendPS-SE 1.3.6 and above
Audience: Administrator

Blank Sales Order Configuration

A blank Sales Order would not contain the decoration/configuration line items.
For Sales Order generation out of the box line items are matched using Item Name/Number field but, this behaviour is configurable.

NOTE: Any of the available data in the Promostandards JSON response can be mapped to any NetSuite field depending on your requirements. 

The key configurations to be completed on the eXtendPS-SE Purchase Order Service Setup screen for capturing Blank Sales Orders is the Order Number, SO Status and Item Search fields. The snippet of JSON below from Purchase Order Web Service Input represents a sub-section of a simple blank Sales Order.

{
"partGroup": "Stadium Table",
"partId": "11111-111 - Black",
"customerSupplied": false,
"description": "Dummy Description",
"Quantity": {
"uom": "EA",
"value": 100
},
"locationLinkId": [
1
],
"unitPrice": 2,
"extendedPrice": 200,
"ShipmentLinkArray": [
{
"Quantity": {
"uom": "EA",
"value": 22
},
"shipmentId": 101
}
]
}