Commit d1ffd280f2e828170637e9a4c0efdacdf4ae5f33

Authored by Eric Fernandez
1 parent e27e6ee9e1
Exists in master

agrego rutas para correr modulo unitariamente

Showing 1 changed file with 2 additions and 2 deletions   Show diff stats
1 angular.module('focaAbmPlazoPago') 1 angular.module('focaAbmPlazoPago')
2 .config([ 2 .config([
3 '$routeProvider', 3 '$routeProvider',
4 function($routeProvider) { 4 function($routeProvider) {
5 $routeProvider.when('/plazo-pago', { 5 $routeProvider.when('/plazo-pago', {
6 controller: 'focaAbmPlazosPagoController', 6 controller: 'focaAbmPlazosPagoController',
7 templateUrl: 'foca-abm-plazos-pago-listado.html' 7 templateUrl: 'src/views/foca-abm-plazos-pago-listado.html'
8 }); 8 });
9 } 9 }
10 ]) 10 ])
11 .config([ 11 .config([
12 '$routeProvider', 12 '$routeProvider',
13 function($routeProvider) { 13 function($routeProvider) {
14 $routeProvider.when('/precio-condicion/:idPreciosCondiciones/plazo-pago/:id', { 14 $routeProvider.when('/precio-condicion/:idPreciosCondiciones/plazo-pago/:id', {
15 controller: 'focaAbmPlazoPagoController', 15 controller: 'focaAbmPlazoPagoController',
16 templateUrl: 'foca-abm-plazos-pago-item.html' 16 templateUrl: 'src/views/foca-abm-plazos-pago-item.html'
17 }); 17 });
18 } 18 }
19 ]); 19 ]);
20 20