import { ExclamationCircleIcon } from "@heroicons/react/24/solid"; import { useEffect, useState } from "react"; import Alert from "@/components/elements/Alert"; import AppBar from "@/components/layouts/AppBar"; import Image from "@/components/elements/Image"; import Layout from "@/components/layouts/Layout"; import LineDivider from "@/components/elements/LineDivider"; import Link from "@/components/elements/Link"; import ProgressBar from "@/components/elements/ProgressBar"; import Spinner from "@/components/elements/Spinner"; import apiOdoo from "@/core/utils/apiOdoo"; import { useAuth } from "@/core/utils/auth"; import { deleteItemCart, getCart } from "@/core/utils/cart"; import currencyFormat from "@/core/utils/currencyFormat"; import { getItemAddress } from "@/core/utils/address"; import { useRouter } from "next/router"; import WithAuth from "@/components/auth/WithAuth"; import { toast } from "react-hot-toast"; import getFileBase64 from "@/core/utils/getFileBase64"; import VariantCard from "@/components/variants/VariantCard"; export default function Checkout() { const router = useRouter(); const [ auth ] = useAuth(); const [ addresses, setAddresses ] = useState(null); const [ poNumber, setPoNumber ] = useState(''); const [ poFile, setPoFile ] = useState(''); const [ selectedAddress, setSelectedAddress ] = useState({ shipping: null, invoicing: null }); const [ selectedPayment, setSelectedPayment ] = useState(null); const [ products, setProducts ] = useState(null); const [ totalPriceBeforeTax, setTotalPriceBeforeTax ] = useState(0); const [ totalTaxAmount, setTotalTaxAmount ] = useState(0); const [ totalDiscountAmount, setTotalDiscountAmount ] = useState(0); const [ finishCheckout, setFinishCheckout ] = useState(null); const payments = [ { name: 'BCA', number: '8870-4000-81' }, { name: 'MANDIRI', number: '155-0067-6869-75' }, ]; useEffect(() => { const getAddresses = async () => { if (auth) { const dataAddresses = await apiOdoo('GET', `/api/v1/user/${auth.id}/address`); setAddresses(dataAddresses); } }; getAddresses(); }, [auth]); useEffect(() => { const getProducts = async () => { let cart = getCart(); let productIds = Object .values(cart) .filter((itemCart) => itemCart.selected == true) .map((itemCart) => itemCart.product_id); if (productIds.length > 0) { productIds = productIds.join(','); let dataProducts = await apiOdoo('GET', `/api/v1/product_variant/${productIds}`); dataProducts = dataProducts.map((product) => ({ ...product, quantity: cart[product.id].quantity, selected: cart[product.id].selected, })); setProducts(dataProducts); } else { if (auth) router.push('/shop/cart'); } }; getProducts(); }, [router, auth]); useEffect(() => { if (addresses) { const matchAddress = (key) => { const addressToMatch = getItemAddress(key); let foundAddress = addresses.filter((address) => address.id == addressToMatch); if (foundAddress.length > 0) { return foundAddress[0]; } return addresses[0]; } setSelectedAddress({ shipping: matchAddress('shipping'), invoicing: matchAddress('invoicing'), }); }; }, [addresses]); useEffect(() => { if (products) { const productsSelected = products.filter((product) => product.selected == true); let calculateTotalPriceBeforeTax = 0; let calculateTotalTaxAmount = 0; let calculateTotalDiscountAmount = 0; productsSelected.forEach(product => { let priceBeforeTax = product.price.price / 1.11; calculateTotalPriceBeforeTax += priceBeforeTax * product.quantity; calculateTotalTaxAmount += (product.price.price - priceBeforeTax) * product.quantity; calculateTotalDiscountAmount += (product.price.price - product.price.price_discount) * product.quantity; }); setTotalPriceBeforeTax(calculateTotalPriceBeforeTax); setTotalTaxAmount(calculateTotalTaxAmount); setTotalDiscountAmount(calculateTotalDiscountAmount); } }, [products]); const submit = async () => { if (!selectedPayment) { toast.error('Mohon pilih metode pembayaran', { position: 'bottom-center' }); return; } let productOrder = products.map((product) => ({ 'product_id': product.id, 'quantity': product.quantity })); let data = { 'partner_shipping_id': selectedAddress.shipping.id, 'partner_invoice_id': selectedAddress.invoicing.id, 'order_line': JSON.stringify(productOrder) }; if (auth?.company && !poFile) { toast.error('Mohon isi file PO', { position: 'bottom-center' }); return; }; if (poNumber) data.po_number = poNumber; if (poFile) data.po_file = await getFileBase64(poFile); const checkoutToOdoo = await apiOdoo('POST', `/api/v1/partner/${auth.partner_id}/sale_order/checkout`, data); for (const product of products) { deleteItemCart(product.id); } setFinishCheckout(checkoutToOdoo); } return ( { finishCheckout ? (

Terima Kasih atas Pembelian Anda

Rincian belanja sudah kami kirimkan ke email anda. Mohon dicek kembali. jika tidak menerima email anda dapat menghubungi kami disini.

{ finishCheckout.name }

No. Transaksi

Mohon konfirmasi pembelian Anda disini
) : ( <> { !products && !addresses && (
) } { products && addresses && ( <>
Jika mengalami kesulitan dalam melakukan pembelian di website Indoteknik. Hubungi kami disini

Alamat Pengiriman

Pilih Alamat Lain
{ selectedAddress.shipping && (

{ selectedAddress.shipping.name }

{ selectedAddress.shipping.mobile }

{ selectedAddress.shipping.street }, { selectedAddress.shipping.city.name }

) }
{products.map((product, index) => ( ))}

Ringkasan Pesanan

{products.length} Barang


Subtotal

{currencyFormat(totalPriceBeforeTax)}

PPN 11%

{currencyFormat(totalTaxAmount)}

Total Diskon

- {currencyFormat(totalDiscountAmount)}


Grand Total

{currencyFormat(totalPriceBeforeTax + totalTaxAmount - totalDiscountAmount)}

*) Belum termasuk biaya pengiriman

Dengan melakukan pembelian melalui website Indoteknik, saya menyetujui Syarat & Ketentuan yang berlaku

Alamat Penagihan

Pilih Alamat Lain
{ selectedAddress.invoicing && (

{ selectedAddress.invoicing.name }

{ selectedAddress.invoicing.mobile }

{ selectedAddress.invoicing.street } { selectedAddress.invoicing.street2 }

) }

Metode Pembayaran (Wajib dipilih)

{ payments.map((payment, index) => ( )) }

Purchase Order

setPoNumber(e.target.value)} />
setPoFile(e.target.files[0])} />
) } ) }
) }