Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Cross dock plan specifies the SKU wise qty in the box which needs to be shipped for an order. Currently all the items in a box can be shipped in the same outward orderwhich boxes will go outward against an outward order.

  • Since box codes can be duplicate for a vendor, hence its mandatory to provide the vendor code against the box codes.

  • Once a box is added to an order, it can not be added to any other order till the original order is not cancelled.

  • Limit of number of boxes per request - 100

Info
  • Currently Increff WMS only supports box wise crossdocking, so the cross dock plan will be received at the box level for an order from the external system (ERP)

...

Request

Code Block
languagejson
{
  "orderCode": "ORD789",
  "locationCode": "LOC123",
  "boxes": [
    {
      "boxCode": "BOX001",
      "vendorCode": "VENDOR123"
    },
    {
      "boxCode": "BOX002",
      "vendorCode": "VENDOR456"
    }
  ]
}

...