aboutsummaryrefslogtreecommitdiff
path: root/web/app/model/ReportSummary.js
diff options
context:
space:
mode:
authorChristoph Krey <krey.christoph@gmail.com>2018-04-14 18:48:41 +0200
committerChristoph Krey <krey.christoph@gmail.com>2018-04-14 18:48:41 +0200
commit6422cbef5728dd18dfe22f1cc02e72e7ae0a8f60 (patch)
tree4b3c0a1d85cef92dbb1d2f971cb1d8d9c9770b8f /web/app/model/ReportSummary.js
parent0e61ed83b59d9aaed9d61905a6a35f3a107fc9ca (diff)
downloadetbsa-traccar-web-6422cbef5728dd18dfe22f1cc02e72e7ae0a8f60.tar.gz
etbsa-traccar-web-6422cbef5728dd18dfe22f1cc02e72e7ae0a8f60.tar.bz2
etbsa-traccar-web-6422cbef5728dd18dfe22f1cc02e72e7ae0a8f60.zip
[NEW] Feature Request: Add Odometer to Summary, Trips, and Stops Reports #652
Diffstat (limited to 'web/app/model/ReportSummary.js')
-rw-r--r--web/app/model/ReportSummary.js8
1 files changed, 8 insertions, 0 deletions
diff --git a/web/app/model/ReportSummary.js b/web/app/model/ReportSummary.js
index 4bc7873..dcc0365 100644
--- a/web/app/model/ReportSummary.js
+++ b/web/app/model/ReportSummary.js
@@ -39,6 +39,14 @@ Ext.define('Traccar.model.ReportSummary', {
type: 'float',
convert: Traccar.AttributeFormatter.getConverter('distance')
}, {
+ name: 'startOdometer',
+ type: 'float',
+ convert: Traccar.AttributeFormatter.getConverter('distance')
+ }, {
+ name: 'endOdometer',
+ type: 'float',
+ convert: Traccar.AttributeFormatter.getConverter('distance')
+ }, {
name: 'engineHours',
type: 'int'
}, {