Compare commits

..

3 Commits

Author SHA1 Message Date
Gitea Action
3aec07892c chore: update image tag to 4c6ff6e [skip ci] 2026-05-14 15:44:14 +00:00
Luis Eduardo Estevao
4c6ff6e148 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
2026-05-14 12:34:16 -03:00
Gitea Action
cfb1d44b8c chore: update image tag to 6f91d97 [skip ci] 2026-05-05 19:20:32 +00:00
2 changed files with 2 additions and 1 deletions

View File

@@ -7,4 +7,4 @@ spec:
spec: spec:
containers: containers:
- name: portal - name: portal
image: 172.35.0.216:3000/simplifique/vendaweb-portal:206b4a5 image: 172.35.0.216:3000/simplifique/vendaweb-portal:4c6ff6e

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);
} }
} }