Merge branch 'develop'

* develop:
  fix
  add report endpoint fund 3 - 10
This commit is contained in:
Warunee Tamkoo 2025-02-12 12:10:04 +07:00
commit d087077f1e

View file

@ -555,4 +555,80 @@ export class ReportController extends Controller {
data: formattedData,
});
}
/**
* API Report
*
* @summary DEV_0xx - Report #xx
*
*/
@Get("report3")
async report3() {
return new HttpSuccess({
template: "reportFund3",
reportName: "reportFund3",
data: {
data: "",
},
});
}
/**
* API Report
*
* @summary DEV_0xx - Report #xx
*
*/
@Get("report4")
async report4() {
return new HttpSuccess({
template: "reportFund4",
reportName: "reportFund4",
data: {
data: "",
},
});
}
/**
* API Report
*
* @summary DEV_0xx - Report #xx
*
*/
@Get("report5")
async report5() {
return new HttpSuccess({
template: "reportFund5",
reportName: "reportFund5",
data: {
data: "",
},
});
}
/**
* API Report
*
* @summary DEV_0xx - Report #xx
*
*/
@Get("report6")
async report6() {
return new HttpSuccess({
template: "reportFund6",
reportName: "reportFund6",
data: {
data: "",
},
});
}
}