Commit 8af8e6fd0fa34fd8f50b0e8ebbc0de2846dbad74

Authored by Eric Fernandez
Exists in master and in 1 other branch develop

Merge branch 'master' into 'master'

agrego foca-botonera-lateral

See merge request !13
... ... @@ -43,7 +43,7 @@ gulp.task('uglify', ['templates'], function() {
43 43 gulp.dest(paths.tmp),
44 44 rename('foca-admin-seguimiento.min.js'),
45 45 uglify(),
46   - replace('"ngRoute","ui.bootstrap"', ''),
  46 + replace('"ngRoute","ui.bootstrap","focaBotoneraLateral"', ''),
47 47 gulp.dest(paths.dist)
48 48 ]
49 49 );
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>