Commit c44a00eefeee04dd2c2ca5508e064efa0f59ecc9

Authored by Marcelo Puebla
1 parent 45445a995a
Exists in develop

Fix

Calcular total al limpiar carrito
src/app/shared/cancelar-compra/cancelar-compra.component.ts
... ... @@ -33,6 +33,7 @@ export class CancelarCompraComponent implements OnInit, OnDestroy {
33 33  
34 34 limpiarCarritoYvolver() {
35 35 this.articuloService.carrito = [];
  36 + this.articuloService.calcularTotal();
36 37 this.router.navigate(['/']);
37 38 }
38 39 }