diff --git a/src/components/Invoice.tsx b/src/components/Invoice.tsx index 9bb55d2..f974593 100644 --- a/src/components/Invoice.tsx +++ b/src/components/Invoice.tsx @@ -213,7 +213,7 @@ const Invoice = () => { تعداد مبلغ واحد (ریال) مبلغ کل (ریال) - تخفیف (ریال) + تخفیف (درصد) مبلغ کل پس از تخفیف (ریال) جمع مالیات و عوارض ارزش افزوده (ریال) جمع کل پس از تخفیف و مالیات و عوارض (ریال) @@ -229,7 +229,7 @@ const Invoice = () => { {item.count} {NumberFormat(Number(item.unitPrice) * 10)} {NumberFormat(Number(item.unitPrice) * Number(item.count) * 10)} - {NumberFormat(Number(item.discount) * 10)} + {NumberFormat(Number(item.discount))} {NumberFormat(Number(item.totalPrice) * 10)} {NumberFormat(Number(item.totalPrice) * 0.1 * 10)} {NumberFormat(Number(item.totalPrice) * 0.1 * 10 + Number(item.totalPrice) * 10)}