aboutsummaryrefslogtreecommitdiff
path: root/web/app/AttributeFormatter.js
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2017-07-18 00:27:42 +1200
committerGitHub <noreply@github.com>2017-07-18 00:27:42 +1200
commitaf256a07e31d65013c294962ad42443d6e50c5f5 (patch)
treef09b8736c685632387767aff8d8d6e2ca04d97a1 /web/app/AttributeFormatter.js
parent1386a568850016ad3a68d9c40d682efa9c407bf4 (diff)
parent1ff8bbde713392126181dabfeb076a84353cfd83 (diff)
downloadetbsa-traccar-web-af256a07e31d65013c294962ad42443d6e50c5f5.tar.gz
etbsa-traccar-web-af256a07e31d65013c294962ad42443d6e50c5f5.tar.bz2
etbsa-traccar-web-af256a07e31d65013c294962ad42443d6e50c5f5.zip
Merge pull request #529 from Abyss777/filter_geofences
Implement Geofences column for Devices with filtering
Diffstat (limited to 'web/app/AttributeFormatter.js')
-rw-r--r--web/app/AttributeFormatter.js14
1 files changed, 14 insertions, 0 deletions
diff --git a/web/app/AttributeFormatter.js b/web/app/AttributeFormatter.js
index 3e6758a..47a924a 100644
--- a/web/app/AttributeFormatter.js
+++ b/web/app/AttributeFormatter.js
@@ -74,6 +74,18 @@ Ext.define('Traccar.AttributeFormatter', {
}
},
+ geofenceIdFormatter: function (value) {
+ var geofence, store;
+ if (value !== 0) {
+ store = Ext.getStore('AllGeofences');
+ if (store.getTotalCount() === 0) {
+ store = Ext.getStore('Geofences');
+ }
+ geofence = store.getById(value);
+ return geofence ? geofence.get('name') : value;
+ }
+ },
+
driverUniqueIdFormatter: function (value) {
var driver, store;
if (value !== 0) {
@@ -139,6 +151,8 @@ Ext.define('Traccar.AttributeFormatter', {
return this.deviceIdFormatter;
} else if (key === 'groupId') {
return this.groupIdFormatter;
+ } else if (key === 'geofenceId') {
+ return this.geofenceIdFormatter;
} else if (key === 'lastUpdate') {
return this.lastUpdateFormatter;
} else if (key === 'spentFuel') {