2024-03-22 20:10:17 +04:00
|
|
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
|
using PrecastConcretePlantContracts.BindingModels;
|
|
|
|
|
using PrecastConcretePlantContracts.BusinessLogicsContracts;
|
|
|
|
|
using PrecastConcretePlantContracts.SearchModels;
|
|
|
|
|
using PrecastConcretePlantContracts.StoragesContracts;
|
|
|
|
|
using PrecastConcretePlantContracts.ViewModels;
|
|
|
|
|
using PrecastConcretePlantDataModels.Enums;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace PrecastConcretePlantBusinessLogic.BusinessLogics
|
|
|
|
|
{
|
|
|
|
|
public class OrderLogic : IOrderLogic
|
|
|
|
|
{
|
|
|
|
|
private readonly ILogger _logger;
|
2024-05-16 21:48:52 +04:00
|
|
|
|
|
2024-03-22 20:10:17 +04:00
|
|
|
|
private readonly IOrderStorage _orderStorage;
|
2024-05-16 21:48:52 +04:00
|
|
|
|
|
|
|
|
|
private readonly IReinforcedStorage _reinforcedStorage;
|
|
|
|
|
|
|
|
|
|
private readonly IShopLogic _shopLogic;
|
|
|
|
|
|
|
|
|
|
public OrderLogic(ILogger<OrderLogic> logger, IOrderStorage orderStorage, IReinforcedStorage reinforcedStorage, IShopLogic shopLogic)
|
2024-03-22 20:10:17 +04:00
|
|
|
|
{
|
|
|
|
|
_logger = logger;
|
|
|
|
|
_orderStorage = orderStorage;
|
2024-05-16 21:48:52 +04:00
|
|
|
|
_reinforcedStorage = reinforcedStorage;
|
|
|
|
|
_shopLogic = shopLogic;
|
2024-03-22 20:10:17 +04:00
|
|
|
|
}
|
2024-05-16 21:48:52 +04:00
|
|
|
|
|
2024-03-22 20:10:17 +04:00
|
|
|
|
public bool CreateOrder(OrderBindingModel model)
|
|
|
|
|
{
|
|
|
|
|
CheckModel(model);
|
|
|
|
|
if (model.Status != OrderStatus.Неизвестен)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogWarning("Invalid order status");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
model.Status = OrderStatus.Принят;
|
|
|
|
|
if (_orderStorage.Insert(model) == null)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogWarning("Insert operation failed");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2024-05-16 21:48:52 +04:00
|
|
|
|
|
|
|
|
|
public List<OrderViewModel>? ReadList(OrderSearchModel? model)
|
2024-03-22 20:10:17 +04:00
|
|
|
|
{
|
2024-05-16 21:48:52 +04:00
|
|
|
|
_logger.LogInformation("ReadList. OrderId: {Id}.", model?.Id);
|
|
|
|
|
var list = model == null ? _orderStorage.GetFullList() : _orderStorage.GetFilteredList(model);
|
|
|
|
|
if (list == null)
|
2024-03-22 20:10:17 +04:00
|
|
|
|
{
|
2024-05-16 21:48:52 +04:00
|
|
|
|
_logger.LogWarning("ReadList return null list");
|
|
|
|
|
return null;
|
2024-03-22 20:10:17 +04:00
|
|
|
|
}
|
2024-05-16 21:48:52 +04:00
|
|
|
|
_logger.LogInformation("ReadList. Count: {Count}", list.Count);
|
|
|
|
|
return list;
|
2024-03-22 20:10:17 +04:00
|
|
|
|
}
|
2024-05-16 21:48:52 +04:00
|
|
|
|
|
|
|
|
|
public bool TakeOrderInWork(OrderBindingModel model)
|
|
|
|
|
{
|
|
|
|
|
return ChangeStatus(model, OrderStatus.Выполняется);
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-22 20:10:17 +04:00
|
|
|
|
public bool FinishOrder(OrderBindingModel model)
|
|
|
|
|
{
|
2024-05-16 21:48:52 +04:00
|
|
|
|
return ChangeStatus(model, OrderStatus.Готов);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public bool DeliveryOrder(OrderBindingModel model)
|
|
|
|
|
{
|
|
|
|
|
return ChangeStatus(model, OrderStatus.Выдан);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void CheckModel(OrderBindingModel model, bool withParams = true)
|
|
|
|
|
{
|
|
|
|
|
if (model == null)
|
2024-03-22 20:10:17 +04:00
|
|
|
|
{
|
2024-05-16 21:48:52 +04:00
|
|
|
|
throw new ArgumentNullException(nameof(model));
|
2024-03-22 20:10:17 +04:00
|
|
|
|
}
|
2024-05-16 21:48:52 +04:00
|
|
|
|
if (!withParams)
|
2024-03-22 20:10:17 +04:00
|
|
|
|
{
|
2024-05-16 21:48:52 +04:00
|
|
|
|
return;
|
2024-03-22 20:10:17 +04:00
|
|
|
|
}
|
2024-05-16 21:48:52 +04:00
|
|
|
|
if (model.ReinforcedId <= 0)
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentNullException("Некорректный идентификатор изделия", nameof(model.ReinforcedId));
|
|
|
|
|
}
|
|
|
|
|
if (model.Count <= 0)
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentNullException("В заказе должно быть хотя бы одно изделие", nameof(model.Count));
|
|
|
|
|
}
|
|
|
|
|
if (model.Sum <= 0)
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentNullException("Стоимость заказа должна быть больше 0", nameof(model.Sum));
|
|
|
|
|
}
|
|
|
|
|
_logger.LogInformation("Order. Id: {Id}. Sum: {Sum}. ReinforcedId: {ReinforcedId}. ReinforcedCount: {Count}", model.Id, model.Sum,
|
|
|
|
|
model.ReinforcedId, model.Count);
|
2024-03-22 20:10:17 +04:00
|
|
|
|
}
|
2024-05-16 21:48:52 +04:00
|
|
|
|
|
|
|
|
|
private bool ChangeStatus(OrderBindingModel model, OrderStatus newStatus)
|
2024-03-22 20:10:17 +04:00
|
|
|
|
{
|
|
|
|
|
CheckModel(model, false);
|
|
|
|
|
var order = _orderStorage.GetElement(new OrderSearchModel { Id = model.Id });
|
2024-05-16 21:48:52 +04:00
|
|
|
|
if (order == null)
|
2024-03-22 20:10:17 +04:00
|
|
|
|
{
|
2024-05-16 21:48:52 +04:00
|
|
|
|
_logger.LogWarning("Change status operation failed. Order not found");
|
2024-03-22 20:10:17 +04:00
|
|
|
|
return false;
|
|
|
|
|
}
|
2024-05-16 21:48:52 +04:00
|
|
|
|
if (order.Status + 1 != newStatus)
|
2024-03-22 20:10:17 +04:00
|
|
|
|
{
|
2024-05-16 21:48:52 +04:00
|
|
|
|
_logger.LogWarning("Change status operation failed. Incorrect new status: {newStatus}. Current status: {currStatus}",
|
|
|
|
|
newStatus, order.Status);
|
|
|
|
|
return false;
|
2024-03-22 20:10:17 +04:00
|
|
|
|
}
|
2024-05-16 21:48:52 +04:00
|
|
|
|
//наверное тут вопрос 3 тип если изделий нема то и выдать нечего
|
|
|
|
|
if (newStatus == OrderStatus.Выдан)
|
2024-03-22 20:10:17 +04:00
|
|
|
|
{
|
2024-05-16 21:48:52 +04:00
|
|
|
|
var reinforced = _reinforcedStorage.GetElement(new ReinforcedSearchModel() { Id = order.ReinforcedId });
|
|
|
|
|
if (reinforced == null)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogWarning("Change status operation failed. Reinforced not found");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
if (!_shopLogic.DeliverReinforceds(reinforced, order.Count))
|
|
|
|
|
{
|
|
|
|
|
_logger.LogWarning("Change status operation failed. Reinforceds delivery operation failed");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2024-03-22 20:10:17 +04:00
|
|
|
|
}
|
2024-05-16 21:48:52 +04:00
|
|
|
|
model.Status = newStatus;
|
|
|
|
|
if (model.Status == OrderStatus.Готов)
|
2024-03-22 20:10:17 +04:00
|
|
|
|
{
|
2024-05-16 21:48:52 +04:00
|
|
|
|
model.DateImplement = DateTime.Now;
|
2024-03-22 20:10:17 +04:00
|
|
|
|
}
|
2024-05-16 21:48:52 +04:00
|
|
|
|
else
|
2024-03-22 20:10:17 +04:00
|
|
|
|
{
|
2024-05-16 21:48:52 +04:00
|
|
|
|
model.DateImplement = order.DateImplement;
|
2024-03-22 20:10:17 +04:00
|
|
|
|
}
|
2024-05-16 21:48:52 +04:00
|
|
|
|
if (_orderStorage.Update(model) == null)
|
2024-03-22 20:10:17 +04:00
|
|
|
|
{
|
2024-05-16 21:48:52 +04:00
|
|
|
|
_logger.LogWarning("Change status operation failed");
|
|
|
|
|
return false;
|
2024-03-22 20:10:17 +04:00
|
|
|
|
}
|
2024-05-16 21:48:52 +04:00
|
|
|
|
return true;
|
2024-03-22 20:10:17 +04:00
|
|
|
|
}
|
|
|
|
|
}
|
2024-05-16 21:48:52 +04:00
|
|
|
|
}
|