feat: create CartSalesComponent for managing sales cart logic and order flow
All checks were successful
Build (develop) / Promote (main) / build-and-push-deploy (push) Successful in 8m31s

This commit is contained in:
Luis Eduardo Estevao
2026-05-14 12:34:16 -03:00
parent cfb1d44b8c
commit 4c6ff6e148

View File

@@ -1585,6 +1585,7 @@ export class CartSalesComponent
console.log('Retorno cadastro endereço: ' + result); console.log('Retorno cadastro endereço: ' + result);
if (result != null) { if (result != null) {
localStorage.setItem('address', JSON.stringify(result)); localStorage.setItem('address', JSON.stringify(result));
this.updateCart(this.shoppingService.getCart());
this.updateFormAddress(result); this.updateFormAddress(result);
} }
} }