585 lines
29 KiB
C#
585 lines
29 KiB
C#
using AutoMapper;
|
||
using FluentValidation;
|
||
using Microsoft.AspNetCore.Authorization;
|
||
using Microsoft.AspNetCore.Mvc;
|
||
using Microsoft.EntityFrameworkCore;
|
||
using PARR.API.Contracts.V1;
|
||
using PARR.API.Contracts.V1.Requests;
|
||
using PARR.API.Contracts.V1.Requests.Queries;
|
||
using PARR.API.Contracts.V1.Responses;
|
||
using PARR.API.Contracts.V1.Responses.Base;
|
||
using PARR.API.Controllers.V1.Base;
|
||
using PARR.API.Extensions;
|
||
using PARR.API.Services.Interfaces;
|
||
using PARR.API.Settings;
|
||
using PARR.Core.Common.Helpers;
|
||
using PARR.Core.Common.Interfaces.RabbitServices;
|
||
using PARR.Core.Repositories.Interfaces.Job;
|
||
using PARR.Core.Repositories.Interfaces.Schedule;
|
||
using PARR.Core.Services.MatchingStatusService;
|
||
using PARR.Domain.Common.Pagination;
|
||
using PARR.Domain.Common.Rabbit.Messages;
|
||
using PARR.Domain.Common.Roles;
|
||
using PARR.Domain.Entities.Base.History;
|
||
using PARR.Domain.Entities.Job;
|
||
using PARR.Domain.Entities.Schedule;
|
||
using PARR.Domain.Enums;
|
||
|
||
namespace PARR.API.Controllers.V1
|
||
{
|
||
/// <summary>
|
||
/// Управление группами работам
|
||
/// </summary>
|
||
[Authorize(Roles = ParrRoles.Administrator.Role)]
|
||
public class JobGroupController : BaseApiController
|
||
{
|
||
private readonly ILogger<JobController> logger;
|
||
private readonly IMapper mapper;
|
||
private readonly IUriService uriService;
|
||
private readonly IJobGroupRepository groupService;
|
||
private readonly IJobRepository jobService;
|
||
private readonly IEsppSchTypeConfigRepository esppConfigService;
|
||
private readonly IValidator<JobGroupRequest> validator;
|
||
private readonly IJobGroupTypeRepository jobGroupTypeService;
|
||
private readonly IMatchingStatusService matchingStatusService;
|
||
private readonly IScheduleResponseAreaTimeOffsetRepository scheduleResponseAreaTimeOffsetService;
|
||
private readonly IRabbitService mqService;
|
||
private readonly MqSettings mqSettings;
|
||
|
||
public JobGroupController(
|
||
ILogger<JobController> logger,
|
||
IMapper mapper,
|
||
IUriService uriService,
|
||
IJobGroupRepository groupService,
|
||
IJobRepository jobService,
|
||
IEsppSchTypeConfigRepository esppConfigService,
|
||
IValidator<JobGroupRequest> validator,
|
||
IJobGroupTypeRepository jobGroupTypeService,
|
||
IMatchingStatusService matchingStatusService,
|
||
IScheduleResponseAreaTimeOffsetRepository scheduleResponseAreaTimeOffsetService,
|
||
IRabbitService mqService,
|
||
MqSettings mqSettings
|
||
)
|
||
{
|
||
this.logger = logger;
|
||
this.mapper = mapper;
|
||
this.uriService = uriService;
|
||
this.groupService = groupService;
|
||
this.jobService = jobService;
|
||
this.esppConfigService = esppConfigService;
|
||
this.validator = validator;
|
||
this.jobGroupTypeService = jobGroupTypeService;
|
||
this.matchingStatusService = matchingStatusService;
|
||
this.scheduleResponseAreaTimeOffsetService = scheduleResponseAreaTimeOffsetService;
|
||
this.mqService = mqService;
|
||
this.mqSettings = mqSettings;
|
||
}
|
||
|
||
|
||
/// <summary>
|
||
/// Получить список групп заданий на выполнение работ постранично
|
||
/// </summary>
|
||
/// <returns></returns>
|
||
[HttpGet(ApiRoutes.JobGroup.GetAll)]
|
||
public async Task<IActionResult> GetAll([FromQuery] PaginationQuery paginationQuery, [FromQuery] JobGroupQuery filter)
|
||
{
|
||
var paginationFilter = mapper.Map<PaginationFilter>(paginationQuery);
|
||
|
||
IQueryable<JobGroup> query = groupService.Get()
|
||
.Include(t => t.GroupType)
|
||
.Include(t => t.GroupingUnitField)
|
||
.Include(t => t.ScheduleExcludeType)
|
||
.Include(t => t.ScheduleExcludeTypeCalendar);
|
||
|
||
query = query.OrderBy(t => t.GroupName);
|
||
|
||
if (!string.IsNullOrEmpty(filter.Name))
|
||
{
|
||
//query = query.Where(t => t.GroupName.ToLower().Contains(filter.Name.ToLower()));
|
||
query = query.Where(t => EF.Functions.Like(t.GroupName.ToLower(), SqlHelpers.RegexToLike(filter.Name)));
|
||
}
|
||
|
||
if (filter.IsFull)
|
||
query = query
|
||
.Include(t => t.Jobs).ThenInclude(t => t.Tnk)
|
||
.Include(t => t.DistributionConfig).ThenInclude(t => t.DistributionPeriod);
|
||
|
||
var jobGroups = await groupService.GetPage(query, paginationFilter).ToListAsync();
|
||
|
||
if (!jobGroups.Any())
|
||
return NoContent();
|
||
|
||
var response = mapper.Map<List<JobGroupResponse>>(jobGroups);
|
||
|
||
if (filter.IsFull)
|
||
foreach (var jobGroupResponse in response)
|
||
await AppendMissingDataAsync(jobGroupResponse);
|
||
|
||
var paginationResponse = new PagedResponse<JobGroupResponse>(response, true).GetPaginatedProps(paginationFilter, query);
|
||
|
||
return Ok(paginationResponse);
|
||
}
|
||
|
||
|
||
/// <summary>
|
||
/// Получить группу заданий на выполнение работ по id
|
||
/// </summary>
|
||
/// <param name="id"></param>
|
||
/// <returns></returns>
|
||
[HttpGet(ApiRoutes.JobGroup.Get)]
|
||
public async Task<IActionResult> GetById([FromRoute] Guid id)
|
||
{
|
||
var jobGroup = await groupService.Get()
|
||
.Include(t => t.Jobs).ThenInclude(t => t.Tnk)
|
||
.Include(t => t.GroupType)
|
||
.Include(t => t.GroupingUnitField)
|
||
.Include(t => t.ScheduleExcludeType)
|
||
.Include(t => t.ScheduleExcludeTypeCalendar)
|
||
.Include(t => t.DistributionConfig).ThenInclude(t => t.DistributionPeriod)
|
||
.FirstOrDefaultAsync(t => t.Id == id);
|
||
|
||
if (jobGroup == null)
|
||
return NotFound();
|
||
|
||
var response = mapper.Map<JobGroupResponse>(jobGroup);
|
||
await AppendMissingDataAsync(response);
|
||
|
||
return Ok(new Response<JobGroupResponse>(response, true));
|
||
}
|
||
|
||
|
||
/// <summary>
|
||
/// Создать группу заданий на выполнение работ (JobGroup)
|
||
/// </summary>
|
||
/// <param name="request"></param>
|
||
/// <returns></returns>
|
||
[HttpPost(ApiRoutes.JobGroup.Create)]
|
||
public async Task<IActionResult> Create([FromBody] JobGroupRequest request)
|
||
{
|
||
var resultValidate = await validator.ValidateAsync(request);
|
||
|
||
if (!resultValidate.IsValid)
|
||
return BadRequest(new Response(resultValidate.Errors));
|
||
|
||
var jobGroup = new JobGroup
|
||
{
|
||
Id = Guid.NewGuid(),
|
||
GroupName = request.Name.Trim(),
|
||
//IsUmbrella = request.IsUmbrella,
|
||
GroupTypeId = request.GroupTypeId,
|
||
GroupingUnitFieldId = await GetGroupingUnitFieldIdAsync(request),
|
||
ShortDescription = request.ShortDescription.Trim(),
|
||
FullDescription = request.FullDescription.Trim(),
|
||
Solution = request.Solution.Trim(),
|
||
TemplateDuration = request.TemplateDuration.Trim(),
|
||
ReferenceDate = request.ReferenceDate,
|
||
UserTimeZoneOffsetMinutes = request.UserTimeZoneOffsetMinutes,
|
||
ScheduleExcludeTypeId = request.ScheduleExcludeTypeId,
|
||
ScheduleExcludeTypeCalendarId = request.ScheduleExcludeTypeCalendarId,
|
||
IsAutoDistributionEnabled = request.IsAutoDistributionEnabled,
|
||
IsResponseAreaTimezone = request.IsWorkGroupTimezone,
|
||
IsGroupByResponsible = request.IsGroupByResponsible
|
||
//IsAgent = request.IsAgent,
|
||
//AgentName = request.AgentName,
|
||
//AgentTimeOutSec = request.AgentTimeOutSec,
|
||
//AgentScript = request.AgentScript
|
||
};
|
||
|
||
#region Если включено автораспределение, добавляем настройки
|
||
if (request.IsAutoDistributionEnabled)
|
||
{
|
||
// на всякий проверим, но вообще это проверяется в валидаторе
|
||
if (request.DistributionConfig == null)
|
||
{
|
||
logger.LogError("Ошибка при создании группы работ '{name}', отсутствуют настройки автораспределения", request.Name);
|
||
return BadRequest(new Response(false, new List<ErrorModel> { new ErrorModel { Message = "Ошибка при создании группы заданий на выполнение работ" } }));
|
||
}
|
||
|
||
jobGroup.DistributionConfig = CreateDistributionConfig(request.DistributionConfig, jobGroup.Id);
|
||
}
|
||
#endregion
|
||
|
||
//Добавляем настройки планировщика
|
||
request.Schedule.ForEach(item =>
|
||
{
|
||
jobGroup.EsppSchValues.Add(new EsppSchValue
|
||
{
|
||
JobGroupId = jobGroup.Id,
|
||
TypeConfigId = item.TypeConfigId,
|
||
TypeValueId = item.TypeValueId
|
||
});
|
||
});
|
||
|
||
if (!await groupService.CreateAsync(jobGroup) || !await groupService.CommitAsync())
|
||
return BadRequest(new Response(false, new List<ErrorModel> { new ErrorModel { Message = "Ошибка при создании группы заданий на выполнение работ" } }));
|
||
|
||
logger.LogInformation($"Пользователь {User.Identity?.Name} добавил группу заданий на выполнение работ: {jobGroup.Id}, {jobGroup.GroupName}, {jobGroup.ShortDescription}");
|
||
|
||
|
||
var createdJobGroup = await groupService.Get().Include(t => t.Jobs).ThenInclude(t => t.Tnk)
|
||
.Include(t => t.GroupType)
|
||
.Include(t => t.GroupingUnitField)
|
||
.Include(t => t.ScheduleExcludeType)
|
||
.Include(t => t.ScheduleExcludeTypeCalendar)
|
||
.Include(t => t.DistributionConfig).ThenInclude(t => t.DistributionPeriod)
|
||
.FirstAsync(t => t.Id == jobGroup.Id);
|
||
|
||
var locationUri = uriService.GetUri(ApiRoutes.JobGroup.Get, ApiRoutes.JobGroup.getParam, createdJobGroup.Id);
|
||
|
||
var response = mapper.Map<JobGroupResponse>(createdJobGroup);
|
||
await AppendMissingDataAsync(response);
|
||
|
||
return Created(locationUri, new Response<JobGroupResponse>(response, true));
|
||
}
|
||
|
||
|
||
/// <summary>
|
||
/// Обновить группу заданий на выполнение работ (JobGroup)
|
||
/// </summary>
|
||
/// <param name="id"></param>
|
||
/// <param name="request"></param>
|
||
/// <returns></returns>
|
||
[HttpPut(ApiRoutes.JobGroup.Update)]
|
||
public async Task<IActionResult> Update([FromRoute] Guid id, [FromBody] JobGroupRequest request)
|
||
{
|
||
var resultValidate = await validator.ValidateAsync(request);
|
||
|
||
if (!resultValidate.IsValid)
|
||
return BadRequest(new Response(resultValidate.Errors));
|
||
|
||
var orig = await groupService.Get()
|
||
.Include(t => t.Jobs)
|
||
.ThenInclude(t => t.Tnk)
|
||
.Include(t => t.EsppSchValues)
|
||
.Include(t => t.DistributionConfig).ThenInclude(t => t.DistributionPeriod)
|
||
.FirstOrDefaultAsync(t => t.Id == id);
|
||
|
||
if (orig == null)
|
||
return BadRequest(new Response(false, new List<ErrorModel> { new ErrorModel { Message = $"Ошибка при изменении группы заданий на выполнение работ. Не найдена группа с Id: {id}" } }));
|
||
|
||
//Расписание было изменено, ниже добавим задание в очередь на обновление расписаний у связанных шаблонов
|
||
var isScheduleChanged = IsScheduleChanged(orig, request);
|
||
|
||
orig.GroupName = request.Name.Trim();
|
||
//orig.IsUmbrella = request.IsUmbrella;
|
||
orig.GroupTypeId = request.GroupTypeId;
|
||
orig.GroupingUnitFieldId = await GetGroupingUnitFieldIdAsync(request);
|
||
orig.ShortDescription = request.ShortDescription.Trim();
|
||
orig.FullDescription = request.FullDescription.Trim();
|
||
orig.Solution = request.Solution.Trim();
|
||
orig.TemplateDuration = request.TemplateDuration.Trim();
|
||
orig.ReferenceDate = request.ReferenceDate;
|
||
orig.UserTimeZoneOffsetMinutes = request.UserTimeZoneOffsetMinutes;
|
||
orig.ScheduleExcludeTypeId = request.ScheduleExcludeTypeId;
|
||
orig.ScheduleExcludeTypeCalendarId = request.ScheduleExcludeTypeCalendarId;
|
||
orig.IsAutoDistributionEnabled = request.IsAutoDistributionEnabled;
|
||
orig.IsResponseAreaTimezone = request.IsWorkGroupTimezone;
|
||
// IsGroupByResponsible - может быть значение, только если тип ГРУППОВОЙ
|
||
orig.IsGroupByResponsible = await GetIsGroupByResponsibleValue(request);
|
||
//orig.IsAgent = request.IsAgent;
|
||
//orig.AgentName = request.AgentName;
|
||
//orig.AgentTimeOutSec = request.AgentTimeOutSec;
|
||
//orig.AgentScript = request.AgentScript;
|
||
|
||
#region Обновляем настройки автораспределения
|
||
|
||
if (request.IsAutoDistributionEnabled)
|
||
{
|
||
if (request.DistributionConfig == null)
|
||
{
|
||
logger.LogError("Ошибка при изменении группы работ '{name}', отсутствуют настройки автораспределения", request.Name);
|
||
return BadRequest(new Response(false, new List<ErrorModel> { new ErrorModel { Message = "Ошибка при изменении группы заданий на выполнение работ" } }));
|
||
}
|
||
|
||
// если настройки были, меняем, если не было, создаем
|
||
if (orig.DistributionConfig != null)
|
||
{
|
||
orig.DistributionConfig.DistributionPeriodId = request.DistributionConfig.DistributionPeriodId;
|
||
orig.DistributionConfig.IsExcludeWeekends = request.DistributionConfig.IsExcludeWeekends;
|
||
orig.DistributionConfig.IsGroupingByWorkGroup = request.DistributionConfig.IsGroupingByWorkGroup;
|
||
}
|
||
else
|
||
{
|
||
//создаем
|
||
orig.DistributionConfig = CreateDistributionConfig(request.DistributionConfig, orig.Id);
|
||
}
|
||
}
|
||
else
|
||
{
|
||
// удаляем настройки распределения если они были
|
||
if (orig.DistributionConfig != null)
|
||
{
|
||
groupService.DeleteDistributionConfig(orig.DistributionConfig);
|
||
}
|
||
}
|
||
|
||
#endregion
|
||
|
||
//обновляем планировщик
|
||
orig.EsppSchValues.Clear();
|
||
request.Schedule.ForEach(item =>
|
||
{
|
||
orig.EsppSchValues.Add(new EsppSchValue
|
||
{
|
||
JobGroupId = orig.Id,
|
||
TypeConfigId = item.TypeConfigId,
|
||
TypeValueId = item.TypeValueId
|
||
});
|
||
});
|
||
|
||
if (!await groupService.CommitAsync())
|
||
return BadRequest(new Response(false, new List<ErrorModel> { new ErrorModel { Message = "Ошибка при изменении группы заданий на выполнение работ." } }));
|
||
|
||
logger.LogInformation($"Пользователь {User.Identity?.Name} обновил группу заданий на выполнение работ: {orig.Id}," +
|
||
$" {orig.GroupName}, {orig.ShortDescription}, {orig.FullDescription}," +
|
||
$" {orig.Solution}, {orig.TemplateDuration}, {orig.ReferenceDate}, {orig.IsAutoDistributionEnabled}" +
|
||
$", {orig.IsAgent}, {orig.AgentName}, {orig.AgentTimeOutSec}, {orig.AgentScript}");
|
||
|
||
|
||
#region расписание было изменено, отправим задание на перерасчет nextRun
|
||
if (isScheduleChanged)
|
||
{
|
||
// расписание было изменено, отправим задание на перерасчет nextRun
|
||
var requestToMq = new NextRunUpdateMq
|
||
{
|
||
JobGroupId = id,
|
||
Initiator = new HistoryInitiator { InitiatorComment = "Изменилось расписание группы работ в ГУИ, отправлен запрос на перерасчет nextRun", InitiatorParrComponentId = ParrComponentsEnum.Api }
|
||
};
|
||
var sendResult = await mqService.SendAsync(mqSettings.NextRun, new List<object> { requestToMq });
|
||
|
||
if (sendResult.IsSuccess)
|
||
logger.LogInformation("Задание на перерасчет NextRun успешно отправлено в очередь MQ {queueName}", mqSettings.NextRun.QueueName);
|
||
else
|
||
logger.LogError("Ошибка при отправке задания на перерасчет NextRun в очередь MQ {queueName}", mqSettings.NextRun.QueueName);
|
||
}
|
||
#endregion
|
||
|
||
|
||
var updatedJobGroup = await groupService.Get()
|
||
.Include(t => t.Jobs)
|
||
.ThenInclude(t => t.Tnk)
|
||
.Include(t => t.GroupType)
|
||
.Include(t => t.GroupingUnitField)
|
||
.Include(t => t.ScheduleExcludeType)
|
||
.Include(t => t.ScheduleExcludeTypeCalendar)
|
||
.Include(t => t.DistributionConfig).ThenInclude(t => t.DistributionPeriod)
|
||
.FirstAsync(t => t.Id == orig.Id);
|
||
|
||
var response = mapper.Map<JobGroupResponse>(updatedJobGroup);
|
||
await AppendMissingDataAsync(response);
|
||
|
||
return Ok(new Response<JobGroupResponse>(response, true));
|
||
}
|
||
|
||
|
||
/// <summary>
|
||
/// Удалить группу заданий на выполнение работ (только если нет связанных заданий)
|
||
/// </summary>
|
||
/// <param name="id"></param>
|
||
/// <returns></returns>
|
||
[HttpDelete(ApiRoutes.JobGroup.Delete)]
|
||
public async Task<IActionResult> Delete([FromRoute] Guid id)
|
||
{
|
||
var jobGroup = await groupService.Get()
|
||
.FirstOrDefaultAsync(t => t.Id == id);
|
||
|
||
if (jobGroup == null)
|
||
return BadRequest(new Response(false, new List<ErrorModel> { new ErrorModel {
|
||
Message = $"Ошибка при удалении группы заданий на выполнение работ. Не найдена группа заданий на выполнение работ Id: {id}"
|
||
} }));
|
||
|
||
var jobCount = await jobService.Get().CountAsync(t => t.GroupId == id);
|
||
if (jobCount > 0)
|
||
return BadRequest(new Response(false, new List<ErrorModel> { new ErrorModel {
|
||
Message = $"Ошибка при удалении группы заданий на выполнение работ. С данным группой связаны задания: {jobCount} шт."
|
||
} }));
|
||
|
||
if (!groupService.Delete(jobGroup) || !await groupService.CommitAsync())
|
||
return BadRequest(new Response(false, new List<ErrorModel> { new ErrorModel {
|
||
Message = $"Ошибка при удалении группы заданий на выполнение работ"
|
||
} }));
|
||
|
||
logger.LogInformation($"Пользователь {User.Identity?.Name} удалил группу заданий на выполнение работ: {jobGroup.Id},{jobGroup.GroupName}," +
|
||
$" {jobGroup.ShortDescription}, {jobGroup.FullDescription}," +
|
||
$" {jobGroup.Solution}, {jobGroup.TemplateDuration}, {jobGroup.ReferenceDate}," +
|
||
$" {jobGroup.IsAutoDistributionEnabled}, {jobGroup.IsAgent}, {jobGroup.AgentName}," +
|
||
$" {jobGroup.AgentTimeOutSec}, {jobGroup.AgentScript}");
|
||
|
||
return NoContent();
|
||
}
|
||
|
||
|
||
/// <summary>
|
||
/// Проверка, были ли изменения в расписании
|
||
/// </summary>
|
||
/// <param name="orig"></param>
|
||
/// <param name="request"></param>
|
||
/// <returns></returns>
|
||
private bool IsScheduleChanged(JobGroup orig, JobGroupRequest request)
|
||
{
|
||
var isScheduleChanged = false;
|
||
|
||
if (orig.ReferenceDate != request.ReferenceDate)
|
||
isScheduleChanged = true;
|
||
|
||
if (request.Schedule.Count() != orig.EsppSchValues.Count())
|
||
isScheduleChanged = true;
|
||
|
||
if (request.IsAutoDistributionEnabled != orig.IsAutoDistributionEnabled)
|
||
isScheduleChanged = true;
|
||
|
||
if (request.DistributionConfig?.DistributionPeriodId != orig.DistributionConfig?.DistributionPeriodId)
|
||
isScheduleChanged = true;
|
||
|
||
if (request.DistributionConfig?.IsExcludeWeekends != orig.DistributionConfig?.IsExcludeWeekends)
|
||
isScheduleChanged = true;
|
||
|
||
if (request.DistributionConfig?.IsGroupingByWorkGroup != orig.DistributionConfig?.IsGroupingByWorkGroup)
|
||
isScheduleChanged = true;
|
||
|
||
if (request.ScheduleExcludeTypeId != orig.ScheduleExcludeTypeId)
|
||
isScheduleChanged = true;
|
||
|
||
if (request.ScheduleExcludeTypeCalendarId != orig.ScheduleExcludeTypeCalendarId)
|
||
isScheduleChanged = true;
|
||
|
||
if (request.IsWorkGroupTimezone != orig.IsResponseAreaTimezone)
|
||
isScheduleChanged = true;
|
||
|
||
if (request.UserTimeZoneOffsetMinutes != orig.UserTimeZoneOffsetMinutes)
|
||
isScheduleChanged = true;
|
||
|
||
|
||
request.Schedule.ForEach(requestSchedule =>
|
||
{
|
||
var schExist = orig.EsppSchValues.FirstOrDefault(t => t.JobGroupId == orig.Id
|
||
&& t.TypeValueId == requestSchedule.TypeValueId
|
||
&& t.TypeConfigId == requestSchedule.TypeConfigId);
|
||
|
||
if (schExist == null)
|
||
isScheduleChanged = true;
|
||
});
|
||
|
||
return isScheduleChanged;
|
||
}
|
||
|
||
|
||
/// <summary>
|
||
/// Заполнить обязательные поля
|
||
/// </summary>
|
||
/// <param name="jobGroupResponse"></param>
|
||
/// <returns></returns>
|
||
private async Task AppendMissingDataAsync(JobGroupResponse jobGroupResponse)
|
||
{
|
||
var schedule = await esppConfigService.GetEsppScheduleDtoAsync(jobGroupResponse.Id);
|
||
|
||
if (schedule == null)
|
||
{
|
||
logger.LogError($"Не смог замапить расписание, так как оно null. JobGroupId: {jobGroupResponse.Id}");
|
||
return;
|
||
}
|
||
|
||
var scheduleResponse = new JobGroupScheduleResponse
|
||
{
|
||
//Timezone = settingsFromDb.ScheduleTimezone,
|
||
Timezone = scheduleResponseAreaTimeOffsetService.GetDefault.EsppValue,
|
||
TypeSchedule = mapper.Map<EsppScheduleTypeScheduleResponse>(schedule.TypeSchedule),
|
||
Values = mapper.Map<List<EsppScheduleValResponse>>(schedule.Values).OrderBy(t => t.Order).ToList()
|
||
};
|
||
|
||
jobGroupResponse.Schedule = scheduleResponse;
|
||
|
||
jobGroupResponse.JobsCount = await jobService.Get().CountAsync(t => t.GroupId == jobGroupResponse.Id);
|
||
|
||
jobGroupResponse.MatchingStatus = await GetMatchingStatusAsync(jobGroupResponse.Id);
|
||
}
|
||
|
||
/// <summary>
|
||
/// Получить значение IsGroupByResponsible из реквеста
|
||
/// </summary>
|
||
/// <param name="request"></param>
|
||
/// <returns></returns>
|
||
private async Task<bool?> GetIsGroupByResponsibleValue(JobGroupRequest request)
|
||
{
|
||
// IsGroupByResponsible - может быть значение, только если тип ГРУППОВОЙ
|
||
if (!request.IsGroupByResponsible.HasValue)
|
||
return null;
|
||
|
||
// Если есть значение, смотрим, групповой ли тип работ, и если нет, то вернем null
|
||
var groupingType = await jobGroupTypeService.Get().FirstAsync(t => t.Code == JobGroupTypesEnum.Group);
|
||
if (request.GroupTypeId == groupingType.Id)
|
||
{
|
||
// это групповой тип работ, все ок
|
||
return request.IsGroupByResponsible;
|
||
}
|
||
else
|
||
{
|
||
// Это не сгруппированный тип, обнуляем IsGroupByResponsible
|
||
logger.LogInformation("При сохраненни JobGroup, был передан IsGroupByResponsible: {IsGroupByResponsible}, но при этом, тип группы не сгруппированный, а GroupTypeId: {GroupTypeId}, обнулил IsGroupByResponsible",
|
||
request.IsGroupByResponsible, request.GroupTypeId);
|
||
return null;
|
||
}
|
||
}
|
||
|
||
|
||
/// <summary>
|
||
/// Смотрим на тип Группы, и возвращаем GroupingUnitFieldId или обнуляем его
|
||
/// </summary>
|
||
/// <param name="request"></param>
|
||
/// <returns></returns>
|
||
private async Task<Guid?> GetGroupingUnitFieldIdAsync(JobGroupRequest request)
|
||
{
|
||
// Если request.GroupingUnitFieldId == null, то ничего проверять не будем
|
||
if (request.GroupingUnitFieldId == null)
|
||
return request.GroupingUnitFieldId;
|
||
|
||
|
||
var groupingType = await jobGroupTypeService.Get().FirstAsync(t => t.Code == JobGroupTypesEnum.Group);
|
||
|
||
if (request.GroupTypeId == groupingType.Id)
|
||
{
|
||
// Это сгруппированный тип, все ок
|
||
return request.GroupingUnitFieldId;
|
||
}
|
||
else
|
||
{
|
||
// Это не сгруппированный тип, обнуляем GroupingUnitFieldId
|
||
logger.LogInformation("При сохраненни JobGroup, был передан GroupingUnitFieldId: {GroupingUnitFieldId}, но при этом, тип группы не сгруппированный, а GroupTypeId: {GroupTypeId}, обнулил GroupingUnitFieldId",
|
||
request.GroupingUnitFieldId, request.GroupTypeId);
|
||
return null;
|
||
}
|
||
}
|
||
|
||
|
||
/// <summary>
|
||
/// Получить статус matching`a
|
||
/// </summary>
|
||
/// <param name="jobGroupId"></param>
|
||
/// <returns></returns>
|
||
private async Task<MatchingStatusResponse?> GetMatchingStatusAsync(Guid jobGroupId)
|
||
{
|
||
var statusMatching = await matchingStatusService.GetStatusAsync(jobGroupId, SyncTaskEntityTypeEnum.JobGroup);
|
||
|
||
return mapper.Map<MatchingStatusResponse>(statusMatching);
|
||
}
|
||
|
||
|
||
/// <summary>
|
||
/// Создать конфиг распределения
|
||
/// </summary>
|
||
/// <param name="distributionConfigRequest"></param>
|
||
/// <param name="jobGroupId"></param>
|
||
/// <returns></returns>
|
||
private JobGroupDistributionConfig CreateDistributionConfig(DistributionConfigRequest distributionConfigRequest, Guid jobGroupId)
|
||
{
|
||
return new JobGroupDistributionConfig
|
||
{
|
||
GroupId = jobGroupId,
|
||
DistributionPeriodId = distributionConfigRequest.DistributionPeriodId,
|
||
IsExcludeWeekends = distributionConfigRequest.IsExcludeWeekends,
|
||
IsGroupingByWorkGroup = distributionConfigRequest.IsGroupingByWorkGroup
|
||
};
|
||
}
|
||
}
|
||
}
|