增强筛选
This commit is contained in:
@@ -399,8 +399,22 @@ public sealed class CourseSelectionsController(
|
||||
|
||||
[HttpGet("offerings/{id:guid}/roster")]
|
||||
[Authorize(Roles = RosterReaders)]
|
||||
public async Task<ActionResult> GetRoster(Guid id, CancellationToken cancellationToken)
|
||||
public async Task<ActionResult> GetRoster(
|
||||
Guid id,
|
||||
string? keyword = null,
|
||||
int? grade = null,
|
||||
Guid? majorId = null,
|
||||
Guid? administrativeClassId = null,
|
||||
int studentPage = 1,
|
||||
int studentPageSize = 20,
|
||||
int waitlistPage = 1,
|
||||
int waitlistPageSize = 20,
|
||||
CancellationToken cancellationToken = default)
|
||||
{
|
||||
studentPage = Math.Max(1, studentPage);
|
||||
studentPageSize = Math.Clamp(studentPageSize, 10, 100);
|
||||
waitlistPage = Math.Max(1, waitlistPage);
|
||||
waitlistPageSize = Math.Clamp(waitlistPageSize, 10, 100);
|
||||
var offering = await db.CourseSelectionOfferings.AsNoTracking()
|
||||
.Where(x => x.Id == id)
|
||||
.Select(x => new
|
||||
@@ -428,11 +442,64 @@ public sealed class CourseSelectionsController(
|
||||
if (!isAssignedTeacher && !scope.CanAccessCollege(offering.CollegeId))
|
||||
return Forbid();
|
||||
|
||||
var students = await db.CourseEnrollments.AsNoTracking()
|
||||
var enrolledSource = db.CourseEnrollments.AsNoTracking()
|
||||
.Where(x =>
|
||||
x.CourseSelectionOfferingId == id &&
|
||||
x.Status == CourseEnrollmentStatus.Enrolled)
|
||||
x.Status == CourseEnrollmentStatus.Enrolled);
|
||||
var waitlistSource = db.CourseEnrollments.AsNoTracking()
|
||||
.Where(x =>
|
||||
x.CourseSelectionOfferingId == id &&
|
||||
x.Status == CourseEnrollmentStatus.Waitlisted);
|
||||
var enrolledCount = await enrolledSource.CountAsync(cancellationToken);
|
||||
var waitlistedCount = await waitlistSource.CountAsync(cancellationToken);
|
||||
var rosterSource = db.CourseEnrollments.AsNoTracking().Where(x =>
|
||||
x.CourseSelectionOfferingId == id &&
|
||||
(x.Status == CourseEnrollmentStatus.Enrolled ||
|
||||
x.Status == CourseEnrollmentStatus.Waitlisted));
|
||||
var filterOptions = await rosterSource
|
||||
.Select(x => new
|
||||
{
|
||||
Grade = x.Student!.AdministrativeClass!.Grade,
|
||||
MajorId = x.Student.AdministrativeClass.MajorId,
|
||||
MajorName = x.Student.AdministrativeClass.Major!.Name,
|
||||
ClassId = x.Student.AdministrativeClassId,
|
||||
ClassName = x.Student.AdministrativeClass.Name
|
||||
})
|
||||
.Distinct()
|
||||
.ToListAsync(cancellationToken);
|
||||
if (grade.HasValue)
|
||||
{
|
||||
enrolledSource = enrolledSource.Where(x => x.Student!.AdministrativeClass!.Grade == grade.Value);
|
||||
waitlistSource = waitlistSource.Where(x => x.Student!.AdministrativeClass!.Grade == grade.Value);
|
||||
}
|
||||
if (majorId.HasValue)
|
||||
{
|
||||
enrolledSource = enrolledSource.Where(x => x.Student!.AdministrativeClass!.MajorId == majorId.Value);
|
||||
waitlistSource = waitlistSource.Where(x => x.Student!.AdministrativeClass!.MajorId == majorId.Value);
|
||||
}
|
||||
if (administrativeClassId.HasValue)
|
||||
{
|
||||
enrolledSource = enrolledSource.Where(x => x.Student!.AdministrativeClassId == administrativeClassId.Value);
|
||||
waitlistSource = waitlistSource.Where(x => x.Student!.AdministrativeClassId == administrativeClassId.Value);
|
||||
}
|
||||
if (!string.IsNullOrWhiteSpace(keyword))
|
||||
{
|
||||
keyword = keyword.Trim();
|
||||
enrolledSource = enrolledSource.Where(x =>
|
||||
x.Student!.StudentNumber.Contains(keyword) ||
|
||||
x.Student.Name.Contains(keyword) ||
|
||||
x.Student.AdministrativeClass!.Name.Contains(keyword));
|
||||
waitlistSource = waitlistSource.Where(x =>
|
||||
x.Student!.StudentNumber.Contains(keyword) ||
|
||||
x.Student.Name.Contains(keyword) ||
|
||||
x.Student.AdministrativeClass!.Name.Contains(keyword));
|
||||
}
|
||||
var enrolledTotal = await enrolledSource.CountAsync(cancellationToken);
|
||||
var waitlistedTotal = await waitlistSource.CountAsync(cancellationToken);
|
||||
var students = await enrolledSource
|
||||
.OrderBy(x => x.Student!.StudentNumber)
|
||||
.Skip((studentPage - 1) * studentPageSize)
|
||||
.Take(studentPageSize)
|
||||
.Select(x => new
|
||||
{
|
||||
x.Id,
|
||||
@@ -445,12 +512,11 @@ public sealed class CourseSelectionsController(
|
||||
x.EnrolledAt
|
||||
})
|
||||
.ToListAsync(cancellationToken);
|
||||
var waitlistedRows = await db.CourseEnrollments.AsNoTracking()
|
||||
.Where(x =>
|
||||
x.CourseSelectionOfferingId == id &&
|
||||
x.Status == CourseEnrollmentStatus.Waitlisted)
|
||||
var waitlistedRows = await waitlistSource
|
||||
.OrderBy(x => x.WaitlistedAt)
|
||||
.ThenBy(x => x.CreatedAt)
|
||||
.Skip((waitlistPage - 1) * waitlistPageSize)
|
||||
.Take(waitlistPageSize)
|
||||
.Select(x => new
|
||||
{
|
||||
x.Id,
|
||||
@@ -474,7 +540,7 @@ public sealed class CourseSelectionsController(
|
||||
item.MajorName,
|
||||
item.Grade,
|
||||
item.WaitlistedAt,
|
||||
Position = index + 1
|
||||
Position = (waitlistPage - 1) * waitlistPageSize + index + 1
|
||||
})
|
||||
.ToList();
|
||||
return Ok(new
|
||||
@@ -487,10 +553,24 @@ public sealed class CourseSelectionsController(
|
||||
offering.CourseName,
|
||||
offering.CourseNature,
|
||||
offering.Capacity,
|
||||
EnrolledCount = students.Count,
|
||||
EnrolledCount = enrolledCount,
|
||||
Students = students,
|
||||
WaitlistedCount = waitlist.Count,
|
||||
StudentPage = studentPage,
|
||||
StudentPageSize = studentPageSize,
|
||||
StudentTotal = enrolledTotal,
|
||||
WaitlistedCount = waitlistedCount,
|
||||
Waitlist = waitlist,
|
||||
WaitlistPage = waitlistPage,
|
||||
WaitlistPageSize = waitlistPageSize,
|
||||
WaitlistTotal = waitlistedTotal,
|
||||
FilterOptions = new
|
||||
{
|
||||
Grades = filterOptions.Select(x => x.Grade).Distinct().OrderBy(x => x),
|
||||
Majors = filterOptions.Select(x => new { x.MajorId, x.MajorName }).Distinct()
|
||||
.OrderBy(x => x.MajorName),
|
||||
Classes = filterOptions.Select(x => new { x.ClassId, x.ClassName, x.MajorId })
|
||||
.Distinct().OrderBy(x => x.ClassName)
|
||||
},
|
||||
CanManageWaitlist =
|
||||
offering.RoundStatus == CourseSelectionRoundStatus.Open &&
|
||||
(scope.IsInRole(SystemRoles.SuperAdmin) ||
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.Globalization;
|
||||
using Jiaowu.Api.Contracts;
|
||||
using Jiaowu.Api.Domain.Academic;
|
||||
using Jiaowu.Api.Domain.Identity;
|
||||
using Jiaowu.Api.Infrastructure.Auth;
|
||||
@@ -20,10 +21,38 @@ public sealed class OtherExamsController(AppDbContext db, ICurrentUserDataScope
|
||||
|
||||
[HttpGet("batches")]
|
||||
[Authorize(Roles = Managers)]
|
||||
public async Task<ActionResult> GetBatches(CancellationToken ct) => Ok(await db.OtherExamBatches
|
||||
.AsNoTracking().OrderByDescending(x => x.ExamDate).ThenByDescending(x => x.CreatedAt)
|
||||
public async Task<ActionResult> GetBatches(
|
||||
string? keyword = null,
|
||||
OtherExamBatchStatus? status = null,
|
||||
OtherExamMetricKind? metricKind = null,
|
||||
DateOnly? examDateFrom = null,
|
||||
DateOnly? examDateTo = null,
|
||||
int page = 1,
|
||||
int pageSize = 20,
|
||||
CancellationToken ct = default)
|
||||
{
|
||||
page = Math.Max(1, page);
|
||||
pageSize = Math.Clamp(pageSize, 10, 100);
|
||||
var source = db.OtherExamBatches.AsNoTracking();
|
||||
if (!string.IsNullOrWhiteSpace(keyword))
|
||||
{
|
||||
keyword = keyword.Trim();
|
||||
source = source.Where(x =>
|
||||
(x.ExamCode != null && x.ExamCode.Contains(keyword)) ||
|
||||
x.Name.Contains(keyword) ||
|
||||
(x.Organizer != null && x.Organizer.Contains(keyword)));
|
||||
}
|
||||
if (status.HasValue) source = source.Where(x => x.Status == status.Value);
|
||||
if (metricKind.HasValue) source = source.Where(x => x.MetricKind == metricKind.Value);
|
||||
if (examDateFrom.HasValue) source = source.Where(x => x.ExamDate >= examDateFrom.Value);
|
||||
if (examDateTo.HasValue) source = source.Where(x => x.ExamDate <= examDateTo.Value);
|
||||
var total = await source.CountAsync(ct);
|
||||
var items = await source.OrderByDescending(x => x.ExamDate).ThenByDescending(x => x.CreatedAt)
|
||||
.Skip((page - 1) * pageSize).Take(pageSize)
|
||||
.Select(x => new { x.Id, x.ExamCode, x.Name, x.Organizer, x.ExamDate, x.MetricKind, x.MaxScore, x.LevelOptions, x.Status, x.PublicationCount, x.PublishedAt, ResultCount = x.Results.Count })
|
||||
.ToListAsync(ct));
|
||||
.ToListAsync(ct);
|
||||
return Ok(new PagedResult<object>(items, total, page, pageSize));
|
||||
}
|
||||
|
||||
[HttpPost("batches")]
|
||||
[Authorize(Roles = Managers)]
|
||||
|
||||
Reference in New Issue
Block a user