Commit b96a90a4b347d409fb9a4405af06ab36347a0e5f

Authored by Marcelo Puebla
1 parent bd8d9956da
Exists in master and in 1 other branch validar_pve

Le agrego cantidad de uno al primer producto.

src/app/components/busqueda-productos/busqueda-productos.component.ts
... ... @@ -41,6 +41,7 @@ export class BusquedaProductosComponent implements OnInit {
41 41  
42 42 agregarAlCarrito(producto: Producto) {
43 43  
  44 + producto.cantidad = 1;
44 45 this.productoService.setProductos(producto);
45 46 }
46 47