Commit bc623d091bb5008c26b5514992560da24fd736ef

Authored by Nicolás Guarnieri
1 parent 5e1a7f48ec
Exists in master

nuevos campos para guardado de detalles correctamente

Showing 1 changed file with 5 additions and 2 deletions   Show diff stats
src/js/controller.js
... ... @@ -464,14 +464,17 @@ angular.module('focaCrearRemito') .controller('remitoController',
464 464 editCantidad: false,
465 465 editPrecio: false,
466 466 rubro: producto.CodRub,
467   - exentoUnitario: producto.precio,
  467 + netoUnitario: producto.neto,
  468 + exentoUnitario: producto.exento,
468 469 ivaUnitario: producto.IMPIVA,
469 470 impuestoInternoUnitario: producto.ImpInt,
470 471 impuestoInterno1Unitario: producto.ImpInt2,
471 472 impuestoInterno2Unitario: producto.ImpInt3,
472 473 precioLista: producto.precio,
473 474 combustible: 1,
474   - facturado: 0
  475 + facturado: 0,
  476 + idArticulo: producto.id,
  477 + tasaIva: producto.tasaIVA
475 478 };
476 479 $scope.articuloACargar = newArt;
477 480 $scope.cargando = false;