Commit 99e0be14ad526b1b86126325a0ee8e2cbb44e1f4

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

Merge branch 'master' into 'develop'

Master(efernandez)

See merge request !3
src/js/controller.js
... ... @@ -4,7 +4,8 @@ angular.module('focaAutorizarHojaRuta')
4 4 'focaAutorizarHojaRutaService',
5 5 'focaBotoneraLateralService',
6 6 '$filter',
7   - function($scope, focaAutorizarHojaRutaService, focaBotoneraLateralService, $filter) {
  7 + 'focaModalService',
  8 + function($scope, focaAutorizarHojaRutaService, focaBotoneraLateralService, $filter, focaModalService) {
8 9  
9 10 $scope.now = Date.now();
10 11 $scope.notasPedido = []
... ... @@ -35,11 +36,11 @@ angular.module('focaAutorizarHojaRuta')
35 36 }
36 37  
37 38 $scope.verNotaPedido = function(notaPedido) {
38   - alert('En desarrollo');
  39 + focaModalService.alert('Vista no disponible');
39 40 };
40 41  
41 42 $scope.autorizar = function() {
42   - alert('En Desarrollo');
  43 + focaModalService.alert('Vista no disponible');
43 44 };
44 45  
45 46 }]);