2024-11-11 09:07:11 +00:00
|
|
|
|
using ClosedXML.Excel;
|
|
|
|
|
using data.RemoteData.RemoteDataBase.DAO;
|
|
|
|
|
using data.Repository;
|
|
|
|
|
using domain.Models;
|
|
|
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace domain.UseCase
|
|
|
|
|
{
|
|
|
|
|
public class UseCaseGeneratePresence
|
|
|
|
|
{
|
|
|
|
|
public readonly IUserRepository _userRepository;
|
|
|
|
|
public readonly IPresenceRepository _presenceRepository;
|
|
|
|
|
private readonly IGroupRepository _groupRepository;
|
|
|
|
|
|
|
|
|
|
public UseCaseGeneratePresence(IUserRepository userRepository, IPresenceRepository presenceRepository, IGroupRepository groupRepository)
|
|
|
|
|
{
|
|
|
|
|
_userRepository = userRepository;
|
|
|
|
|
_presenceRepository = presenceRepository;
|
|
|
|
|
_groupRepository = groupRepository;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public List<PresenceLocalEntity> GetPresenceByGroupAndDate(int groupId, DateTime date)
|
|
|
|
|
{
|
|
|
|
|
return _presenceRepository.GetPresenceByGroupAndDate(groupId, date);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2024-11-13 09:00:26 +00:00
|
|
|
|
public void GeneratePresenceForDay(int firstLesson, int lastLesson, int groupId, DateTime currentDate)
|
2024-11-11 09:07:11 +00:00
|
|
|
|
{
|
2024-11-14 11:46:38 +00:00
|
|
|
|
// Проверка существования группы
|
|
|
|
|
var groupExists = _groupRepository.GetAllGroup().Any(g => g.Id == groupId);
|
|
|
|
|
if (!groupExists)
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentException($"Группа с ID {groupId} не существует.");
|
|
|
|
|
}
|
|
|
|
|
|
2024-11-11 09:07:11 +00:00
|
|
|
|
var users = _userRepository.GetAllUsers.Where(u => u.GroupID == groupId).ToList();
|
|
|
|
|
List<PresenceLocalEntity> presences = new List<PresenceLocalEntity>();
|
|
|
|
|
for (int lessonNumber = firstLesson; lessonNumber <= lastLesson; lessonNumber++)
|
|
|
|
|
{
|
|
|
|
|
foreach (var user in users)
|
|
|
|
|
{
|
|
|
|
|
presences.Add(new PresenceLocalEntity
|
|
|
|
|
{
|
|
|
|
|
UserGuid = user.Guid,
|
|
|
|
|
Date = currentDate,
|
|
|
|
|
LessonNumber = lessonNumber,
|
|
|
|
|
IsAttedance = true
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
_presenceRepository.SavePresence(presences);
|
|
|
|
|
}
|
2024-11-14 11:46:38 +00:00
|
|
|
|
|
2024-11-13 09:00:26 +00:00
|
|
|
|
public void GeneratePresenceForWeek(int firstLesson, int lastLesson, int groupId, DateTime startTime)
|
2024-11-11 09:07:11 +00:00
|
|
|
|
{
|
2024-11-14 11:46:38 +00:00
|
|
|
|
// Проверка существования группы
|
|
|
|
|
var groupExists = _groupRepository.GetAllGroup().Any(g => g.Id == groupId);
|
|
|
|
|
if (!groupExists)
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentException($"Группа с ID {groupId} не существует.");
|
|
|
|
|
}
|
|
|
|
|
|
2024-11-11 09:07:11 +00:00
|
|
|
|
for (int i = 0; i < 7; i++)
|
|
|
|
|
{
|
|
|
|
|
DateTime currentTime = startTime.AddDays(i);
|
2024-11-13 09:00:26 +00:00
|
|
|
|
GeneratePresenceForDay(firstLesson, lastLesson, groupId, currentTime);
|
2024-11-11 09:07:11 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2024-11-14 11:46:38 +00:00
|
|
|
|
|
2024-11-11 09:07:11 +00:00
|
|
|
|
public void MarkUserAsAbsent(Guid userGuid, int groupId, int firstLesson, int lastLesson, DateTime date)
|
|
|
|
|
{
|
|
|
|
|
var presences = _presenceRepository.GetPresenceByGroupAndDate(groupId, date);
|
|
|
|
|
foreach (var presence in presences.Where(p => p.UserGuid == userGuid && p.LessonNumber >= firstLesson && p.LessonNumber <= lastLesson))
|
|
|
|
|
{
|
|
|
|
|
presence.IsAttedance = false;
|
|
|
|
|
}
|
|
|
|
|
_presenceRepository.SavePresence(presences);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public List<PresenceLocalEntity> GetAllPresenceByGroup(int groupId)
|
|
|
|
|
{
|
|
|
|
|
return _presenceRepository.GetPresenceByGroup(groupId);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public GroupPresenceSummary GetGeneralPresenceForGroup(int groupId)
|
|
|
|
|
{
|
|
|
|
|
return _presenceRepository.GetGeneralPresenceForGroup(groupId);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Dictionary<string, List<Excel>> GetAllAttendanceByGroups()
|
|
|
|
|
{
|
|
|
|
|
var attendanceByGroup = new Dictionary<string, List<Excel>>();
|
|
|
|
|
var allGroups = _groupRepository.GetAllGroup();
|
|
|
|
|
|
|
|
|
|
foreach (var group in allGroups)
|
|
|
|
|
{
|
|
|
|
|
var groupAttendance = _presenceRepository.GetAttendanceByGroup(group.Id);
|
|
|
|
|
var attendanceRecords = new List<Excel>();
|
|
|
|
|
|
|
|
|
|
foreach (var record in groupAttendance)
|
|
|
|
|
{
|
|
|
|
|
var names = _userRepository.GetUserNames().Where(u => u.Guid == record.UserGuid);
|
|
|
|
|
foreach (var name in names)
|
|
|
|
|
{
|
|
|
|
|
attendanceRecords.Add(new Excel
|
|
|
|
|
{
|
|
|
|
|
UserName = name.FIO,
|
|
|
|
|
UserGuid = name.Guid,
|
|
|
|
|
Date = record.Date,
|
|
|
|
|
IsAttedance = record.IsAttedance,
|
|
|
|
|
LessonNumber = record.LessonNumber,
|
|
|
|
|
GroupName = group.Name
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
attendanceByGroup.Add(group.Name, attendanceRecords);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return attendanceByGroup;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void ExportAttendanceToExcel()
|
|
|
|
|
{
|
|
|
|
|
var attendanceByGroup = GetAllAttendanceByGroups();
|
|
|
|
|
string projectDirectory = Directory.GetParent(Directory.GetCurrentDirectory()).Parent.Parent.FullName;
|
|
|
|
|
string reportsFolderPath = Path.Combine(projectDirectory, "Reports");
|
|
|
|
|
string filePath = Path.Combine(reportsFolderPath, "AttendanceReport.xlsx");
|
|
|
|
|
|
2024-11-13 09:00:26 +00:00
|
|
|
|
// Создаем папку, если ее нет
|
2024-11-11 09:07:11 +00:00
|
|
|
|
if (!Directory.Exists(reportsFolderPath))
|
|
|
|
|
{
|
|
|
|
|
Directory.CreateDirectory(reportsFolderPath);
|
|
|
|
|
}
|
|
|
|
|
using (var workbook = new XLWorkbook())
|
|
|
|
|
{
|
|
|
|
|
foreach (var group in attendanceByGroup)
|
|
|
|
|
{
|
|
|
|
|
var worksheet = workbook.Worksheets.Add($"{group.Key}");
|
|
|
|
|
worksheet.Cell(1, 1).Value = "ФИО";
|
|
|
|
|
worksheet.Cell(1, 2).Value = "Группа";
|
|
|
|
|
worksheet.Cell(1, 3).Value = "Дата";
|
|
|
|
|
worksheet.Cell(1, 4).Value = "Занятие";
|
|
|
|
|
worksheet.Cell(1, 5).Value = "Статус";
|
|
|
|
|
|
|
|
|
|
int row = 2;
|
|
|
|
|
int lesNum = 1;
|
|
|
|
|
foreach (var record in group.Value.OrderBy(r => r.Date).ThenBy(r => r.LessonNumber).ThenBy(r => r.UserGuid))
|
|
|
|
|
{
|
|
|
|
|
if (lesNum != record.LessonNumber)
|
|
|
|
|
{
|
|
|
|
|
row++;
|
|
|
|
|
}
|
|
|
|
|
worksheet.Cell(row, 1).Value = record.UserName;
|
|
|
|
|
worksheet.Cell(row, 2).Value = record.GroupName;
|
|
|
|
|
worksheet.Cell(row, 3).Value = record.Date.ToString("dd.MM.yyyy");
|
|
|
|
|
worksheet.Cell(row, 4).Value = record.LessonNumber.ToString();
|
|
|
|
|
worksheet.Cell(row, 5).Value = record.IsAttedance ? "Присутствует" : "Отсутствует";
|
|
|
|
|
row++;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
lesNum = record.LessonNumber;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
worksheet.Columns().AdjustToContents();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
workbook.SaveAs(filePath);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|