diff --git a/src/components/exam/ExamAddonPanel.tsx b/src/components/exam/ExamAddonPanel.tsx index 9766b22..5905a95 100644 --- a/src/components/exam/ExamAddonPanel.tsx +++ b/src/components/exam/ExamAddonPanel.tsx @@ -254,9 +254,7 @@ export const ExamAddonPanel = ({ client, onGoToSign }: ExamAddonPanelProps) => { currentPrice: item.actual_received_amount !== undefined && item.actual_received_amount !== null ? Number(item.actual_received_amount).toFixed(2) - : item.original_price !== undefined && item.original_price !== null - ? Number(item.original_price).toFixed(2) - : '0.00', + : '0.00', combinationItemCode: item.combination_item_code ?? null, isEnjoyDiscount: item.is_enjoy_discount ?? null, discount_name: item.discount_rate ?? null, @@ -1077,10 +1075,13 @@ export const ExamAddonPanel = ({ client, onGoToSign }: ExamAddonPanelProps) => {