Added report starter

This commit is contained in:
CHIEFSOFT\ameye
2026-01-03 12:05:42 -05:00
parent 756c084059
commit 51c2e4b568
3 changed files with 344 additions and 31 deletions
+3 -30
View File
@@ -4,6 +4,7 @@ import {useQuery} from "@tanstack/react-query";
import queryKeys from "../../services/queryKeys";
import {getReportsTopicsList} from "../../services/services";
import PaymentReportTable from "./PaymentReportTable";
import ProductReportTable from "./ProductReportTable";
export default function Reports() {
@@ -21,18 +22,12 @@ export default function Reports() {
const reportTopicList = data?.data?.topics?.topics;
debugger;
return (
<>
<BreadcrumbComBS title='Reports' paths={['Dashboard', 'Reports']}/>
<div className="row">
<div>
<div>
<div className="card card-statistics" style={{minHeight: '550px'}}>
{/*<div className="card-header">*/}
{/* <div className="card-heading">*/}
@@ -57,31 +52,11 @@ export default function Reports() {
<div className="tab-content">
<div className="tab-pane fade active show" id="home-09" role="tabpanel"
aria-labelledby="home-09-tab">
{<PaymentReportTable />}
{<PaymentReportTable/>}
</div>
<div className="tab-pane fade" id="profile-09" role="tabpanel"
aria-labelledby="profile-09-tab">
<p>Reflect and experiment until you find the right combination of motivators
for your personality and your personal goals. Do it today. Remind
yourself of someone you know who died suddenly and the fact that there
is no guarantee that tomorrow will come.</p>
</div>
<div className="tab-pane fade" id="portfolio-09" role="tabpanel"
aria-labelledby="portfolio-09-tab">
<p>Commitment is something that comes from understanding that everything has
its price and then having the willingness to pay that price. This is
important because nobody wants to put significant effort into something,
only to find out after the fact that the price was too high. We all know
people who live this truth.Give yourself the power of
responsibility.</p>
</div>
<div className="tab-pane fade" id="contact-09" role="tabpanel"
aria-labelledby="contact-09-tab">
<p>I truly believe Augustines words are true and if you look at history you
know it is true. There are many people in the world with amazing talents
who realize only a small percentage of their potential. We all know
people who live this truth.Give yourself the power of responsibility.
Remind yourself the only thing stopping you is yourself.</p>
{<ProductReportTable/>}
</div>
</div>
</div>
@@ -89,8 +64,6 @@ export default function Reports() {
</div>
</div>
</div>
</div>
</>
)