mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-20 13:32:00 +00:00
feat(FE): API integration debt supplier report
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
|
||||
import Tabs from '@/components/Tabs';
|
||||
import CustomerPaymentTab from '@/components/pages/report/finance/tab/CustomerPaymentTab';
|
||||
import DebtSupplier from '@/components/pages/report/finance/tab/DebtSupplier';
|
||||
import DebtSupplierTab from '@/components/pages/report/finance/tab/DebtSupplierTab';
|
||||
|
||||
const FinanceTabs = () => {
|
||||
const tabs = [
|
||||
@@ -16,7 +16,7 @@ const FinanceTabs = () => {
|
||||
id: '2',
|
||||
label: 'Rekapitulasi Hutang Ke Supplier',
|
||||
|
||||
content: <DebtSupplier />,
|
||||
content: <DebtSupplierTab />,
|
||||
},
|
||||
];
|
||||
|
||||
|
||||
+51
-36
@@ -22,6 +22,7 @@ import { ColumnDef } from '@tanstack/react-table';
|
||||
import { useCallback, useMemo, useState } from 'react';
|
||||
import toast from 'react-hot-toast';
|
||||
import useSWR from 'swr';
|
||||
import Pagination from '@/components/Pagination';
|
||||
|
||||
const DebtSupplierTab = () => {
|
||||
// ===== STATE MANAGEMENT =====
|
||||
@@ -87,37 +88,37 @@ const DebtSupplierTab = () => {
|
||||
}, [filterModal, filterStartDate, filterEndDate]);
|
||||
|
||||
// ===== DATA FETCHING =====
|
||||
// const { data: debtSupplier, isLoading } = useSWR(
|
||||
// isSubmitted
|
||||
// ? () => {
|
||||
// const params = {
|
||||
// supplier_id:
|
||||
// filterSupplier.length > 0
|
||||
// ? filterSupplier.map((v) => String(v.value)).join(',')
|
||||
// : undefined,
|
||||
// filter_by: 'do_date' as const,
|
||||
// start_date: filterStartDate || undefined,
|
||||
// end_date: filterEndDate || undefined,
|
||||
// page: currentPage,
|
||||
// limit: pageSize,
|
||||
// };
|
||||
const { data: debtSupplier, isLoading } = useSWR(
|
||||
isSubmitted
|
||||
? () => {
|
||||
const params = {
|
||||
supplier_id:
|
||||
filterSupplier.length > 0
|
||||
? filterSupplier.map((v) => String(v.value)).join(',')
|
||||
: undefined,
|
||||
filter_by: 'do_date' as const,
|
||||
start_date: filterStartDate || undefined,
|
||||
end_date: filterEndDate || undefined,
|
||||
page: currentPage,
|
||||
limit: pageSize,
|
||||
};
|
||||
|
||||
// return ['debt-supplier-report', params];
|
||||
// }
|
||||
// : null,
|
||||
// ([, params]) =>
|
||||
// FinanceApi.getDebtSupplierReport(
|
||||
// params.supplier_id,
|
||||
// params.filter_by,
|
||||
// params.start_date,
|
||||
// params.end_date,
|
||||
// params.page,
|
||||
// params.limit
|
||||
// )
|
||||
// );
|
||||
const { data: debtSupplier, isLoading } = useSWR(FinanceApi.basePath, () =>
|
||||
FinanceApi.getDebtSupplierReport()
|
||||
return ['debt-supplier-report', params];
|
||||
}
|
||||
: null,
|
||||
([, params]) =>
|
||||
FinanceApi.getDebtSupplierReport(
|
||||
params.supplier_id,
|
||||
params.filter_by,
|
||||
params.start_date,
|
||||
params.end_date,
|
||||
params.page,
|
||||
params.limit
|
||||
)
|
||||
);
|
||||
// const { data: debtSupplier, isLoading } = useSWR(FinanceApi.basePath, () =>
|
||||
// FinanceApi.getDebtSupplierReport()
|
||||
// );
|
||||
|
||||
const data: DebtSupplier[] = useMemo(
|
||||
() =>
|
||||
@@ -391,7 +392,7 @@ const DebtSupplierTab = () => {
|
||||
<>
|
||||
<div className='w-full p-0 sm:p-4 flex flex-col gap-4'>
|
||||
<Card
|
||||
subtitle='Laporan > Kontrol Pembayaran Customer'
|
||||
subtitle='Laporan > Kontrol Hutang Supplier'
|
||||
className={{ wrapper: 'w-full', body: 'p-1!' }}
|
||||
>
|
||||
<div className='mb-4 flex justify-end gap-2 [&_button]:px-4'>
|
||||
@@ -421,7 +422,7 @@ const DebtSupplierTab = () => {
|
||||
</div>
|
||||
</Card>
|
||||
|
||||
{/* {!isSubmitted ? (
|
||||
{!isSubmitted ? (
|
||||
<div className='mt-6 text-center text-gray-500'>
|
||||
Silakan klik tombol Filter untuk mengatur filter dan menampilkan
|
||||
data.
|
||||
@@ -434,8 +435,8 @@ const DebtSupplierTab = () => {
|
||||
<div className='mt-6 text-center text-gray-500'>
|
||||
Tidak ada data yang dapat ditampilkan...
|
||||
</div>
|
||||
) : ( */}
|
||||
{data.map((supplierReport) => {
|
||||
) : (
|
||||
data.map((supplierReport) => {
|
||||
return (
|
||||
<Card
|
||||
key={supplierReport.supplier.id}
|
||||
@@ -470,8 +471,23 @@ const DebtSupplierTab = () => {
|
||||
/>
|
||||
</Card>
|
||||
);
|
||||
})}
|
||||
})
|
||||
)}
|
||||
</div>
|
||||
{meta && data.length > 0 && (
|
||||
<div className='mt-6'>
|
||||
<Pagination
|
||||
currentPage={meta.page}
|
||||
totalItems={meta.total_results}
|
||||
onPageChange={handlePageChange}
|
||||
onRowChange={handleRowChange}
|
||||
onNextPage={handleNextPage}
|
||||
onPrevPage={handlePrevPage}
|
||||
rowOptions={[10, 25, 50, 100]}
|
||||
itemsPerPage={meta.limit}
|
||||
/>
|
||||
</div>
|
||||
)}
|
||||
|
||||
{/* Filter Modal */}
|
||||
<Modal
|
||||
@@ -557,11 +573,10 @@ const DebtSupplierTab = () => {
|
||||
label='Filter Berdasarkan'
|
||||
placeholder='Pilih Filter Berdasarkan'
|
||||
options={dataTypeOptions}
|
||||
value={dataTypeOptions[0]}
|
||||
value={filterDataType}
|
||||
onChange={(val) => {
|
||||
setFilterDataType(val ? (val as OptionType) : undefined);
|
||||
}}
|
||||
isDisabled={true}
|
||||
className={{ wrapper: 'w-full' }}
|
||||
/>
|
||||
</div>
|
||||
@@ -117,7 +117,10 @@ export const ROUTE_PERMISSIONS: Record<string, string[]> = {
|
||||
'/report/expense/': ['lti.repport.expense.list'],
|
||||
'/report/marketing/': ['lti.repport.delivery.list'],
|
||||
'/report/production-result/': ['lti.repport.production_result.list'],
|
||||
'/report/finance/': ['lti.repport.finance.list'],
|
||||
'/report/finance/': [
|
||||
'lti.repport.finance.list',
|
||||
'lti.repport.debtsupplier.list',
|
||||
],
|
||||
|
||||
// Inventory
|
||||
'/inventory/adjustment/': ['lti.inventory.list'],
|
||||
|
||||
@@ -1,168 +0,0 @@
|
||||
[
|
||||
{
|
||||
"supplier": {
|
||||
"id": 1,
|
||||
"name": "INDOVETRACO MAKMUR ABADI (IMA)"
|
||||
},
|
||||
"rows": [
|
||||
{
|
||||
"pr_number": "PR-MBU-02145",
|
||||
"po_number": "PO-MBU-02145",
|
||||
"pr_date": "2025-11-03",
|
||||
"po_date": "2025-11-05",
|
||||
"aging": 68,
|
||||
"area": {
|
||||
"id": 101,
|
||||
"name": "Banten 1"
|
||||
},
|
||||
"warehouse": {
|
||||
"id": 201,
|
||||
"name": "Gudang Area Banten"
|
||||
},
|
||||
"due_date": "2025-12-03",
|
||||
"due_status": "Sudah Jatuh Tempo",
|
||||
"total_price": 8658000,
|
||||
"payment_price": 0,
|
||||
"debt_price": -8658000,
|
||||
"status": "Belum Lunas",
|
||||
"travel_number": "-"
|
||||
}
|
||||
],
|
||||
"total": {
|
||||
"aging": 68,
|
||||
"total_price": 8658000,
|
||||
"payment_price": 0,
|
||||
"debt_price": -8658000
|
||||
}
|
||||
},
|
||||
{
|
||||
"supplier": {
|
||||
"id": 2,
|
||||
"name": "MANDIRI BERLIAN UNGGAS (MANBU)"
|
||||
},
|
||||
"rows": [
|
||||
{
|
||||
"pr_number": "PR-MBU-01980",
|
||||
"po_number": "PO-MBU-01980",
|
||||
"pr_date": "2025-08-20",
|
||||
"po_date": "2025-09-18",
|
||||
"aging": 143,
|
||||
"area": {
|
||||
"id": 101,
|
||||
"name": "Banten 1"
|
||||
},
|
||||
"warehouse": {
|
||||
"id": 202,
|
||||
"name": "GUDANG CIANGSANA 5 (P16)"
|
||||
},
|
||||
"due_date": "2025-08-21",
|
||||
"due_status": "Sudah Jatuh Tempo",
|
||||
"total_price": 266700000,
|
||||
"payment_price": 0,
|
||||
"debt_price": -267245000,
|
||||
"status": "Belum Lunas",
|
||||
"travel_number": "-"
|
||||
},
|
||||
{
|
||||
"pr_number": "PR-MBU-01981",
|
||||
"po_number": "PO-MBU-01981",
|
||||
"pr_date": "2025-08-21",
|
||||
"po_date": "2025-09-18",
|
||||
"aging": 142,
|
||||
"area": {
|
||||
"id": 102,
|
||||
"name": "Priangan Timur 2"
|
||||
},
|
||||
"warehouse": {
|
||||
"id": 203,
|
||||
"name": "GUDANG SINGAPARNA 1 P.7"
|
||||
},
|
||||
"due_date": "2025-08-22",
|
||||
"due_status": "Sudah Jatuh Tempo",
|
||||
"total_price": 157480000,
|
||||
"payment_price": 0,
|
||||
"debt_price": -424725000,
|
||||
"status": "Belum Lunas",
|
||||
"travel_number": "-"
|
||||
}
|
||||
],
|
||||
"total": {
|
||||
"aging": 143,
|
||||
"total_price": 424180000,
|
||||
"payment_price": 0,
|
||||
"debt_price": -692465000
|
||||
}
|
||||
},
|
||||
{
|
||||
"supplier": {
|
||||
"id": 3,
|
||||
"name": "SUMBER PROTEIN JAYA"
|
||||
},
|
||||
"rows": [
|
||||
{
|
||||
"pr_number": "PR-SPJ-00551",
|
||||
"po_number": "PO-SPJ-00551",
|
||||
"pr_date": "2025-12-01",
|
||||
"po_date": "2025-12-02",
|
||||
"aging": 39,
|
||||
"area": {
|
||||
"id": 103,
|
||||
"name": "Jawa Tengah"
|
||||
},
|
||||
"warehouse": {
|
||||
"id": 204,
|
||||
"name": "Gudang Solo"
|
||||
},
|
||||
"due_date": "2026-01-01",
|
||||
"due_status": "Mendekati Jatuh Tempo",
|
||||
"total_price": 45000000,
|
||||
"payment_price": 15000000,
|
||||
"debt_price": -30000000,
|
||||
"status": "Belum Lunas",
|
||||
"travel_number": "SJ-001/XII"
|
||||
}
|
||||
],
|
||||
"total": {
|
||||
"aging": 39,
|
||||
"total_price": 45000000,
|
||||
"payment_price": 15000000,
|
||||
"debt_price": -30000000
|
||||
}
|
||||
},
|
||||
{
|
||||
"supplier": {
|
||||
"id": 4,
|
||||
"name": "CHAROEN POKPHAND INDONESIA"
|
||||
},
|
||||
"rows": [
|
||||
{
|
||||
"pr_number": "PR-CPI-0992",
|
||||
"po_number": "PO-CPI-0992",
|
||||
"pr_date": "2025-11-15",
|
||||
"po_date": "2025-11-16",
|
||||
"aging": 56,
|
||||
"area": {
|
||||
"id": 104,
|
||||
"name": "Jawa Timur"
|
||||
},
|
||||
"warehouse": {
|
||||
"id": 205,
|
||||
"name": "Gudang Surabaya"
|
||||
},
|
||||
"due_date": "2025-12-15",
|
||||
"due_status": "Sudah Jatuh Tempo",
|
||||
"total_price": 125000000,
|
||||
"payment_price": 0,
|
||||
"debt_price": -125000000,
|
||||
"status": "Belum Lunas",
|
||||
"travel_number": "-"
|
||||
}
|
||||
],
|
||||
"total": {
|
||||
"aging": 56,
|
||||
"total_price": 125000000,
|
||||
"payment_price": 0,
|
||||
"debt_price": -125000000
|
||||
}
|
||||
}
|
||||
]
|
||||
@@ -1,35 +0,0 @@
|
||||
/**
|
||||
* Dummy data for DebtSupplier[]
|
||||
* Generated from: debt.supllier.dummy.json
|
||||
*
|
||||
* This file is auto-generated. Do not edit manually.
|
||||
*/
|
||||
|
||||
import { DebtSupplier } from '../../types/api/report/debt-supplier';
|
||||
import { BaseApiResponse } from '@/types/api/api-general';
|
||||
import dummyData from './debt.supllier.dummy.json';
|
||||
|
||||
/**
|
||||
* Get dummy DebtSupplier[] data
|
||||
* @returns Promise with BaseApiResponse containing DebtSupplier[]
|
||||
*/
|
||||
export async function getDebtSupllierDummy(): Promise<
|
||||
BaseApiResponse<DebtSupplier[]>
|
||||
> {
|
||||
return new Promise((resolve) => {
|
||||
setTimeout(() => {
|
||||
resolve({
|
||||
code: 200,
|
||||
status: 'success',
|
||||
message: 'Data retrieved successfully',
|
||||
meta: {
|
||||
total_pages: 1,
|
||||
page: 1,
|
||||
limit: 10,
|
||||
total_results: dummyData.length,
|
||||
},
|
||||
data: dummyData as unknown as DebtSupplier[],
|
||||
});
|
||||
}, 500);
|
||||
});
|
||||
}
|
||||
@@ -1,4 +1,3 @@
|
||||
import { getDebtSupllierDummy } from '@/dummy/report/debt.supllier.dummy';
|
||||
import { BaseApiService } from '@/services/api/base';
|
||||
import { BaseApiResponse } from '@/types/api/api-general';
|
||||
import { CustomerPaymentReport } from '@/types/api/report/customer-payment';
|
||||
@@ -47,7 +46,6 @@ export class FinanceApiService extends BaseApiService<
|
||||
page?: number,
|
||||
limit?: number
|
||||
): Promise<BaseApiResponse<DebtSupplier[]> | undefined> {
|
||||
return (await getDebtSupllierDummy()) as BaseApiResponse<DebtSupplier[]>;
|
||||
return await this.customRequest<BaseApiResponse<DebtSupplier[]>>(
|
||||
`debt-supplier`,
|
||||
{
|
||||
@@ -66,7 +64,3 @@ export class FinanceApiService extends BaseApiService<
|
||||
}
|
||||
|
||||
export const FinanceApi = new FinanceApiService('reports');
|
||||
|
||||
// export const FinanceApi = new FinanceApiService(
|
||||
// 'http://localhost:4010/api/reports/finance'
|
||||
// );
|
||||
|
||||
Reference in New Issue
Block a user