Created Order as already allocated

Is there a way to set orders as already allocated/complete when creating them

We have orders coming in from a shop till system that need to be marked as complete so the warehouse do not try and pick them as they are already fulfilled, from the documentation it looks like I will have to create allocations then allocate them.

thanks

Hi Ben,

After creating the order, you could then allocate and create a shipment, this would complete the full cycle
Order creation: https://developer.veeqo.com/docs#/reference/orders/order-collection/create-a-new-order
Allocation creation:https://developer.veeqo.com/docs#/reference/allocations/allocation-collection/create-a-new-allocation
Shipment creation: https://developer.veeqo.com/docs#/reference/shipments/shipment-collection/create-a-shipment

Hope this helps

Hey Ben,

After the allocation is created, you can update the allocation line items with a picked_quantity

Thanks for that

Don’t suppose you know why this is documented that it can be updated, and on another note when I post an allocation the response I am getting back doesn’t match what the docs say. I seem to be just getting the full order returned when creating an allocation.

Hey Ben

Just to confirm you are changing the URL from

https://api.veeqo.com/orders/{order_is}/allocations/{allocation_id}

to something like:

https://api.veeqo.com/orders/123456/allocations/789456123

Hi Ade, Thanks for the quick response,

the url I am posting to is

> https://api.veeqo.com/orders/71582002/allocations/57848535

below is the first part of what I get back and in Veeqo it is not marked as picked

Thanks
Ben

{
“id”: 57848535,
“updated_at”: “2020-12-21T15:40:18.012Z”,
“created_at”: “2020-12-21T15:03:31.940Z”,
“total_weight”: 18,
“weight_unit”: “g”,
“allocated_by_id”: 33213,
“order_id”: 71582002,
“packed_completely”: true,
“due_date”: null,
“dispatch_date”: null,
“line_items”: [
{
“id”: 89216561,
“quantity”: 1,
“picked_quantity”: 0,
“created_at”: “2020-12-21T15:03:31.941Z”,
“updated_at”: “2020-12-21T15:03:31.941Z”,
“sellable”: {
“allocated_stock_level_at_all_warehouses”: 12,
“id”: 45166201,
“type”: “ProductVariant”,
“title”: “0mg”,
“sku_code”: “JUJU/E/0MG/349”,
“upc_code”: “731628359873”,
“model_number”: “”,
“price”: 1.15,

Hi Ade

I don’t suppose you have any feedback regarding what I am sending

thanks

Ben

Just an update on this I have spoken to the devs at Veeqo and currently there is no official way to mark an order as picked as normally this would be done using a device in the warehouse

1 Like

Thanks for updating Ben, I will make sure this is added to the docs!