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/Trips.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/Trips.java')
-rw-r--r-- | src/org/traccar/reports/Trips.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/org/traccar/reports/Trips.java b/src/org/traccar/reports/Trips.java index 68b03a819..6b97507f4 100644 --- a/src/org/traccar/reports/Trips.java +++ b/src/org/traccar/reports/Trips.java @@ -56,6 +56,7 @@ public final class Trips { public static Collection<TripReport> getObjects(long userId, Collection<Long> deviceIds, Collection<Long> groupIds, Date from, Date to) throws SQLException { + ReportUtils.checkPeriodLimit(from, to); ArrayList<TripReport> result = new ArrayList<>(); for (long deviceId: ReportUtils.getDeviceList(deviceIds, groupIds)) { Context.getPermissionsManager().checkDevice(userId, deviceId); @@ -67,6 +68,7 @@ public final class Trips { public static void getExcel(OutputStream outputStream, long userId, Collection<Long> deviceIds, Collection<Long> groupIds, Date from, Date to) throws SQLException, IOException { + ReportUtils.checkPeriodLimit(from, to); ArrayList<DeviceReport> devicesTrips = new ArrayList<>(); ArrayList<String> sheetNames = new ArrayList<>(); for (long deviceId: ReportUtils.getDeviceList(deviceIds, groupIds)) { |