diff --git a/apps/storefront/src/pages/quote/components/QuoteDetailSummary.tsx b/apps/storefront/src/pages/quote/components/QuoteDetailSummary.tsx index 15133eb2..218da7cb 100644 --- a/apps/storefront/src/pages/quote/components/QuoteDetailSummary.tsx +++ b/apps/storefront/src/pages/quote/components/QuoteDetailSummary.tsx @@ -111,7 +111,7 @@ export default function QuoteDetailSummary(props: QuoteDetailSummaryProps) { {priceFormat(getCurrentPrice(quotedSubtotal, quoteDetailTax))} - {+status !== 1 || quoteDetail?.shippingMethod?.id ? ( + {quoteDetail?.shippingMethod?.id ? ( <> - {b3Lang('quoteDetail.summary.shipping')} + {`${b3Lang('quoteDetail.summary.shipping')}(${ + quoteDetail?.shippingMethod?.description || '' + })`} {priceFormat(+shipping)} @@ -137,6 +139,38 @@ export default function QuoteDetailSummary(props: QuoteDetailSummaryProps) { ) : null} + + {quoteDetail?.salesRepEmail && + !quoteDetail?.shippingMethod?.id && + (+status === 1 || +status === 5) ? ( + <> + + + {`${b3Lang('quoteDetail.summary.shipping')}(${b3Lang( + 'quoteDetail.summary.quoteCheckout' + )})`} + + TBD + + + {b3Lang('quoteDetail.summary.tax')} + TBD + + + ) : null}