From 607522a21625610248db7a586e6285bbb0331391 Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Wed, 16 Sep 2015 22:36:10 +1200 Subject: Clean up commands controller --- web/app/view/command/CommandDialogController.js | 11 ++++++----- web/l10n/en.js | 1 + 2 files changed, 7 insertions(+), 5 deletions(-) (limited to 'web') diff --git a/web/app/view/command/CommandDialogController.js b/web/app/view/command/CommandDialogController.js index 6dfb322f5..8c13ea1e1 100644 --- a/web/app/view/command/CommandDialogController.js +++ b/web/app/view/command/CommandDialogController.js @@ -24,14 +24,15 @@ Ext.define('Traccar.view.command.CommandDialogController', { }, onSendClick: function(button) { - var attributes; - var form = button.up('window').down('form'); + var attributes, value, record, form; + + form = button.up('window').down('form'); form.updateRecord(); - var record = form.getRecord(); + record = form.getRecord(); if (record.get('type') === 'positionPeriodic') { attributes = this.lookupReference('paramPositionPeriodic'); - var value = attributes.down('numberfield[name="frequency"]').getValue(); + value = attributes.down('numberfield[name="frequency"]').getValue(); value *= attributes.down('combobox[name="unit"]').getValue(); record.set('attributes', { @@ -49,8 +50,8 @@ Ext.define('Traccar.view.command.CommandDialogController', { onSendReturn: function(options, success, response) { if (Traccar.ErrorManager.check(success, response)) { + Ext.toast(strings.commandSent); this.closeView(); - //TODO toast Ext.toast(strings.loginCreated); } }, diff --git a/web/l10n/en.js b/web/l10n/en.js index 436932a72..e69751cb3 100644 --- a/web/l10n/en.js +++ b/web/l10n/en.js @@ -79,6 +79,7 @@ var strings = { commandTitle: 'Command', commandSend: 'Send', commandType: 'Type', + commandSent: 'Command has been sent', commandPositionPeriodic: 'Periodic Reporting', commandPositionStop: 'Stop Reporting', commandEngineStop: 'Engine Stop', -- cgit v1.2.3