You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
173 lines
9.1 KiB
JavaScript
173 lines
9.1 KiB
JavaScript
import React from 'react'
|
|
import { Link, router } from '@inertiajs/react'
|
|
import { Head } from '@inertiajs/react'
|
|
import { HiEye } from 'react-icons/hi2'
|
|
|
|
import AuthenticatedLayout from '@/Layouts/AuthenticatedLayout'
|
|
import Pagination from '@/Components/Pagination'
|
|
import { formatIDR } from '@/utils'
|
|
import Button from '@/Components/Button'
|
|
import { HiOutlineReply, HiRefresh } from 'react-icons/hi'
|
|
|
|
export default function DepositHistory(props) {
|
|
const {
|
|
query: { links, data },
|
|
customer,
|
|
} = props
|
|
|
|
return (
|
|
<AuthenticatedLayout
|
|
page={'Mitra WBB'}
|
|
action={[customer.name, 'Riwayat Deposit']}
|
|
parent={route('mitra.edit', customer)}
|
|
>
|
|
<Head title="Deposit" />
|
|
|
|
<div>
|
|
<div className="mx-auto sm:px-6 lg:px-8 ">
|
|
<div className="p-6 overflow-hidden shadow-sm sm:rounded-lg bg-gray-200 dark:bg-gray-800 space-y-4">
|
|
<div className="w-full flex flex-row justify-end">
|
|
<Button
|
|
onClick={() =>
|
|
router.visit(
|
|
route(route().current(), customer)
|
|
)
|
|
}
|
|
>
|
|
<HiRefresh className="w-5 h-5" />
|
|
</Button>
|
|
</div>
|
|
<div className="overflow-auto">
|
|
<div>
|
|
<table className="w-full text-sm text-left text-gray-500 dark:text-gray-400 mb-4">
|
|
<thead className="text-xs text-gray-700 uppercase bg-gray-50 dark:bg-gray-700 dark:text-gray-400">
|
|
<tr>
|
|
<th
|
|
scope="col"
|
|
className="py-3 px-6"
|
|
>
|
|
#
|
|
</th>
|
|
<th
|
|
scope="col"
|
|
className="py-3 px-6"
|
|
>
|
|
Customer
|
|
</th>
|
|
<th
|
|
scope="col"
|
|
className="py-3 px-3"
|
|
>
|
|
Debit
|
|
</th>
|
|
<th
|
|
scope="col"
|
|
className="py-3 px-3"
|
|
>
|
|
Credit
|
|
</th>
|
|
<th
|
|
scope="col"
|
|
className="py-3 px-6"
|
|
>
|
|
Tanggal
|
|
</th>
|
|
<th
|
|
scope="col"
|
|
className="py-3 px-6"
|
|
>
|
|
Note
|
|
</th>
|
|
<th
|
|
scope="col"
|
|
className="py-3 px-6"
|
|
>
|
|
Status
|
|
</th>
|
|
<th
|
|
scope="col"
|
|
className="py-3 px-6"
|
|
>
|
|
Approver
|
|
</th>
|
|
<th
|
|
scope="col"
|
|
className="py-3 px-6"
|
|
/>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{data.map((deposit) => (
|
|
<tr
|
|
className="bg-white border-b dark:bg-gray-800 dark:border-gray-700"
|
|
key={deposit.id}
|
|
>
|
|
<td
|
|
scope="row"
|
|
className="py-4 px-6 font-medium text-gray-900 whitespace-nowrap dark:text-white"
|
|
>
|
|
{deposit.description}
|
|
</td>
|
|
<td className="py-4 px-6">
|
|
<Link
|
|
className="hover:underline"
|
|
href={route(
|
|
'mitra.edit',
|
|
customer.id
|
|
)}
|
|
>
|
|
{customer.name}
|
|
</Link>
|
|
</td>
|
|
<td className="py-4 px-3">
|
|
{`Rp ${formatIDR(
|
|
deposit.credit
|
|
)}`}
|
|
</td>
|
|
<td className="py-4 px-3">
|
|
{`Rp ${formatIDR(
|
|
deposit.debit
|
|
)}`}
|
|
</td>
|
|
<td className="py-4 px-6">
|
|
{deposit.format_created_at}
|
|
</td>
|
|
<td className="py-4 px-6">
|
|
{deposit.note}
|
|
</td>
|
|
<td
|
|
className={`py-4 px-6 ${deposit.status.text_color}`}
|
|
>
|
|
{deposit.status.text}
|
|
</td>
|
|
<td className="py-4 px-6">
|
|
{deposit.editor?.name}
|
|
</td>
|
|
<td className="py-4 px-6 flex justify-center">
|
|
<Link
|
|
href={route(
|
|
'deposit.edit',
|
|
deposit
|
|
)}
|
|
className="flex space-x-1 items-center hover:underline"
|
|
>
|
|
<HiEye />
|
|
<div>Lihat</div>
|
|
</Link>
|
|
</td>
|
|
</tr>
|
|
))}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<div className="w-full flex items-center justify-center">
|
|
<Pagination links={links} />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</AuthenticatedLayout>
|
|
)
|
|
}
|