已完成“选课候补与自动递补”完整流程。

学生端:满员后可加入/取消候补,展示候补顺位和当前候补人数。
自动递补:退课释放名额后,按候补时间顺序重新校验学籍、范围、学分及时间冲突;不合格者自动失效并继续下一位。
管理端:教学班显示候补人数,名单抽屉提供候补队列及移出操作。
状态通知:递补成功、资格失效、批次关闭、管理员移出均会通知学生。
并发安全:退课和递补放在 Serializable 事务中执行。
数据库:已补充 SQLite 开发迁移和 MySQL 正式迁移。
This commit is contained in:
2026-07-26 15:39:50 +08:00 Unverified
parent 65eed820a7
commit 56b13b3adb
12 changed files with 1203 additions and 79 deletions
@@ -31,6 +31,21 @@ public sealed class CourseSelectionRulesTests
Assert.False(CourseSelectionRules.CanWithdraw(round, now.AddHours(1)));
}
[Fact]
public void Waitlist_promotion_uses_withdrawal_window_and_retake_capacity()
{
var now = new DateTime(2026, 7, 24, 8, 0, 0, DateTimeKind.Utc);
var round = CreateRound(now.AddHours(-1), now.AddHours(1));
round.WithdrawalEndsAt = now.AddHours(2);
Assert.True(CourseSelectionRules.CanPromoteWaitlist(round, now));
Assert.Equal(60, CourseSelectionRules.EffectiveCapacity(60, false));
Assert.Equal(69, CourseSelectionRules.EffectiveCapacity(60, true));
round.Status = CourseSelectionRoundStatus.Closed;
Assert.False(CourseSelectionRules.CanPromoteWaitlist(round, now));
}
[Fact]
public void Schedule_conflict_detects_overlapping_weeks_and_periods()
{