Skip to content

Commit 7c8e382

Browse files
authored
Merge pull request #159 from fleetbase/dev-v0.6.11
v0.6.9 ~ hotfix: patch route optimization with no driver as starting …
2 parents c8e45a1 + c3c4c29 commit 7c8e382

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

addon/controllers/operations/orders/index/new.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -944,7 +944,7 @@ export default class OperationsOrdersIndexNewController extends BaseController {
944944
const originalCoords = this.getCoordinatesFromPayload(); // [[lon,lat], …]
945945
const coordinates = driverPosition ? [driverPosition, ...originalCoords] : [...originalCoords];
946946
const hasDriverStart = Boolean(driverPosition);
947-
const source = hasDriverStart ? 'first' : 'any';
947+
const source = 'first';
948948
const destination = 'any';
949949
const roundtrip = false; // don’t loop back
950950
const routingHost = getRoutingHost(this.payload, this.waypoints);

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fleetbase/fleetops-api",
3-
"version": "0.6.10",
3+
"version": "0.6.11",
44
"description": "Fleet & Transport Management Extension for Fleetbase",
55
"keywords": [
66
"fleetbase-extension",

extension.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "Fleet-Ops",
3-
"version": "0.6.10",
3+
"version": "0.6.11",
44
"description": "Fleet & Transport Management Extension for Fleetbase",
55
"repository": "https://github.com/fleetbase/fleetops",
66
"license": "AGPL-3.0-or-later",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@fleetbase/fleetops-engine",
3-
"version": "0.6.10",
3+
"version": "0.6.11",
44
"description": "Fleet & Transport Management Extension for Fleetbase",
55
"fleetbase": {
66
"route": "fleet-ops"

0 commit comments

Comments
 (0)