disbursement list , detail, upload batch

This commit is contained in:
Narul Hidayah
2025-04-11 18:19:27 +07:00
parent 1674aeed85
commit 0de97696fd
10 changed files with 773 additions and 1 deletions

View File

@ -40,6 +40,10 @@ import WalletHistory from '@/pages/wallet/wallet-history/WalletHistory';
import WalletMaster from '@/pages/master/wallet/WalletMaster';
import CurrencyMaster from '@/pages/master/currency/CurrencyMaster';
// DISBURSEMENT
import HistoryTransactionDisbursement from '@/pages/disbursement/history-transaction/HistoryTransaction'
// DISBURSEMENT
const AppRoutingSetup = (): ReactElement => {
return (
<Routes>
@ -100,6 +104,11 @@ const AppRoutingSetup = (): ReactElement => {
path="/settings/user-management/manage-position"
element={<ManagePositionPage />}
/>
{/* DISBURSEMENT */}
<Route path="/disbursement/transaction-history" element={<HistoryTransactionDisbursement />} />
{/* DISBURSEMENT */}
</Route>
</Route>
<Route path="error/*" element={<ErrorsRouting />} />