product report list + detail report

This commit is contained in:
hamid zarghami
2025-09-29 16:04:57 +03:30
parent 25148282ae
commit 9ec483383e
16 changed files with 580 additions and 10 deletions
+10
View File
@@ -39,6 +39,10 @@ import UpdateBrand from '@/pages/brand/Update'
import UpdateWarranty from '@/pages/warranty/Update'
import PaymentList from '@/pages/payment/List'
import UpdateShipment from '@/pages/shipment/Update'
import CreateFine from '@/pages/payment/CreateFine'
import Fines from '@/pages/payment/Fines'
import TicketsList from '@/pages/tickets/List'
import ProductReport from '@/pages/report/ProductReport'
const MainRouter: FC = () => {
const { hasSubMenu } = useSharedStore()
@@ -99,6 +103,12 @@ const MainRouter: FC = () => {
<Route path={Pages.admin.create} element={<AdminCreate />} />
<Route path={Pages.financial.list} element={<PaymentList />} />
<Route path={Pages.financial.createFine} element={<CreateFine />} />
<Route path={Pages.financial.fines} element={<Fines />} />
<Route path={Pages.ticket.list} element={<TicketsList />} />
<Route path={Pages.report.product} element={<ProductReport />} />
</Routes>
</div>
</div>