import { ExclamationCircleIcon } from "@heroicons/react/24/solid"; import { useEffect, useState } from "react"; import Alert from "../../components/Alert"; import AppBar from "../../components/AppBar"; import Image from "../../components/Image"; import Layout from "../../components/Layout"; import LineDivider from "../../components/LineDivider"; import Link from "../../components/Link"; import ProgressBar from "../../components/ProgressBar"; import Spinner from "../../components/Spinner"; import apiOdoo from "../../helpers/apiOdoo"; import { useAuth } from "../../helpers/auth"; import { deleteItemCart, getCart } from "../../helpers/cart"; import currencyFormat from "../../helpers/currencyFormat"; import { getItemAddress } from "../../helpers/address"; import { useRouter } from "next/router"; import WithAuth from "../../components/WithAuth"; import { toast } from "react-hot-toast"; export default function Checkout() { const router = useRouter(); const [auth] = useAuth(); const [addresses, setAddresses] = useState(null); 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 terlebih dahulu', { position: 'bottom-center' }); return; } let productOrder = products.map((product) => ({ 'product_id': product.id, 'quantity': product.quantity })); let data = { 'user_id': auth.id, 'partner_id': auth.partner_id, 'partner_shipping_id': selectedAddress.shipping.id, 'partner_invoice_id': selectedAddress.invoicing.id, 'order_line': JSON.stringify(productOrder) } const checkoutToOdoo = await apiOdoo('POST', '/api/v1/sale_order/checkout', data); for (const product of products) { deleteItemCart(product.id); } setFinishCheckout(checkoutToOdoo); } return ( { finishCheckout ? (

Terima Kasih atas Pembelian Anda

Details pembelian sudah kami kirimkan melalui 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.street2 }

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

{product.parent.name}

{product.code || '-'} {product.attributes.length > 0 ? ` | ${product.attributes.join(', ')}` : ''}

{currencyFormat(product.price.price_discount)} × {product.quantity} Barang

{currencyFormat(product.quantity * product.price.price_discount)}

))}

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 }

) }

Pilih Metode Pembayaran

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