feat(FE-361,363): Add export dropdown to PurchasesPerSupplier tab

This commit is contained in:
rstubryan
2025-12-15 15:10:22 +07:00
parent 3c3c2345c7
commit 45f1e923b7
3 changed files with 23 additions and 4 deletions
@@ -1,7 +1,7 @@
'use client';
import Tabs from '@/components/Tabs';
import PurchasesPerSupplierTab from '@/components/pages/report/logistic-stock/PurchasesPerSupplierTab';
import PurchasesPerSupplierTab from '@/components/pages/report/logistic-stock/tab/PurchasesPerSupplierTab';
const LogisticStockTabs = () => {
const tabs = [
@@ -13,12 +13,12 @@ const LogisticStockTabs = () => {
{
id: '2',
label: 'Rekapitulasi Pemakaian Barang',
content: <PurchasesPerSupplierTab />,
content: 'Rekapitulasi Pemakaian Barang Tab',
},
{
id: '3',
label: 'Rekapitulasi Stock Persediaan Barang',
content: <PurchasesPerSupplierTab />,
content: 'Rekapitulasi Stock Persediaan Barang Tab',
},
];