aboutsummaryrefslogtreecommitdiff
path: root/web/app/AttributeFormatter.js
diff options
context:
space:
mode:
authorAbyss777 <abyss@fox5.ru>2017-07-17 09:21:43 +0500
committerAbyss777 <abyss@fox5.ru>2017-07-17 09:21:43 +0500
commit714da0355baee78fb28e97aed95db68a63c43424 (patch)
tree2972a37765510e6c53a91e652538baab1d110ca4 /web/app/AttributeFormatter.js
parentdab4694bcab525bcc26e6af42aacc45901093dc2 (diff)
downloadetbsa-traccar-web-714da0355baee78fb28e97aed95db68a63c43424.tar.gz
etbsa-traccar-web-714da0355baee78fb28e97aed95db68a63c43424.tar.bz2
etbsa-traccar-web-714da0355baee78fb28e97aed95db68a63c43424.zip
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') {