Commit efdfb0b11e1fb083453c2e37cdece8dc68582e3d

Authored by Eric
1 parent c79b804663
Exists in master and in 1 other branch develop

limit 4 notes2

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
src/js/controller.js
... ... @@ -19,7 +19,7 @@ angular.module('focaAutorizarHojaRuta')
19 19  
20 20 focaAutorizarHojaRutaService.getNotasPedido($scope.fechaDesde.toISOString().split('.')[0],
21 21 $scope.fechaHasta.toISOString().split('.')[0]).then(function(res) {
22   - $scope.notasPedido = res.data.slice(0, 7);
  22 + $scope.notasPedido = res.data.slice(0, 4);
23 23 });
24 24  
25 25 $scope.getSeleccionados = function() {