5ea49d0a9e
feat(classes): add schedule and attendance-summary endpoints + frontend tabs
...
- Add GET /classes/:id/schedule returning ClassSchedule list with classroom name
- Add GET /classes/:id/attendance-summary returning attendance/absence/late rates
- Add 课表 and 出勤汇总 tabs to Classes detail page
- Register ClassSchedule and AttendanceRecord in ClassesModule
2026-07-06 17:48:19 +08:00
b837e9b145
feat(task2): 排课与租赁双向冲突检测
...
- SchedulesService.checkConflict 增加对 classroom_rentals 的冲突检测
- ClassroomRentalsService.findConflicts 增加对 class_schedules 的冲突检测
- 创建排课时若教室已被租赁,给出明确冲突提示
- 创建租赁时若教室已有排课,给出明确冲突提示
2026-07-06 17:44:45 +08:00
3fa446f978
Task 4: 学生列表 tenantId 筛选生效
...
- StudentsService.findAll() 接收 tenantId 参数并按 tenantId 过滤
- StudentsController.findAll() 增加 tenantId 查询参数
- students.organization 列仍在 occupancy/room-visual/import 等场景使用,未删除列
2026-07-06 17:39:24 +08:00
ba34c09be4
feat(attendance): add single-record edit and delete APIs
...
- Add PUT /attendance-records/:id to update status and remark
- Add DELETE /attendance-records/:id to remove a record
- Enforce campus scope on both operations
- Log edit/delete actions via OperationLogsService
2026-07-06 17:39:16 +08:00
72f9a58838
feat: rewrite PDF report to puppeteer HTML→PDF with professional 6-page gongxue design
2026-07-06 16:19:50 +08:00
c81b0a0b5c
chore: commit remaining integration files, PM2 single instance, PRD doc
2026-07-06 16:04:53 +08:00
8bd59b8ac6
feat: complete student archive subsystem — 7 entities, PDF report, frontend profile page
2026-07-06 15:58:36 +08:00
b6990dd11b
feat: add student archive module with full CRUD APIs
2026-07-06 15:46:57 +08:00
9e0d9ff39c
feat: add teacher list and profile API
2026-07-06 15:33:12 +08:00
1c097dc230
feat: new classrooms default to 'reserved' status instead of 'available'
2026-07-06 15:26:35 +08:00
72b0eed36e
fix: resolve TS strict type errors in sync services (null→undefined)
2026-07-06 15:18:47 +08:00
8d810374f0
feat: add source tracking fields to Department for sync idempotency
2026-07-06 15:10:11 +08:00
20f3b79179
feat: bills expense type filter (backend join + frontend Select), sync stub docs
2026-07-06 14:48:47 +08:00
da69545f74
fix: null cast for refundStatus in TypeORM
2026-07-06 10:50:24 +08:00
94251b66ce
fix: TypeORM rejects string|null union type for mysql
2026-07-06 10:49:59 +08:00
2ce73b8fc3
feat: PM2 + Docker deployment config (MySQL container, PM2 for backend+frontend proxy)
2026-07-06 10:12:42 +08:00
a568da160c
feat(sync): implement sync stubs with env-var gating and status endpoint
2026-07-06 10:00:35 +08:00
2c0ca583a3
feat(students): add multi-enrollment comparison view in student list expand row
2026-07-06 10:00:35 +08:00
6ba7213cc4
feat(deposits): add refund rejection path with reason
2026-07-06 09:48:20 +08:00
3717531bb3
feat(dashboard): add classroom utilization stats endpoint and UI
2026-07-06 09:38:17 +08:00
7b298a615c
feat: complete PRD verification fixes and deployment readiness
...
- Add CommonModule to provide/export CampusScope across business modules
- Replace DepartmentsModule imports with CommonModule in 11 modules
- Add missing Class/Tenant repository imports to StudentsModule and SchedulesModule
- Fix service specs with CampusScope, ClassRepository, StudentRepository mocks
- Move better-sqlite3 to optionalDependencies for production Docker builds
- Rewrite Dockerfiles for monorepo root build context
- Update docker-compose.yml service build contexts
2026-07-06 01:55:35 +08:00
8453e62088
feat: integrate classroom real-time occupancy with schedule and rental data
2026-07-06 01:14:58 +08:00
3bcb7d41c0
fix: F12 P2 follow-up — batch imports set departmentId, optimize getDescendantIds, enforce campus root invariant
2026-07-06 01:06:11 +08:00
4a48a65a48
feat: enhance dashboard with attendance count + Gantt chart
2026-07-06 00:49:20 +08:00
b3655da012
fix: resolve 9 P0+P1 review findings (bills decorators, campus isolation bypass, ding raw crash, batch import counter, SSE multi-tab, interval leak, dept permissions, cycle prevention, tree depth)
2026-07-06 00:38:51 +08:00
df61ebbc5b
feat: auto-populate department_id on create + seed default campus with backfill
2026-07-06 00:05:00 +08:00
cd6364268d
feat: integrate CampusScope.filter() into all business services (12 services + 12 modules)
2026-07-05 23:58:51 +08:00
eeae06fe30
feat: add isSuperAdmin to JWT payload for campus scope bypass
2026-07-05 23:51:10 +08:00
abcfbc6121
feat: add CampusScope request-level provider for data isolation
2026-07-05 23:50:22 +08:00
ca53f9471b
feat: implement full DepartmentsController with 9 endpoints
2026-07-05 23:48:43 +08:00
0e08770cf4
feat: add DepartmentsModule with DTO, Service, and stub controller
2026-07-05 23:47:41 +08:00
ad24c9ef23
feat: add department_id to all business entities
2026-07-05 23:45:05 +08:00
7d945029eb
feat: add Department and UserDepartment entities
2026-07-05 23:43:57 +08:00
9d9d4719b5
feat: add Student-User association and activate all notification TODOs
2026-07-05 23:42:22 +08:00
9e6c136ef0
fix: apply code review fixes — double layout, SSE leaks, interval leak, conflict values
...
- App.tsx: remove double-wrapped MainLayout from /notifications route
- NotificationBell.tsx: decouple SSE from popover open state using ref
- useNotifications.ts: fix interval leak in onerror via ref in cleanup
- notifications.controller.ts: unsubscribe on req.on('close') for SSE Subject
- schedules.controller.ts: use existing schedule values in conflict catch
2026-07-05 23:31:21 +08:00
7020e86809
feat: integrate notification creation into business modules (classes, schedules done; bills/occupancies/deposits need student→userId mapping)
2026-07-05 23:25:34 +08:00
adb875976a
feat: support JWT from query string for SSE endpoints
2026-07-05 23:15:34 +08:00
14a24a14b3
feat: add NotificationsController with SSE stream endpoint
2026-07-05 23:09:30 +08:00
ce36a92482
fix: revert untracked ExpenseType refs, fix findByUser falsy cursor check
2026-07-05 23:05:25 +08:00
5f14b9ff15
feat: add NotificationsService with SSE subject pool
2026-07-05 23:01:26 +08:00
bb11ca1880
feat: add Notification entity
2026-07-05 22:56:54 +08:00
4520737196
fix: add Class import to AttendanceService
2026-07-05 21:57:20 +08:00
23ef73acb9
fix: add Class repo to AttendanceService, fix getClasses API
2026-07-05 21:56:29 +08:00
2be8b55c93
feat: enhance dashboard with comprehensive stats and charts
2026-07-05 21:52:50 +08:00
6737c00d96
fix: make JwtAuthGuard global to run before PermissionGuard, skip @Public routes
2026-07-05 21:23:42 +08:00
898738b775
fix: remove null assignments incompatible with non-null entity types
2026-07-05 20:59:20 +08:00
6d589f6faa
fix: remove null union types causing TypeORM Object inference on Deposit columns
2026-07-05 20:58:49 +08:00
f7cb7a9599
fix: add explicit datetime type to Deposit refund columns
2026-07-05 20:57:45 +08:00
2357db31dd
fix: remove broken Department relation from Class entity
2026-07-05 20:56:23 +08:00
eb82b269c1
fix: add missing Class/ClassStudent/ClassTeacher/DepositInstallment to TypeORM entities list
2026-07-05 20:55:36 +08:00