2023-04-01 22:41:11 +04:00
|
|
|
|
using CarServiceContracts.BindingModels;
|
|
|
|
|
using CarServiceContracts.BusinessLogicsContracts;
|
|
|
|
|
using CarServiceContracts.SearchModels;
|
|
|
|
|
using CarServiceContracts.StorageContracts;
|
|
|
|
|
using CarServiceContracts.ViewModels;
|
|
|
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
|
|
|
|
|
|
namespace CarServiceBusinessLogic.BusinessLogics
|
|
|
|
|
{
|
|
|
|
|
public class ItemForRepairLogic : IItemForRepairLogic
|
|
|
|
|
{
|
|
|
|
|
private readonly ILogger _logger;
|
2023-04-05 22:15:31 +04:00
|
|
|
|
private readonly IItemForRepairStorage _itemForRepairStorage;
|
2023-04-07 08:22:21 +04:00
|
|
|
|
private readonly IItemStorage _itemStorage;
|
|
|
|
|
public ItemForRepairLogic(ILogger<ItemForRepairLogic> logger, IItemForRepairStorage itemForRepairStorage, IItemStorage itemStorage)
|
2023-04-01 22:41:11 +04:00
|
|
|
|
{
|
|
|
|
|
_logger = logger;
|
2023-04-05 22:15:31 +04:00
|
|
|
|
_itemForRepairStorage = itemForRepairStorage;
|
2023-04-07 08:22:21 +04:00
|
|
|
|
_itemStorage = itemStorage;
|
2023-04-01 22:41:11 +04:00
|
|
|
|
}
|
|
|
|
|
public List<ItemForRepairViewModel>? ReadList(ItemForRepairSearchModel? model)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogInformation("ReadList. Id: {Id}", model?.Id);
|
2023-04-05 22:15:31 +04:00
|
|
|
|
var list = model == null ? _itemForRepairStorage.GetFullList() : _itemForRepairStorage.GetFilteredList(model);
|
2023-04-01 22:41:11 +04:00
|
|
|
|
if (list == null)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogWarning("ReadList return null list");
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
_logger.LogInformation("ReadList. Count: {Count}", list.Count);
|
|
|
|
|
return list;
|
|
|
|
|
}
|
|
|
|
|
public ItemForRepairViewModel? ReadElement(ItemForRepairSearchModel model)
|
|
|
|
|
{
|
|
|
|
|
if (model == null)
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentNullException(nameof(model));
|
|
|
|
|
}
|
|
|
|
|
_logger.LogInformation("ReadElement. Id: {Id}", model.Id);
|
2023-04-05 22:15:31 +04:00
|
|
|
|
var element = _itemForRepairStorage.GetElement(model);
|
2023-04-01 22:41:11 +04:00
|
|
|
|
if (element == null)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogWarning("ReadElement element not found");
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
_logger.LogInformation("ReadElement found. Id: {Id}", element.Id);
|
|
|
|
|
return element;
|
|
|
|
|
}
|
|
|
|
|
public bool Create(ItemForRepairBindingModel model)
|
|
|
|
|
{
|
|
|
|
|
CheckModel(model);
|
2023-04-07 08:22:21 +04:00
|
|
|
|
//При добавлении привязки уменьшаем количество нужной статьи затрат
|
|
|
|
|
var item = _itemStorage.GetElement(new() { Id = model.ItemId });
|
|
|
|
|
if (_itemStorage.UpdateCount(item, -model.Count) == null)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogWarning("Insert operation failed while updating count");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2023-04-05 22:15:31 +04:00
|
|
|
|
if (_itemForRepairStorage.Insert(model) == null)
|
2023-04-01 22:41:11 +04:00
|
|
|
|
{
|
|
|
|
|
_logger.LogWarning("Insert operation failed");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
public bool Update(ItemForRepairBindingModel model)
|
|
|
|
|
{
|
|
|
|
|
CheckModel(model);
|
2023-04-07 08:22:21 +04:00
|
|
|
|
//Возвращаем нужное количество старых статей затрат на склад
|
|
|
|
|
var oldItem = _itemStorage.GetElement(new() { Id = (_itemForRepairStorage.GetElement(new() { Id = model.ItemId })?.ItemId ?? -1) });
|
|
|
|
|
if (_itemStorage.UpdateCount(oldItem, model.Count) == null)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogWarning("Insert operation failed while returning old intem on storage");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
//Списываем новую статью затрат со склада в новом количестве
|
|
|
|
|
var newItem = _itemStorage.GetElement(new() { Id = model.ItemId });
|
|
|
|
|
if (_itemStorage.UpdateCount(newItem, -model.Count) == null)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogWarning("Insert operation failed while updating count");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2023-04-05 22:15:31 +04:00
|
|
|
|
if (_itemForRepairStorage.Update(model) == null)
|
2023-04-01 22:41:11 +04:00
|
|
|
|
{
|
|
|
|
|
_logger.LogWarning("Update operation failed");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
public bool Delete(ItemForRepairBindingModel model)
|
|
|
|
|
{
|
|
|
|
|
CheckModel(model, false);
|
|
|
|
|
_logger.LogInformation("Delete. Id:{Id}", model.Id);
|
2023-04-05 22:15:31 +04:00
|
|
|
|
if (_itemForRepairStorage.Delete(model) == null)
|
2023-04-01 22:41:11 +04:00
|
|
|
|
{
|
|
|
|
|
_logger.LogWarning("Delete operation failed");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
private void CheckModel(ItemForRepairBindingModel model, bool withParams = true)
|
|
|
|
|
{
|
|
|
|
|
if (model == null)
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentNullException(nameof(model));
|
|
|
|
|
}
|
|
|
|
|
if (!withParams)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
2023-04-07 08:22:21 +04:00
|
|
|
|
//Получаем текущее число статей затрат выбранного вида на складе
|
|
|
|
|
int currentItemOnStorage = _itemStorage.GetElement(new() { Id = model.ItemId })?.Count ?? -1;
|
|
|
|
|
//Если на складе осталось статей затрат выбранного вида меньше, чем нужно на заявку, отменяем добавление привязки
|
|
|
|
|
if (currentItemOnStorage < model.Count)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogWarning("Not enough items {Id} on storage", model.ItemId);
|
|
|
|
|
throw new ArgumentException("На складе не хватает запчастей");
|
|
|
|
|
}
|
2023-04-01 22:41:11 +04:00
|
|
|
|
_logger.LogInformation("ItemForRepair. Id: {Id}", model.Id);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|