diff --git a/wizard/app/scripts/controllers/trunks/physical.js b/wizard/app/scripts/controllers/trunks/physical.js index 03c77787..8409f5a9 100644 --- a/wizard/app/scripts/controllers/trunks/physical.js +++ b/wizard/app/scripts/controllers/trunks/physical.js @@ -13,13 +13,10 @@ angular.module('nethvoiceWizardUiApp') $scope.allDevices = {}; $scope.allVendors = {}; $scope.allModels = {}; - $scope.networks = {}; - $scope.networkLength = 0; $scope.sipTrunks = {}; $scope.selectedDevice = {}; $scope.newGateway = {}; $scope.onSave = false; - $scope.scanned = false; $scope.users = []; $scope.physicalLimit = {}; $scope.stringToCheckGrandstream = "grandstream"; @@ -95,25 +92,16 @@ angular.module('nethvoiceWizardUiApp') $scope.getNetworkList = function (reload) { $scope.view.changeRoute = reload; - ConfigService.getNetworks().then(function (res) { - $scope.networks = res.data; - for (var eth in res.data) { - $scope.allDevices[eth] = []; - } - $scope.networkLength = Object.keys(res.data).length; - $scope.view.changeRoute = false; - }, function (err) { - console.log(err); - $scope.view.changeRoute = false; - }); + $scope.getGatewayList('eth-fake', 'fake-network'); + $scope.view.changeRoute = false; }; $scope.getGatewayList = function (key, network) { DeviceService.gatewayListByNetwork(network).then(function (res) { $scope.allDevices[key] = res.data; $scope.pushKey(key); + $scope.selectedDevice = res.data[0]; $scope.onSave = false; - $scope.scanned = true; }, function (err) { console.log(err); }); @@ -131,14 +119,6 @@ angular.module('nethvoiceWizardUiApp') } } - $scope.startScan = function (key, network) { - DeviceService.startScan(network).then(function (res) { - $scope.getGatewayList(key, network); - }, function (err) { - console.log(err); - }); - }; - $scope.updateExtraFields = function (device) { var tempArr = $scope.allModels[device.manufacturer]; var base_num = device.manufacturer === 'Patton' ? 0 : 1; @@ -285,10 +265,7 @@ angular.module('nethvoiceWizardUiApp') device.onDeleteSuccess = true; device.onPushSuccess = false; $scope.selectedDevice = {}; - $scope.getGatewayList(device.network_name, { - netmask: device.netmask_green, - ip: device.ipv4_green - }); + $scope.getGatewayList('eth-fake', 'fake-network'); //trunks TrunkService.count().then(function (res) { $scope.menuCount.trunks = res.data; diff --git a/wizard/app/scripts/i18n/locale-it.json b/wizard/app/scripts/i18n/locale-it.json index 9083c069..842ac21e 100644 --- a/wizard/app/scripts/i18n/locale-it.json +++ b/wizard/app/scripts/i18n/locale-it.json @@ -96,6 +96,7 @@ "Status": "Stato", "Add user": "Aggiungi utente", "Add gateway": "Aggiungi gateway", + "Main network": "Rete principale", "Create user": "Crea utente", "Go": "Vai", "Netmask": "Maschera di rete", @@ -1061,5 +1062,7 @@ "Google STT official page": "Pagina ufficiale di Google SST", "Google STT official documentation": "Documentazione ufficiale di Google SST", "Google Speec-to-text": "Google Speech-to-Text", - "Token description": "Per accedere ai servizi di Google Cloud, è necessario fornire un token di autorizzazione valido. Puoi caricare il file JSON contenente le credenziali necessarie tramite il pulsante 'Upload'. Una volta caricato il file, il sistema utilizzerà le credenziali contenute nel JSON per autenticare le tue richieste ai servizi di Google Cloud." + "Token description": "Per accedere ai servizi di Google Cloud, è necessario fornire un token di autorizzazione valido. Puoi caricare il file JSON contenente le credenziali necessarie tramite il pulsante 'Upload'. Una volta caricato il file, il sistema utilizzerà le credenziali contenute nel JSON per autenticare le tue richieste ai servizi di Google Cloud.", + "No gateways configured": "Nessun gateway configurato", + "Click on the button below to add you first gateway": "Clicca sul pulsante qui sotto per aggiungere il tuo primo gateway" } diff --git a/wizard/app/styles/main.css b/wizard/app/styles/main.css index 49f11e18..dfb88c00 100644 --- a/wizard/app/styles/main.css +++ b/wizard/app/styles/main.css @@ -3686,3 +3686,7 @@ a.black:active { .adjust-search-button { height: 33px; } + +.adjust-center { + text-align: center !important; +} \ No newline at end of file diff --git a/wizard/app/views/trunks/physical.html b/wizard/app/views/trunks/physical.html index da4beac9..f53a2337 100644 --- a/wizard/app/views/trunks/physical.html +++ b/wizard/app/views/trunks/physical.html @@ -14,34 +14,13 @@
- {{'There are problems to get networks configurations' | translate}} -
-