summaryrefslogtreecommitdiff
path: root/src/lib/quotation
diff options
context:
space:
mode:
authortrisusilo <tri.susilo@altama.co.id>2024-12-31 09:01:02 +0000
committertrisusilo <tri.susilo@altama.co.id>2024-12-31 09:01:02 +0000
commitf66b00a36b39a1efd506fc7d96a240c10e77ec62 (patch)
treef640f608d2fe9da2b61d5fb31af52a16dde66240 /src/lib/quotation
parentd76f96c44f85e7e0efbd544e6b97bd80920b0039 (diff)
parentd20adeb6a5f6e153e2d1cfc8c8c77f4cceb743e8 (diff)
Merged in CR/PPn12% (pull request #400)
CR/PPn12%
Diffstat (limited to 'src/lib/quotation')
-rw-r--r--src/lib/quotation/components/Quotation.jsx7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/lib/quotation/components/Quotation.jsx b/src/lib/quotation/components/Quotation.jsx
index 5a2f63a5..2f4d6c46 100644
--- a/src/lib/quotation/components/Quotation.jsx
+++ b/src/lib/quotation/components/Quotation.jsx
@@ -37,6 +37,7 @@ const { checkoutApi } = require('@/lib/checkout/api/checkoutApi');
const { getProductsCheckout } = require('@/lib/checkout/api/checkoutApi');
const Quotation = () => {
+ const PPN = process.env.NEXT_PUBLIC_PPN ? parseFloat(process.env.NEXT_PUBLIC_PPN) : 0;
const router = useRouter();
const auth = useAuth();
const query = router.query.source ?? null;
@@ -307,7 +308,7 @@ const Quotation = () => {
toast.error('Gagal melakukan transaksi, terjadi kesalahan internal');
};
- const taxTotal = (totalAmount - totalDiscountAmount) * 0.11;
+ const taxTotal = (totalAmount - totalDiscountAmount) * (PPN - 1);
return (
<>
@@ -425,7 +426,7 @@ const Quotation = () => {
<div>{currencyFormat(cartCheckout?.subtotal)}</div>
</div>
<div className='flex gap-x-2 justify-between'>
- <div className='text-gray_r-11'>PPN 11%</div>
+ <div className='text-gray_r-11'>PPN {((PPN - 1) * 100).toFixed(0)}%</div>
<div>{currencyFormat(cartCheckout?.tax)}</div>
</div>
<div className='flex gap-x-2 justify-between'>
@@ -574,7 +575,7 @@ const Quotation = () => {
<div>{currencyFormat(cartCheckout?.subtotal)}</div>
</div>
<div className='flex gap-x-2 justify-between'>
- <div className='text-gray_r-11'>PPN 11%</div>
+ <div className='text-gray_r-11'>PPN {((PPN - 1) * 100).toFixed(0)}%</div>
<div>{currencyFormat(cartCheckout?.tax)}</div>
</div>
<div className='flex gap-x-2 justify-between'>