Commit 4e78c16484f7cfe1edb35f41101096a246a3a17a

Authored by Eric Fernandez
1 parent 27ccc80230
Exists in master

lalalan

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
src/js/controllerUltimosDespachos.js
... ... @@ -12,7 +12,7 @@ angular.module('focaCrearFactura')
12 12 function config() {
13 13  
14 14 crearFacturaService.getUltimosDespachos(parametros.planilla).then(function (res) {
15   - $scope.productos = res.data;
  15 + $scope.productos = res.data.slice(1, res.data.length);
16 16 });
17 17 }
18 18