We have multiple orders and multiple vehicles. All of them use 6 quantities (ADR, volume, tax weight, gross weight, ...). Here is an example for one order:
Code: Select all
"transportOrders": [
{
"$type": "TransportDepot",
"pickupQuantities": {
"quantities": [
0,
7596,
474,
0,
0,
2530
]
},
...
}, ...
Question: We would like to set per vehicle for some dimensions a limit. How do we do that?
For example: the truck can have up to 1000 ADR points, 34 pallets, 20t gross weight, .... but we would like to have only "small orders" on it, this means although the sum of all orders can be up to 20t, each individual order should have at most 500kg. Orders with more than 500kg should go on a truck without that limit (or with a higher limit)
We had equipment flags in mind, but we have 30+ trucks and each has 6 dimensions. It would be quite a combination of "trucks and allowed maximum value of dimension X".
Example:
truck 1: max gross weight 500kg (per order)
truck 2: max gross weight 600kg, max pallets 3 (per order)
truck 3: no limits (per order)
truck 4: max tax weight 1t (per order)
...
Is such a detailed limit "per order on a truck" possible, or do we have to solve that in the preprocessing before calling xTour (for example via equipment flags)?
Thank you!