feat: bills expense type filter (backend join + frontend Select), sync stub docs

This commit is contained in:
2026-07-06 14:48:47 +08:00
parent 4b02012634
commit 20f3b79179
4 changed files with 20 additions and 9 deletions

View File

@@ -77,12 +77,12 @@ export class BillsController {
@Query('periodEnd') periodEnd?: string,
@Query('studentId') studentId?: string,
@Query('status') status?: string,
@Query('expenseType') expenseType?: string,
) {
return this.service.findAll({
periodStart,
periodEnd,
periodStart, periodEnd,
studentId: studentId ? +studentId : undefined,
status,
status, expenseType,
});
}