aboutsummaryrefslogtreecommitdiff
path: root/web/app/model
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2020-10-06 17:06:03 -0700
committerAnton Tananaev <anton.tananaev@gmail.com>2020-10-06 17:06:03 -0700
commite22b63aa8afd031961d4e14f785d2217740fb0e7 (patch)
treed857158ada4be5d2198db086c6281109916ea712 /web/app/model
parentc8aadd6a14fd540fab0ad869d9daba4f9428a4fb (diff)
downloadetbsa-traccar-web-e22b63aa8afd031961d4e14f785d2217740fb0e7.tar.gz
etbsa-traccar-web-e22b63aa8afd031961d4e14f785d2217740fb0e7.tar.bz2
etbsa-traccar-web-e22b63aa8afd031961d4e14f785d2217740fb0e7.zip
Implement daily summary report
Diffstat (limited to 'web/app/model')
-rw-r--r--web/app/model/ReportSummary.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/web/app/model/ReportSummary.js b/web/app/model/ReportSummary.js
index dcc0365..559ffd4 100644
--- a/web/app/model/ReportSummary.js
+++ b/web/app/model/ReportSummary.js
@@ -27,6 +27,10 @@ Ext.define('Traccar.model.ReportSummary', {
name: 'deviceName',
type: 'string'
}, {
+ name: 'startTime',
+ type: 'date',
+ dateFormat: 'c'
+ }, {
name: 'maxSpeed',
type: 'float',
convert: Traccar.AttributeFormatter.getConverter('speed')