refactor(FE): Upgrade xlsx and add HPP per kandang tab

This commit is contained in:
rstubryan
2025-12-23 09:25:26 +07:00
parent 5ff132070c
commit 346d655406
4 changed files with 54 additions and 121 deletions
@@ -4,6 +4,7 @@ import { JSX, useState } from 'react';
import Tabs from '@/components/Tabs';
import DailyMarketingReportContent from '@/components/pages/report/DailyMarketingReportContent';
import HppPerKandangTab from './sale/tab/HppPerKandangTab';
type MarketingReportTabType =
| 'daily'
@@ -21,6 +22,11 @@ const marketingReportTabs: {
label: 'Penjualan Harian',
content: <DailyMarketingReportContent />,
},
{
id: 'daily-hpp',
label: 'HPP Harian Kandang',
content: <HppPerKandangTab />,
},
];
const MarketingReportContent = () => {