diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2017-08-01 16:14:15 +1200 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2017-08-01 16:14:15 +1200 |
commit | bf8a7aac4921d17c086e6d35e44a1bc2e37888b8 (patch) | |
tree | 166787aa64665c8699c16b17382ae1ec68035bea /src/org/traccar/reports/Events.java | |
parent | b65dd20c5e8c7fc9b26cb27154394d2afdbd5316 (diff) | |
download | trackermap-server-bf8a7aac4921d17c086e6d35e44a1bc2e37888b8.tar.gz trackermap-server-bf8a7aac4921d17c086e6d35e44a1bc2e37888b8.tar.bz2 trackermap-server-bf8a7aac4921d17c086e6d35e44a1bc2e37888b8.zip |
Option to limit report period
Diffstat (limited to 'src/org/traccar/reports/Events.java')
-rw-r--r-- | src/org/traccar/reports/Events.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/org/traccar/reports/Events.java b/src/org/traccar/reports/Events.java index 63077de32..a13aeeeb4 100644 --- a/src/org/traccar/reports/Events.java +++ b/src/org/traccar/reports/Events.java @@ -42,6 +42,7 @@ public final class Events { public static Collection<Event> getObjects(long userId, Collection<Long> deviceIds, Collection<Long> groupIds, Collection<String> types, Date from, Date to) throws SQLException { + ReportUtils.checkPeriodLimit(from, to); ArrayList<Event> result = new ArrayList<>(); for (long deviceId: ReportUtils.getDeviceList(deviceIds, groupIds)) { Context.getPermissionsManager().checkDevice(userId, deviceId); @@ -62,6 +63,7 @@ public final class Events { public static void getExcel(OutputStream outputStream, long userId, Collection<Long> deviceIds, Collection<Long> groupIds, Collection<String> types, Date from, Date to) throws SQLException, IOException { + ReportUtils.checkPeriodLimit(from, to); ArrayList<DeviceReport> devicesEvents = new ArrayList<>(); ArrayList<String> sheetNames = new ArrayList<>(); HashMap<Long, String> geofenceNames = new HashMap<>(); |