Payment Method Report

This commit is contained in:
efrilm
2025-09-25 23:45:49 +07:00
parent 27ddd137eb
commit daa3c4e9a2
3 changed files with 133 additions and 12 deletions
+17 -12
View File
@@ -11,26 +11,31 @@ const ReportFinancialList: React.FC = () => {
const { lang: locale } = useParams()
const financialReports = [
{
title: 'Arus Kas',
iconClass: 'tabler-cash',
link: getLocalizedUrl(`/apps/report/cash-flow`, locale as Locale)
},
// {
// title: 'Arus Kas',
// iconClass: 'tabler-cash',
// link: getLocalizedUrl(`/apps/report/cash-flow`, locale as Locale)
// },
{
title: 'Laba Rugi',
iconClass: 'tabler-cash',
link: getLocalizedUrl(`/apps/report/profit-loss`, locale as Locale)
},
{
title: 'Neraca',
title: 'Metode Pembayaran',
iconClass: 'tabler-cash',
link: getLocalizedUrl(`/apps/report/neraca`, locale as Locale)
},
{
title: 'Ringkasan Eksekutif',
iconClass: 'tabler-cash',
link: getLocalizedUrl(`/apps/report/neraca`, locale as Locale)
link: getLocalizedUrl(`/apps/report/financial/payment-method`, locale as Locale)
}
// {
// title: 'Neraca',
// iconClass: 'tabler-cash',
// link: getLocalizedUrl(`/apps/report/neraca`, locale as Locale)
// },
// {
// title: 'Ringkasan Eksekutif',
// iconClass: 'tabler-cash',
// link: getLocalizedUrl(`/apps/report/neraca`, locale as Locale)
// }
]
return (