Commit 17f57ee95ff2709d9d8e8573feee63401b3db3e7

Authored by Jose Pinto
1 parent 13e82391cc
Exists in master

agrego informe choferes

Showing 2 changed files with 14 additions and 0 deletions   Show diff stats
src/js/controller.js
... ... @@ -25,5 +25,15 @@ angular.module('focaInformes')
25 25 }
26 26 );
27 27 };
  28 + $scope.seleccionarChoferes = function() {
  29 + $uibModal.open(
  30 + {
  31 + ariaLabelledBy: 'Informes de choferes',
  32 + templateUrl: 'modal-informe-chofer.html',
  33 + controller: 'focaModalInformeChoferController',
  34 + size: 'lg'
  35 + }
  36 + );
  37 + };
28 38 }
29 39 ]);
... ... @@ -6,6 +6,10 @@ angular.module('focaInformes')
6 6 {
7 7 label: 'Hojas de ruta',
8 8 image: 'cliente.png'
  9 + },
  10 + {
  11 + label: 'Choferes',
  12 + image: 'chofer.png'
9 13 }
10 14 ];
11 15 return result;