diff --git a/src/PowderCoating.Web/Views/Quotes/Create.cshtml b/src/PowderCoating.Web/Views/Quotes/Create.cshtml index 011e52c..bfed60e 100644 --- a/src/PowderCoating.Web/Views/Quotes/Create.cshtml +++ b/src/PowderCoating.Web/Views/Quotes/Create.cshtml @@ -604,6 +604,8 @@ if (taxField) { taxField.value = exemptIds.has(customerId) ? 0 : (meta.companyTaxPercent ?? meta.taxPercent); } + // Recalculate the live preview so it reflects the updated tax rate immediately + if (typeof scheduleAutoPricing === 'function') scheduleAutoPricing(); const noEmail = customerId > 0 && noEmailIds.has(customerId); const emailSection = document.getElementById('emailNotifySection');