aboutsummaryrefslogtreecommitdiff
path: root/src/org/traccar/notification/NotificationFormatter.java
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2018-04-16 09:41:22 +1200
committerGitHub <noreply@github.com>2018-04-16 09:41:22 +1200
commite4d7d815fe0d05aa7753c2752a99fa4c7cc7a326 (patch)
tree772381d37eb1d2e69c2052eb9695aeffc5eefa3c /src/org/traccar/notification/NotificationFormatter.java
parent994efc29d550e3f4a69f65ee60aa51816f352d45 (diff)
parent30ae3d104e9b0446364ebc316dc10d0f811e1480 (diff)
downloadtraccar-server-e4d7d815fe0d05aa7753c2752a99fa4c7cc7a326.tar.gz
traccar-server-e4d7d815fe0d05aa7753c2752a99fa4c7cc7a326.tar.bz2
traccar-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.java7
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));