2024-05-28 20:27:58 +04:00
|
|
|
|
using UniversityBusinessLogic.OfficePackage;
|
2024-05-02 17:22:43 +04:00
|
|
|
|
using University.ViewModels;
|
2024-05-01 20:40:47 +04:00
|
|
|
|
using UniversityContracts.BindingModels;
|
|
|
|
|
using UniversityContracts.BusinessLogicContracts;
|
|
|
|
|
using UniversityContracts.SearchModels;
|
|
|
|
|
using UniversityContracts.StorageContracts;
|
2024-05-02 17:22:43 +04:00
|
|
|
|
using UniversityContracts.ViewModels;
|
2024-05-28 21:41:10 +04:00
|
|
|
|
using DocumentFormat.OpenXml.EMMA;
|
|
|
|
|
using UniversityBusinessLogic.OfficePackage.HelperModels;
|
2024-05-01 20:40:47 +04:00
|
|
|
|
|
|
|
|
|
namespace UniversityBusinessLogics.BusinessLogics;
|
|
|
|
|
|
|
|
|
|
public class ReportLogic : IReportLogic
|
|
|
|
|
{
|
|
|
|
|
public List<ReportDisciplineViewModel> GetDisciplines(ReportBindingModel model)
|
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*private readonly AbstractSaveToWord _saveToWord;
|
2024-05-28 17:08:06 +04:00
|
|
|
|
private readonly AbstractSaveToExcel _saveToExcel;
|
|
|
|
|
private readonly AbstractSaveToPdf _saveToPdf;*/
|
2024-05-01 20:40:47 +04:00
|
|
|
|
|
|
|
|
|
private readonly ITeacherStorage _teacherStorage;
|
|
|
|
|
private readonly IDisciplineStorage _disciplineStorage;
|
|
|
|
|
private readonly IStudentStorage _studentStorage;
|
|
|
|
|
private readonly IStatementStorage _statementStorage;
|
|
|
|
|
private readonly IPlanOfStudyStorage _planOfStudyStorage;
|
2024-05-28 20:09:01 +04:00
|
|
|
|
|
|
|
|
|
private readonly AbstractSaveToExcelWorker _saveToExcelWorker;
|
|
|
|
|
private readonly AbstractSaveToWordWorker _saveToWordWorker;
|
|
|
|
|
private readonly AbstractSaveToPdfWorker _saveToPdfWorker;
|
2024-05-28 21:41:10 +04:00
|
|
|
|
|
|
|
|
|
private readonly AbstractSaveToWordStorekeeper _saveToWordStorekeeper;
|
|
|
|
|
public ReportLogic (ITeacherStorage teacherStorage, IDisciplineStorage
|
2024-05-28 20:09:01 +04:00
|
|
|
|
disciplineStorage, IStudentStorage studentStorage, IStatementStorage statementStorage,
|
|
|
|
|
IPlanOfStudyStorage planOfStudyStorage, AbstractSaveToExcelWorker saveToExcelWorker, AbstractSaveToWordWorker saveToWordWorker,
|
|
|
|
|
AbstractSaveToPdfWorker saveToPdfWorker)
|
|
|
|
|
{
|
|
|
|
|
_teacherStorage = teacherStorage;
|
|
|
|
|
_disciplineStorage = disciplineStorage;
|
|
|
|
|
_studentStorage = studentStorage;
|
|
|
|
|
_statementStorage = statementStorage;
|
|
|
|
|
_planOfStudyStorage = planOfStudyStorage;
|
|
|
|
|
|
|
|
|
|
_saveToExcelWorker = saveToExcelWorker;
|
|
|
|
|
_saveToWordWorker = saveToWordWorker;
|
|
|
|
|
_saveToPdfWorker = saveToPdfWorker;
|
|
|
|
|
}
|
2024-05-01 20:40:47 +04:00
|
|
|
|
public List<ReportTeacherViewModel> GetTeachers()
|
|
|
|
|
{
|
|
|
|
|
var teachers = _teacherStorage.GetFullList();
|
|
|
|
|
|
|
|
|
|
// Создаем список для результатов
|
|
|
|
|
var result = new List<ReportTeacherViewModel>();
|
|
|
|
|
|
|
|
|
|
foreach (var teacher in teachers)
|
|
|
|
|
{
|
|
|
|
|
// Получаем список дисциплин, связанных с учителем
|
|
|
|
|
var disciplines = _disciplineStorage.GetFilteredList(new DisciplineSearchModel
|
|
|
|
|
{
|
|
|
|
|
TeacherId = teacher.Id,
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
// Получаем список студентов, связанных с дисциплинами
|
|
|
|
|
var students = new List<(string Student, string PhoneNumber)>();
|
|
|
|
|
foreach (var discipline in disciplines)
|
|
|
|
|
{
|
|
|
|
|
var studentDisciplines = _disciplineStorage.GetStudentsForDiscipline(new DisciplineSearchModel
|
|
|
|
|
{
|
|
|
|
|
Id = discipline.Id,
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
foreach (var studentDiscipline in studentDisciplines)
|
|
|
|
|
{
|
|
|
|
|
var studentList = _studentStorage.GetFilteredList(new StudentSearchModel
|
|
|
|
|
{
|
|
|
|
|
Id = studentDiscipline.Id,
|
|
|
|
|
});
|
|
|
|
|
foreach(var st in studentList){
|
|
|
|
|
students.Add((st.Name, st.PhoneNumber));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Добавляем учителя и его студентов в результат
|
|
|
|
|
result.Add(new ReportTeacherViewModel
|
|
|
|
|
{
|
|
|
|
|
TeacherName = teacher.Name,
|
|
|
|
|
Students = students.Distinct().ToList() // Убираем дубликаты, если они есть
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public List<ReportDisciplineViewModel> GetDisciplines(ReportDateRangeBindingModel model)
|
|
|
|
|
{
|
|
|
|
|
var disciplines = _disciplineStorage.GetFullList();
|
|
|
|
|
|
|
|
|
|
var reportDisciplineViewModels = new List<ReportDisciplineViewModel>();
|
|
|
|
|
|
|
|
|
|
foreach (var discipline in disciplines)
|
|
|
|
|
{
|
|
|
|
|
// Получаем список студентов, связанных с дисциплинами
|
|
|
|
|
var studentDisciplines = _disciplineStorage.GetStudentsForDiscipline(new DisciplineSearchModel
|
|
|
|
|
{
|
|
|
|
|
Id = discipline.Id,
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
var planOfStudys = new List<string>();
|
|
|
|
|
foreach (var studentDiscipline in studentDisciplines)
|
|
|
|
|
{
|
|
|
|
|
var student = _studentStorage.GetElement(new StudentSearchModel
|
|
|
|
|
{
|
|
|
|
|
Id = studentDiscipline.Id,
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
if (student != null)
|
|
|
|
|
{
|
|
|
|
|
var planOfStudy = _planOfStudyStorage.GetElement(new PlanOfStudySearchModel
|
|
|
|
|
{
|
|
|
|
|
Id = student.PlanOfStudyId,
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
if (planOfStudy != null)
|
|
|
|
|
{
|
|
|
|
|
planOfStudys.Add(planOfStudy.Profile);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Получаем список заявлений преподавателя в указанном диапазоне дат
|
|
|
|
|
var statements = _statementStorage.GetFilteredList(new StatementSearchModel
|
|
|
|
|
{
|
|
|
|
|
TeacherId = discipline.TeacherId
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
// Создаем ReportDisciplineViewModel и добавляем его в список
|
|
|
|
|
reportDisciplineViewModels.Add(new ReportDisciplineViewModel
|
|
|
|
|
{
|
|
|
|
|
DisciplineName = discipline.Name,
|
|
|
|
|
PlanOfStudys = planOfStudys.Distinct().ToList(), // Убираем дубликаты, если они есть
|
|
|
|
|
Statements = statements.Select(s => s.Name).ToList()
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return reportDisciplineViewModels;
|
|
|
|
|
}
|
|
|
|
|
|
2024-05-02 17:22:43 +04:00
|
|
|
|
public List<ReportPlanOfStudyViewModel> GetPlanOfStudyAndDisciplines()
|
|
|
|
|
{
|
|
|
|
|
var planOfStudies = _planOfStudyStorage.GetFullList();
|
|
|
|
|
var reportPlanOfStudyViewModels = new List<ReportPlanOfStudyViewModel>();
|
|
|
|
|
|
|
|
|
|
foreach (var planOfStudy in planOfStudies)
|
|
|
|
|
{
|
|
|
|
|
// Получаем список дисциплин для текущего плана обучения
|
|
|
|
|
var disciplines = _planOfStudyStorage.GetDisciplineFromStudentsFromPlanOfStudys(new PlanOfStudySearchModel { Id = planOfStudy.Id });
|
|
|
|
|
|
|
|
|
|
// Создаем ReportPlanOfStudyViewModel и добавляем его в список
|
|
|
|
|
reportPlanOfStudyViewModels.Add(new ReportPlanOfStudyViewModel
|
|
|
|
|
{
|
|
|
|
|
PlanOfStudyName = planOfStudy.Profile,
|
2024-05-28 20:27:58 +04:00
|
|
|
|
FormOfStudy = planOfStudy.FormOfStudy,
|
2024-05-02 17:22:43 +04:00
|
|
|
|
Disciplines = disciplines.Select(d => d.Name).ToList() // Получаем только имена дисциплин
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return reportPlanOfStudyViewModels;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public List<ReportPlanOfStudyAndStudentViewModel> GetPlanOfStudyAndStudents(ReportDateRangeBindingModel model)
|
|
|
|
|
{
|
|
|
|
|
var planOfStudies = _planOfStudyStorage.GetFullList();
|
|
|
|
|
var reportPlanOfStudyAndStudentViewModels = new List<ReportPlanOfStudyAndStudentViewModel>();
|
|
|
|
|
|
|
|
|
|
foreach (var planOfStudy in planOfStudies)
|
|
|
|
|
{
|
|
|
|
|
// Получаем список студентов для текущего плана обучения
|
|
|
|
|
var students = _studentStorage.GetFilteredList(new StudentSearchModel { Id = planOfStudy.Id });
|
|
|
|
|
|
|
|
|
|
var studentsAndDisciplines = new List<(string Student, string Discipline)>();
|
|
|
|
|
|
|
|
|
|
foreach (var student in students)
|
|
|
|
|
{
|
|
|
|
|
// Получаем список дисциплин для текущего студента
|
|
|
|
|
var disciplines = _disciplineStorage.GetFilteredList(new DisciplineSearchModel { Id = student.Id });
|
|
|
|
|
|
|
|
|
|
foreach (var discipline in disciplines)
|
|
|
|
|
{
|
|
|
|
|
studentsAndDisciplines.Add((student.Name, discipline.Name));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Создаем ReportPlanOfStudyAndStudentViewModel и добавляем его в список
|
|
|
|
|
reportPlanOfStudyAndStudentViewModels.Add(new ReportPlanOfStudyAndStudentViewModel
|
|
|
|
|
{
|
|
|
|
|
PlanOfStudyName = planOfStudy.Profile,
|
|
|
|
|
StudentsAndDisciplines = studentsAndDisciplines
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return reportPlanOfStudyAndStudentViewModels;
|
|
|
|
|
}
|
|
|
|
|
|
2024-05-01 20:40:47 +04:00
|
|
|
|
public void SaveTeachersToExcel(ReportBindingModel option)
|
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
2024-05-02 17:22:43 +04:00
|
|
|
|
public void SavePlanOfStudyToExcel(ReportBindingModel option)
|
|
|
|
|
{
|
2024-05-28 21:40:18 +04:00
|
|
|
|
/*_saveToExcelWorker.CreateReport(new ExcelInfoWorker
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
});*/
|
2024-05-02 17:22:43 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void SavePlanOfStudyToWord(ReportBindingModel option)
|
|
|
|
|
{
|
2024-05-28 21:40:18 +04:00
|
|
|
|
_saveToWordWorker.CreateDoc(new WordInfoWorker
|
|
|
|
|
{
|
|
|
|
|
FileName = option.FileName,
|
|
|
|
|
Title = "Список планов обучения",
|
|
|
|
|
PlanOfStudys = GetPlanOfStudyAndDisciplines()
|
|
|
|
|
});
|
2024-05-02 17:22:43 +04:00
|
|
|
|
}
|
2024-05-01 20:40:47 +04:00
|
|
|
|
|
|
|
|
|
public void SaveTeachersToWord(ReportBindingModel option)
|
|
|
|
|
{
|
2024-05-28 21:41:10 +04:00
|
|
|
|
_saveToWordStorekeeper.CreateDoc(new WordInfoStorekeeper
|
|
|
|
|
{
|
|
|
|
|
FileName = option.FileName,
|
|
|
|
|
Title = "Список пакетов документов",
|
|
|
|
|
TeacherInfo = GetTeachers()
|
|
|
|
|
});
|
2024-05-01 20:40:47 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void SendDisciplinesToEmail(ReportDateRangeBindingModel option, string email)
|
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
2024-05-02 17:22:43 +04:00
|
|
|
|
|
|
|
|
|
public void SendPlanOfStudyToEmail(ReportDateRangeBindingModel option, string email)
|
|
|
|
|
{
|
2024-05-28 21:40:18 +04:00
|
|
|
|
/*_saveToPdfWorker.CreateDoc(new PdfInfoWorker
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
});*/
|
2024-05-02 17:22:43 +04:00
|
|
|
|
}
|
2024-05-01 20:40:47 +04:00
|
|
|
|
}
|