Commit d5bf6959f820deba9ba9930f3d7c052bb189fd60

Authored by Marcelo Puebla
1 parent 00908d6e72
Exists in develop

Fix

Envio campo orden null para evitar error
Showing 1 changed file with 2 additions and 1 deletions   Show diff stats
src/js/controller.js
... ... @@ -58,7 +58,8 @@ angular.module('focaLogisticaPedidoRuta').controller('focaLogisticaPedidoRutaCon
58 58 resolve: {
59 59 idVehiculo: function () { return idVehiculo; },
60 60 idRemito: function () { return idRemito; },
61   - fechaReparto: function () { return $scope.fechaReparto; }
  61 + fechaReparto: function () { return $scope.fechaReparto; },
  62 + orden: function () { return null; }
62 63 }
63 64 }
64 65 );