diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2018-04-16 09:41:22 +1200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-16 09:41:22 +1200 |
commit | e4d7d815fe0d05aa7753c2752a99fa4c7cc7a326 (patch) | |
tree | 772381d37eb1d2e69c2052eb9695aeffc5eefa3c /src/org/traccar/notification/NotificationFormatter.java | |
parent | 994efc29d550e3f4a69f65ee60aa51816f352d45 (diff) | |
parent | 30ae3d104e9b0446364ebc316dc10d0f811e1480 (diff) | |
download | trackermap-server-e4d7d815fe0d05aa7753c2752a99fa4c7cc7a326.tar.gz trackermap-server-e4d7d815fe0d05aa7753c2752a99fa4c7cc7a326.tar.bz2 trackermap-server-e4d7d815fe0d05aa7753c2752a99fa4c7cc7a326.zip |
Merge pull request #3842 from Abyss777/multi_maintenance
Add support of multiple Maintenances
Diffstat (limited to 'src/org/traccar/notification/NotificationFormatter.java')
-rw-r--r-- | src/org/traccar/notification/NotificationFormatter.java | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/org/traccar/notification/NotificationFormatter.java b/src/org/traccar/notification/NotificationFormatter.java index 114825a83..524153721 100644 --- a/src/org/traccar/notification/NotificationFormatter.java +++ b/src/org/traccar/notification/NotificationFormatter.java @@ -1,6 +1,6 @@ /* - * Copyright 2016 - 2017 Anton Tananaev (anton@traccar.org) - * Copyright 2017 Andrey Kunitsyn (andrey@traccar.org) + * Copyright 2016 - 2018 Anton Tananaev (anton@traccar.org) + * Copyright 2017 - 2018 Andrey Kunitsyn (andrey@traccar.org) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -57,6 +57,9 @@ public final class NotificationFormatter { if (event.getGeofenceId() != 0) { velocityContext.put("geofence", Context.getGeofenceManager().getById(event.getGeofenceId())); } + if (event.getMaintenanceId() != 0) { + velocityContext.put("maintenance", Context.getMaintenancesManager().getById(event.getMaintenanceId())); + } String driverUniqueId = event.getString(Position.KEY_DRIVER_UNIQUE_ID); if (driverUniqueId != null) { velocityContext.put("driver", Context.getDriversManager().getDriverByUniqueId(driverUniqueId)); |