diff --git a/frontend/src/app/features/calculator/services/quote-estimator.service.ts b/frontend/src/app/features/calculator/services/quote-estimator.service.ts index 9ec6d61..988cc7b 100644 --- a/frontend/src/app/features/calculator/services/quote-estimator.service.ts +++ b/frontend/src/app/features/calculator/services/quote-estimator.service.ts @@ -384,8 +384,9 @@ export class QuoteEstimatorService { ); const grandTotal = Number(sessionData?.grandTotalChf); - const effectiveSetupCost = - Number(sessionData?.setupCostChf ?? session?.setupCostChf ?? 0); + const effectiveSetupCost = Number( + sessionData?.setupCostChf ?? session?.setupCostChf ?? 0, + ); const fallbackTotal = Number(sessionData?.itemsTotalChf || 0) + effectiveSetupCost + diff --git a/frontend/src/app/features/checkout/checkout.component.html b/frontend/src/app/features/checkout/checkout.component.html index f95bec6..5cda654 100644 --- a/frontend/src/app/features/checkout/checkout.component.html +++ b/frontend/src/app/features/checkout/checkout.component.html @@ -331,11 +331,14 @@
{{ "CHECKOUT.SETUP_FEE" | translate }} {{ - (session.baseSetupCostChf ?? session.session.setupCostChf) + session.baseSetupCostChf ?? session.session.setupCostChf | currency: "CHF" }}
-
+
Cambio Ugello {{ session.nozzleChangeCostChf | currency: "CHF" }}