mirror of
https://github.com/traccar/traccar.git
synced 2026-02-01 11:13:42 -05:00
- Pass client timezone to excel template
- Templates: adjust timezone, use "https" in links
This commit is contained in:
@@ -50,8 +50,7 @@ public class ReportResource extends BaseResource {
|
||||
@QueryParam("deviceId") final List<Long> deviceIds, @QueryParam("groupId") final List<Long> groupIds,
|
||||
@QueryParam("from") String from, @QueryParam("to") String to) throws SQLException, IOException {
|
||||
ByteArrayOutputStream stream = new ByteArrayOutputStream();
|
||||
Route.getExcel(stream, getUserId(), deviceIds, groupIds,
|
||||
DateUtil.parseDate(from), DateUtil.parseDate(to));
|
||||
Route.getExcel(stream, getUserId(), deviceIds, groupIds, from, to);
|
||||
|
||||
return Response.ok(stream.toByteArray())
|
||||
.header(HttpHeaders.CONTENT_DISPOSITION, CONTENT_DISPOSITION_VALUE_XLSX).build();
|
||||
@@ -76,8 +75,7 @@ public class ReportResource extends BaseResource {
|
||||
@QueryParam("type") final List<String> types,
|
||||
@QueryParam("from") String from, @QueryParam("to") String to) throws SQLException, IOException {
|
||||
ByteArrayOutputStream stream = new ByteArrayOutputStream();
|
||||
Events.getExcel(stream, getUserId(), deviceIds, groupIds, types,
|
||||
DateUtil.parseDate(from), DateUtil.parseDate(to));
|
||||
Events.getExcel(stream, getUserId(), deviceIds, groupIds, types, from, to);
|
||||
|
||||
return Response.ok(stream.toByteArray())
|
||||
.header(HttpHeaders.CONTENT_DISPOSITION, CONTENT_DISPOSITION_VALUE_XLSX).build();
|
||||
@@ -100,8 +98,7 @@ public class ReportResource extends BaseResource {
|
||||
@QueryParam("deviceId") final List<Long> deviceIds, @QueryParam("groupId") final List<Long> groupIds,
|
||||
@QueryParam("from") String from, @QueryParam("to") String to) throws SQLException, IOException {
|
||||
ByteArrayOutputStream stream = new ByteArrayOutputStream();
|
||||
Summary.getExcel(stream, getUserId(), deviceIds, groupIds,
|
||||
DateUtil.parseDate(from), DateUtil.parseDate(to));
|
||||
Summary.getExcel(stream, getUserId(), deviceIds, groupIds, from, to);
|
||||
|
||||
return Response.ok(stream.toByteArray())
|
||||
.header(HttpHeaders.CONTENT_DISPOSITION, CONTENT_DISPOSITION_VALUE_XLSX).build();
|
||||
@@ -124,8 +121,7 @@ public class ReportResource extends BaseResource {
|
||||
@QueryParam("deviceId") final List<Long> deviceIds, @QueryParam("groupId") final List<Long> groupIds,
|
||||
@QueryParam("from") String from, @QueryParam("to") String to) throws SQLException, IOException {
|
||||
ByteArrayOutputStream stream = new ByteArrayOutputStream();
|
||||
Trips.getExcel(stream, getUserId(), deviceIds, groupIds,
|
||||
DateUtil.parseDate(from), DateUtil.parseDate(to));
|
||||
Trips.getExcel(stream, getUserId(), deviceIds, groupIds, from, to);
|
||||
|
||||
return Response.ok(stream.toByteArray())
|
||||
.header(HttpHeaders.CONTENT_DISPOSITION, CONTENT_DISPOSITION_VALUE_XLSX).build();
|
||||
|
||||
@@ -18,12 +18,14 @@ package org.traccar.helper;
|
||||
import java.util.Calendar;
|
||||
import java.util.Date;
|
||||
|
||||
import org.joda.time.DateTime;
|
||||
import org.joda.time.format.DateTimeFormatter;
|
||||
import org.joda.time.format.ISODateTimeFormat;
|
||||
|
||||
public final class DateUtil {
|
||||
|
||||
private static final DateTimeFormatter DATE_FORMAT = ISODateTimeFormat.dateTime();
|
||||
private static final DateTimeFormatter DATE_FORMAT_NOMILLIS = ISODateTimeFormat.dateTimeNoMillis();
|
||||
|
||||
private DateUtil() {
|
||||
}
|
||||
@@ -64,4 +66,8 @@ public final class DateUtil {
|
||||
return DATE_FORMAT.parseDateTime(value).toDate();
|
||||
}
|
||||
|
||||
public static DateTime parseDateTime(String value) {
|
||||
return DATE_FORMAT_NOMILLIS.withOffsetParsed().parseDateTime(value);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -28,6 +28,7 @@ import java.util.HashMap;
|
||||
import java.util.Iterator;
|
||||
import java.util.List;
|
||||
|
||||
import org.joda.time.DateTime;
|
||||
import org.jxls.area.Area;
|
||||
import org.jxls.builder.xls.XlsCommentAreaBuilder;
|
||||
import org.jxls.common.CellRef;
|
||||
@@ -36,6 +37,7 @@ import org.jxls.transform.Transformer;
|
||||
import org.jxls.transform.poi.PoiTransformer;
|
||||
import org.jxls.util.TransformerFactory;
|
||||
import org.traccar.Context;
|
||||
import org.traccar.helper.DateUtil;
|
||||
import org.traccar.model.Device;
|
||||
import org.traccar.model.Event;
|
||||
import org.traccar.model.Geofence;
|
||||
@@ -68,13 +70,15 @@ 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 {
|
||||
Collection<String> types, String fromString, String toString) throws SQLException, IOException {
|
||||
ArrayList<DeviceReport> devicesEvents = new ArrayList<>();
|
||||
ArrayList<String> sheetNames = new ArrayList<>();
|
||||
DateTime from = DateUtil.parseDateTime(fromString);
|
||||
DateTime to = DateUtil.parseDateTime(toString);
|
||||
HashMap<Long, String> geofenceNames = new HashMap<>();
|
||||
for (long deviceId: ReportUtils.getDeviceList(deviceIds, groupIds)) {
|
||||
Context.getPermissionsManager().checkDevice(userId, deviceId);
|
||||
Collection<Event> events = Context.getDataManager().getEvents(deviceId, from, to);
|
||||
Collection<Event> events = Context.getDataManager().getEvents(deviceId, from.toDate(), to.toDate());
|
||||
boolean all = types.isEmpty() || types.contains(Event.ALL_EVENTS);
|
||||
for (Iterator<Event> iterator = events.iterator(); iterator.hasNext();) {
|
||||
Event event = iterator.next();
|
||||
@@ -118,6 +122,7 @@ public final class Events {
|
||||
jxlsContext.putVar("to", to);
|
||||
jxlsContext.putVar("distanceUnit", ReportUtils.getDistanceUnit(userId));
|
||||
jxlsContext.putVar("speedUnit", ReportUtils.getSpeedUnit(userId));
|
||||
jxlsContext.putVar("timezone", from.getZone());
|
||||
jxlsContext.putVar("bracketsRegex", "[\\{\\}\"]");
|
||||
Transformer transformer = TransformerFactory.createTransformer(inputStream, outputStream);
|
||||
List<Area> xlsAreas = new XlsCommentAreaBuilder(transformer).build();
|
||||
|
||||
@@ -26,6 +26,7 @@ import java.util.Collection;
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
|
||||
import org.joda.time.DateTime;
|
||||
import org.jxls.area.Area;
|
||||
import org.jxls.builder.xls.XlsCommentAreaBuilder;
|
||||
import org.jxls.common.CellRef;
|
||||
@@ -34,6 +35,7 @@ import org.jxls.transform.Transformer;
|
||||
import org.jxls.transform.poi.PoiTransformer;
|
||||
import org.jxls.util.TransformerFactory;
|
||||
import org.traccar.Context;
|
||||
import org.traccar.helper.DateUtil;
|
||||
import org.traccar.model.Device;
|
||||
import org.traccar.model.Group;
|
||||
import org.traccar.model.Position;
|
||||
@@ -56,12 +58,15 @@ public final class Route {
|
||||
|
||||
public static void getExcel(OutputStream outputStream,
|
||||
long userId, Collection<Long> deviceIds, Collection<Long> groupIds,
|
||||
Date from, Date to) throws SQLException, IOException {
|
||||
String fromString, String toString) throws SQLException, IOException {
|
||||
ArrayList<DeviceReport> devicesRoutes = new ArrayList<>();
|
||||
ArrayList<String> sheetNames = new ArrayList<>();
|
||||
DateTime from = DateUtil.parseDateTime(fromString);
|
||||
DateTime to = DateUtil.parseDateTime(toString);
|
||||
for (long deviceId: ReportUtils.getDeviceList(deviceIds, groupIds)) {
|
||||
Context.getPermissionsManager().checkDevice(userId, deviceId);
|
||||
Collection<Position> positions = Context.getDataManager().getPositions(deviceId, from, to);
|
||||
Collection<Position> positions = Context.getDataManager()
|
||||
.getPositions(deviceId, from.toDate(), to.toDate());
|
||||
DeviceReport deviceRoutes = new DeviceReport();
|
||||
Device device = Context.getIdentityManager().getDeviceById(deviceId);
|
||||
deviceRoutes.setDeviceName(device.getName());
|
||||
@@ -85,6 +90,7 @@ public final class Route {
|
||||
jxlsContext.putVar("to", to);
|
||||
jxlsContext.putVar("distanceUnit", ReportUtils.getDistanceUnit(userId));
|
||||
jxlsContext.putVar("speedUnit", ReportUtils.getSpeedUnit(userId));
|
||||
jxlsContext.putVar("timezone", from.getZone());
|
||||
jxlsContext.putVar("bracketsRegex", "[\\{\\}\"]");
|
||||
Transformer transformer = TransformerFactory.createTransformer(inputStream, outputStream);
|
||||
List<Area> xlsAreas = new XlsCommentAreaBuilder(transformer).build();
|
||||
|
||||
@@ -25,9 +25,11 @@ import java.util.ArrayList;
|
||||
import java.util.Collection;
|
||||
import java.util.Date;
|
||||
|
||||
import org.joda.time.DateTime;
|
||||
import org.jxls.transform.poi.PoiTransformer;
|
||||
import org.jxls.util.JxlsHelper;
|
||||
import org.traccar.Context;
|
||||
import org.traccar.helper.DateUtil;
|
||||
import org.traccar.model.Position;
|
||||
import org.traccar.reports.model.SummaryReport;
|
||||
|
||||
@@ -82,8 +84,10 @@ public final class Summary {
|
||||
|
||||
public static void getExcel(OutputStream outputStream,
|
||||
long userId, Collection<Long> deviceIds, Collection<Long> groupIds,
|
||||
Date from, Date to) throws SQLException, IOException {
|
||||
Collection<SummaryReport> summaries = getObjects(userId, deviceIds, groupIds, from, to);
|
||||
String fromString, String toString) throws SQLException, IOException {
|
||||
DateTime from = DateUtil.parseDateTime(fromString);
|
||||
DateTime to = DateUtil.parseDateTime(toString);
|
||||
Collection<SummaryReport> summaries = getObjects(userId, deviceIds, groupIds, from.toDate(), to.toDate());
|
||||
String templatePath = Context.getConfig().getString("report.templatesPath",
|
||||
"templates/export/");
|
||||
try (InputStream inputStream = new FileInputStream(templatePath + "/summary.xlsx")) {
|
||||
@@ -93,6 +97,7 @@ public final class Summary {
|
||||
jxlsContext.putVar("to", to);
|
||||
jxlsContext.putVar("distanceUnit", ReportUtils.getDistanceUnit(userId));
|
||||
jxlsContext.putVar("speedUnit", ReportUtils.getSpeedUnit(userId));
|
||||
jxlsContext.putVar("timezone", from.getZone());
|
||||
JxlsHelper.getInstance().setUseFastFormulaProcessor(false)
|
||||
.processTemplate(inputStream, outputStream, jxlsContext);
|
||||
}
|
||||
|
||||
@@ -26,6 +26,7 @@ import java.util.Collection;
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
|
||||
import org.joda.time.DateTime;
|
||||
import org.jxls.area.Area;
|
||||
import org.jxls.builder.xls.XlsCommentAreaBuilder;
|
||||
import org.jxls.common.CellRef;
|
||||
@@ -34,6 +35,7 @@ import org.jxls.transform.Transformer;
|
||||
import org.jxls.transform.poi.PoiTransformer;
|
||||
import org.jxls.util.TransformerFactory;
|
||||
import org.traccar.Context;
|
||||
import org.traccar.helper.DateUtil;
|
||||
import org.traccar.model.Device;
|
||||
import org.traccar.model.Group;
|
||||
import org.traccar.model.Position;
|
||||
@@ -175,12 +177,14 @@ 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 {
|
||||
String fromString, String toString) throws SQLException, IOException {
|
||||
ArrayList<DeviceReport> devicesTrips = new ArrayList<>();
|
||||
ArrayList<String> sheetNames = new ArrayList<>();
|
||||
DateTime from = DateUtil.parseDateTime(fromString);
|
||||
DateTime to = DateUtil.parseDateTime(toString);
|
||||
for (long deviceId: ReportUtils.getDeviceList(deviceIds, groupIds)) {
|
||||
Context.getPermissionsManager().checkDevice(userId, deviceId);
|
||||
Collection<TripReport> trips = detectTrips(deviceId, from, to);
|
||||
Collection<TripReport> trips = detectTrips(deviceId, from.toDate(), to.toDate());
|
||||
DeviceReport deviceTrips = new DeviceReport();
|
||||
Device device = Context.getIdentityManager().getDeviceById(deviceId);
|
||||
deviceTrips.setDeviceName(device.getName());
|
||||
@@ -204,6 +208,7 @@ public final class Trips {
|
||||
jxlsContext.putVar("to", to);
|
||||
jxlsContext.putVar("distanceUnit", ReportUtils.getDistanceUnit(userId));
|
||||
jxlsContext.putVar("speedUnit", ReportUtils.getSpeedUnit(userId));
|
||||
jxlsContext.putVar("timezone", from.getZone());
|
||||
Transformer transformer = TransformerFactory.createTransformer(inputStream, outputStream);
|
||||
List<Area> xlsAreas = new XlsCommentAreaBuilder(transformer).build();
|
||||
for (Area xlsArea : xlsAreas) {
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user