Commit 761f527859ade3e56a91b2ac9382d0c764fd3cc1

Authored by Jose Pinto
1 parent cc633aa21d
Exists in master and in 1 other branch develop

agrego foca-botonera-lateral

1 1 angular.module('focaAdminSeguimiento', [
2 2 'ngRoute',
3   - 'ui.bootstrap'
  3 + 'ui.bootstrap',
  4 + 'focaBotoneraLateral'
4 5 ]);
src/js/controller.js
1 1 angular.module('focaAdminSeguimiento') .controller('focaAdminSeguimientoController', [
2   - '$scope', 'focaAdminSeguimientoService', '$location', '$routeParams',
3   - function($scope, focaAdminSeguimientoService, $location, $routeParams) {
  2 + '$scope', '$timeout', 'focaAdminSeguimientoService',
  3 + 'focaBotoneraLateralService','$location', '$routeParams',
  4 + function($scope, $timeout, focaAdminSeguimientoService,
  5 + focaBotoneraLateralService, $location, $routeParams) {
  6 +
4 7 $scope.actividad = '';
5 8  
6 9 $scope.now = new Date();
... ... @@ -21,6 +24,11 @@ angular.module('focaAdminSeguimiento') .controller('focaAdminSeguimientoControll
21 24 $scope.marcadores = [];
22 25 getSeguimiento();
23 26  
  27 + //SETEO BOTONERA LATERAL
  28 + focaBotoneraLateralService.showSalir(true);
  29 + focaBotoneraLateralService.showPausar(false);
  30 + focaBotoneraLateralService.showGuardar(false);
  31 +
24 32 $scope.general = function() {
25 33 $scope.idUsuario = 0;
26 34 getSeguimiento();
src/views/foca-admin-seguimiento.html
... ... @@ -59,13 +59,6 @@
59 59 ng-show="actividad == 'Cobranza'"
60 60 >
61 61 </div>
62   - <button
63   - type="button"
64   - class="btn col-12 my-1 boton-salir"
65   - ng-click="salir()"
66   - >
67   - Salir
68   - </button>
69 62 </div>
70 63 </div>
71 64 </div>