diff options
author | Abyss777 <abyss@fox5.ru> | 2016-11-24 10:45:44 +0500 |
---|---|---|
committer | Abyss777 <abyss@fox5.ru> | 2016-11-24 10:45:44 +0500 |
commit | 0bbf8f554638cdc89d5dd618c500839554602dee (patch) | |
tree | 86616330311bc5c46bab0733af70238f624196f6 /src/org/traccar/reports/Summary.java | |
parent | b14169a2b7bfcaecaa0f5ea9baafad4e7e4f1ae2 (diff) | |
download | trackermap-server-0bbf8f554638cdc89d5dd618c500839554602dee.tar.gz trackermap-server-0bbf8f554638cdc89d5dd618c500839554602dee.tar.bz2 trackermap-server-0bbf8f554638cdc89d5dd618c500839554602dee.zip |
- Use one parser
- Reverted passing variables way
Diffstat (limited to 'src/org/traccar/reports/Summary.java')
-rw-r--r-- | src/org/traccar/reports/Summary.java | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/org/traccar/reports/Summary.java b/src/org/traccar/reports/Summary.java index d7d8ab417..02791fb5e 100644 --- a/src/org/traccar/reports/Summary.java +++ b/src/org/traccar/reports/Summary.java @@ -29,7 +29,6 @@ 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; @@ -84,9 +83,7 @@ public final class Summary { public static void getExcel(OutputStream outputStream, long userId, Collection<Long> deviceIds, Collection<Long> groupIds, - String fromString, String toString) throws SQLException, IOException { - DateTime from = DateUtil.parseDateTime(fromString); - DateTime to = DateUtil.parseDateTime(toString); + DateTime from, DateTime to) throws SQLException, IOException { Collection<SummaryReport> summaries = getObjects(userId, deviceIds, groupIds, from.toDate(), to.toDate()); String templatePath = Context.getConfig().getString("report.templatesPath", "templates/export/"); |