2023-01-30 11:43:43 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
|
using IceCreamShopContracts.BindingModels;
|
|
|
|
|
using IceCreamShopContracts.BusinessLogicsContracts;
|
|
|
|
|
using IceCreamShopContracts.SearchModels;
|
|
|
|
|
using IceCreamShopContracts.StoragesContracts;
|
|
|
|
|
using IceCreamShopContracts.ViewModels;
|
|
|
|
|
using AbstractIceCreamShopDataModels.Enums;
|
2023-03-13 13:25:55 +04:00
|
|
|
|
using AbstractIceCreamShopDataModels.Models;
|
2023-01-30 11:43:43 +04:00
|
|
|
|
|
|
|
|
|
namespace IceCreamBusinessLogic.BusinessLogics
|
|
|
|
|
{
|
2023-01-30 15:02:38 +04:00
|
|
|
|
public class OrderLogic : IOrderLogic
|
2023-01-30 11:43:43 +04:00
|
|
|
|
{
|
2023-01-30 15:02:38 +04:00
|
|
|
|
private readonly ILogger _logger;
|
2023-01-30 11:43:43 +04:00
|
|
|
|
private readonly IOrderStorage _orderStorage;
|
2023-03-13 13:25:55 +04:00
|
|
|
|
private readonly IShopStorage _shopStorage;
|
2023-03-12 21:19:02 +04:00
|
|
|
|
private readonly IShopLogic _shopLogic;
|
|
|
|
|
private readonly IIceCreamStorage _iceCreamStorage;
|
2023-01-30 11:43:43 +04:00
|
|
|
|
|
2023-03-13 13:25:55 +04:00
|
|
|
|
public OrderLogic(IOrderStorage orderStorage, IShopStorage shopStorage, IShopLogic shopLogic, IIceCreamStorage iceCreamStorage, ILogger<OrderLogic> logger)
|
2023-01-30 11:43:43 +04:00
|
|
|
|
{
|
|
|
|
|
_orderStorage = orderStorage;
|
2023-03-13 13:25:55 +04:00
|
|
|
|
_shopStorage = shopStorage;
|
2023-01-30 15:02:38 +04:00
|
|
|
|
_logger = logger;
|
2023-03-12 21:19:02 +04:00
|
|
|
|
_shopLogic = shopLogic;
|
|
|
|
|
_iceCreamStorage = iceCreamStorage;
|
2023-01-30 11:43:43 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public bool CreateOrder(OrderBindingModel model)
|
|
|
|
|
{
|
2023-01-30 15:02:38 +04:00
|
|
|
|
CheckModel(model);
|
|
|
|
|
if(model.Status != OrderStatus.Неизвестен)
|
2023-01-30 11:43:43 +04:00
|
|
|
|
{
|
2023-01-30 15:02:38 +04:00
|
|
|
|
_logger.LogWarning("Insert operation failed. Order status incorrect.");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
model.Status = OrderStatus.Принят;
|
|
|
|
|
if (_orderStorage.Insert(model) == null)
|
|
|
|
|
{
|
|
|
|
|
model.Status = OrderStatus.Неизвестен;
|
|
|
|
|
_logger.LogWarning("Insert operation failed");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
return true;
|
2023-01-30 11:43:43 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public bool DeliveryOrder(OrderBindingModel model)
|
|
|
|
|
{
|
2023-01-30 15:29:32 +04:00
|
|
|
|
return SetNewStatus(model, OrderStatus.Готов);
|
2023-01-30 11:43:43 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public bool FinishOrder(OrderBindingModel model)
|
|
|
|
|
{
|
2023-01-30 15:29:32 +04:00
|
|
|
|
return SetNewStatus(model, OrderStatus.Выдан);
|
2023-01-30 11:43:43 +04:00
|
|
|
|
}
|
|
|
|
|
|
2023-01-30 15:29:32 +04:00
|
|
|
|
public bool TakeOrderInWork(OrderBindingModel model)
|
2023-01-30 11:43:43 +04:00
|
|
|
|
{
|
2023-01-30 15:29:32 +04:00
|
|
|
|
return SetNewStatus(model, OrderStatus.Выполняется);
|
2023-01-30 11:43:43 +04:00
|
|
|
|
}
|
|
|
|
|
|
2023-01-30 15:29:32 +04:00
|
|
|
|
public List<OrderViewModel>? ReadList(OrderSearchModel? model)
|
2023-01-30 11:43:43 +04:00
|
|
|
|
{
|
2023-01-31 10:40:59 +04:00
|
|
|
|
_logger.LogInformation("ReadList. OrderID:{Id}", model?.Id);
|
2023-01-30 15:29:32 +04:00
|
|
|
|
var list = model == null ? _orderStorage.GetFullList() : _orderStorage.GetFilteredList(model);
|
|
|
|
|
if (list == null)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogWarning("ReadList return null list");
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
_logger.LogInformation("ReadList. Count:{Count}", list.Count);
|
|
|
|
|
return list;
|
2023-01-30 11:43:43 +04:00
|
|
|
|
}
|
2023-01-30 15:02:38 +04:00
|
|
|
|
|
2023-01-30 15:29:32 +04:00
|
|
|
|
private void CheckModel(OrderBindingModel model)
|
2023-01-30 15:02:38 +04:00
|
|
|
|
{
|
|
|
|
|
if (model == null)
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentNullException(nameof(model));
|
|
|
|
|
}
|
2023-01-30 15:29:32 +04:00
|
|
|
|
if (model.Id < 0)
|
2023-01-30 15:02:38 +04:00
|
|
|
|
{
|
2023-01-30 15:29:32 +04:00
|
|
|
|
throw new ArgumentNullException("Некорректный идентификатор заказа", nameof(model.Id));
|
2023-01-30 15:02:38 +04:00
|
|
|
|
}
|
|
|
|
|
if (model.IceCreamId < 0)
|
|
|
|
|
{
|
2023-01-31 10:40:59 +04:00
|
|
|
|
throw new ArgumentNullException("Некорректный идентификатор мороженого", nameof(model.IceCreamId));
|
2023-01-30 15:02:38 +04:00
|
|
|
|
}
|
|
|
|
|
if (model.Count <= 0)
|
|
|
|
|
{
|
2023-01-31 10:40:59 +04:00
|
|
|
|
throw new ArgumentNullException("Количество мороженого в заказе должно быть больше 0", nameof(model.Count));
|
2023-01-30 15:02:38 +04:00
|
|
|
|
}
|
|
|
|
|
if (model.Sum <= 0)
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentNullException("Сумма заказа должна быть больше 0", nameof(model.Sum));
|
|
|
|
|
}
|
|
|
|
|
_logger.LogInformation("Order. OrderID:{Id}.Sum:{ Sum}. DocumentId: { DocumentId}", model.Id, model.Sum, model.IceCreamId);
|
|
|
|
|
}
|
2023-01-30 15:29:32 +04:00
|
|
|
|
|
2023-02-13 14:57:26 +04:00
|
|
|
|
public bool SetNewStatus(OrderBindingModel orderModel, OrderStatus newStatus)
|
2023-01-30 15:29:32 +04:00
|
|
|
|
{
|
2023-02-13 14:57:26 +04:00
|
|
|
|
var viewModel = _orderStorage.GetElement(new OrderSearchModel
|
|
|
|
|
{
|
|
|
|
|
Id = orderModel.Id
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
if (viewModel == null)
|
|
|
|
|
{
|
2023-03-12 21:19:02 +04:00
|
|
|
|
throw new ArgumentNullException(nameof(orderModel));
|
2023-02-13 14:57:26 +04:00
|
|
|
|
}
|
|
|
|
|
|
2023-03-13 13:25:55 +04:00
|
|
|
|
OrderBindingModel model = new OrderBindingModel
|
|
|
|
|
{
|
|
|
|
|
Id = viewModel.Id,
|
|
|
|
|
IceCreamId = viewModel.IceCreamId,
|
|
|
|
|
Status = viewModel.Status,
|
|
|
|
|
DateCreate = viewModel.DateCreate,
|
|
|
|
|
DateImplement = viewModel.DateImplement,
|
|
|
|
|
Count = viewModel.Count,
|
|
|
|
|
Sum = viewModel.Sum
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
CheckModel(model);
|
|
|
|
|
if (model.Status + 1 != newStatus)
|
2023-01-30 15:29:32 +04:00
|
|
|
|
{
|
|
|
|
|
_logger.LogWarning("Status update to " + newStatus.ToString() + " operation failed. Order status incorrect.");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2023-03-12 21:19:02 +04:00
|
|
|
|
|
2023-03-13 13:25:55 +04:00
|
|
|
|
if (newStatus == OrderStatus.Готов)
|
2023-03-12 21:19:02 +04:00
|
|
|
|
{
|
2023-03-13 13:25:55 +04:00
|
|
|
|
var icecream = _iceCreamStorage.GetElement(new IceCreamSearchModel() { Id = model.IceCreamId });
|
|
|
|
|
if (icecream == null)
|
2023-03-12 21:19:02 +04:00
|
|
|
|
{
|
2023-03-13 13:25:55 +04:00
|
|
|
|
_logger.LogWarning("Status update to " + newStatus.ToString() + " operation failed. Document not found.");
|
|
|
|
|
return false;
|
2023-03-12 21:19:02 +04:00
|
|
|
|
}
|
2023-03-28 10:02:32 +04:00
|
|
|
|
if (CheckSupply(icecream, model.Count) == false)
|
2023-03-12 21:19:02 +04:00
|
|
|
|
{
|
2023-03-13 13:25:55 +04:00
|
|
|
|
_logger.LogWarning("Status update to " + newStatus.ToString() + " operation failed. Shop supply error.");
|
|
|
|
|
return false;
|
2023-03-12 21:19:02 +04:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-13 13:25:55 +04:00
|
|
|
|
model.Status = newStatus;
|
|
|
|
|
if (model.Status == OrderStatus.Выдан) model.DateImplement = DateTime.Now;
|
|
|
|
|
if (_orderStorage.Update(model) == null)
|
2023-01-30 15:29:32 +04:00
|
|
|
|
{
|
2023-03-13 13:25:55 +04:00
|
|
|
|
model.Status--;
|
2023-01-30 15:29:32 +04:00
|
|
|
|
_logger.LogWarning("Update operation failed");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2023-03-28 10:02:32 +04:00
|
|
|
|
|
|
|
|
|
public bool CheckSupply(IIceCreamModel iceCream, int count)
|
|
|
|
|
{
|
|
|
|
|
if (count <= 0)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogWarning("Check then supply operation error. IceCream count < 0.");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int freeSpace = 0;
|
|
|
|
|
foreach (var shop in _shopStorage.GetFullList())
|
|
|
|
|
{
|
|
|
|
|
freeSpace += shop.IceCreamMaxCount;
|
2023-04-09 19:24:19 +04:00
|
|
|
|
foreach (var icecream in shop.ShopIceCreams)
|
2023-03-28 10:02:32 +04:00
|
|
|
|
{
|
2023-04-09 19:24:19 +04:00
|
|
|
|
freeSpace -= icecream.Value.Item2;
|
2023-03-28 10:02:32 +04:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (freeSpace - count < 0)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogWarning("Check then supply operation error. There's no place for new IceCream in shops.");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
foreach (var shop in _shopStorage.GetFullList())
|
|
|
|
|
{
|
|
|
|
|
freeSpace = shop.IceCreamMaxCount;
|
2023-04-09 19:24:19 +04:00
|
|
|
|
foreach (var icecream in shop.ShopIceCreams)
|
2023-03-28 10:02:32 +04:00
|
|
|
|
{
|
2023-04-09 19:24:19 +04:00
|
|
|
|
freeSpace -= icecream.Value.Item2;
|
2023-03-28 10:02:32 +04:00
|
|
|
|
}
|
|
|
|
|
if (freeSpace == 0)
|
|
|
|
|
{
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
if (freeSpace - count >= 0)
|
|
|
|
|
{
|
|
|
|
|
if (_shopLogic.SupplyIceCreams(new() { Id = shop.Id }, iceCream, count)) count = 0;
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
_logger.LogWarning("Supply error");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (freeSpace - count < 0)
|
|
|
|
|
{
|
|
|
|
|
if (_shopLogic.SupplyIceCreams(new() { Id = shop.Id }, iceCream, freeSpace)) count -= freeSpace;
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
_logger.LogWarning("Supply error");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (count <= 0)
|
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2023-01-30 11:43:43 +04:00
|
|
|
|
}
|
|
|
|
|
}
|