2023-05-19 18:26:38 +04:00
|
|
|
|
using ComputerShopContracts.BindingModels;
|
|
|
|
|
using ComputerShopContracts.BusinessLogicContracts;
|
|
|
|
|
using ComputerShopContracts.SearchModels;
|
2023-12-02 06:42:59 +04:00
|
|
|
|
using ComputerShopContracts.StorageContracts;
|
2023-05-19 18:26:38 +04:00
|
|
|
|
using ComputerShopContracts.ViewModels;
|
|
|
|
|
using Microsoft.AspNetCore.Http;
|
|
|
|
|
using Microsoft.AspNetCore.Mvc;
|
2023-12-02 01:39:39 +04:00
|
|
|
|
using System.Reflection;
|
2023-05-19 18:26:38 +04:00
|
|
|
|
|
|
|
|
|
namespace ComputerShopRestApi.Controllers
|
|
|
|
|
{
|
2023-05-20 01:31:46 +04:00
|
|
|
|
[Route("api/[controller]/[action]")]
|
|
|
|
|
[ApiController]
|
2023-05-19 18:26:38 +04:00
|
|
|
|
public class OrderController : Controller
|
|
|
|
|
{
|
|
|
|
|
private readonly ILogger _logger;
|
2023-05-20 01:31:46 +04:00
|
|
|
|
private readonly IOrderLogic _order;
|
2023-12-02 06:42:59 +04:00
|
|
|
|
private readonly IOrderStorage _orderStorage;
|
2023-05-19 18:26:38 +04:00
|
|
|
|
|
2023-05-20 01:31:46 +04:00
|
|
|
|
public OrderController(ILogger<MainController> logger, IOrderLogic order, ISupplyLogic supply)
|
2023-05-19 18:26:38 +04:00
|
|
|
|
{
|
|
|
|
|
_logger = logger;
|
2023-05-20 01:31:46 +04:00
|
|
|
|
_order = order;
|
2023-05-19 18:26:38 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[HttpGet]
|
2023-05-20 01:31:46 +04:00
|
|
|
|
public List<OrderViewModel>? GetOrderList(int clientId)
|
2023-05-19 18:26:38 +04:00
|
|
|
|
{
|
2023-05-20 01:31:46 +04:00
|
|
|
|
|
2023-05-19 18:26:38 +04:00
|
|
|
|
try
|
|
|
|
|
{
|
2023-05-20 01:31:46 +04:00
|
|
|
|
return _order.ReadList(new OrderSearchModel { ClientId = clientId });
|
2023-05-19 18:26:38 +04:00
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
2023-05-20 01:31:46 +04:00
|
|
|
|
_logger.LogError(ex, "Ошибка получения списка заказов");
|
2023-05-19 18:26:38 +04:00
|
|
|
|
throw;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[HttpGet]
|
|
|
|
|
public List<OrderViewModel>? GetOrders(int clientId)
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
2023-05-20 01:31:46 +04:00
|
|
|
|
return _order.ReadList(new OrderSearchModel {});
|
2023-05-19 18:26:38 +04:00
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogError(ex, "Ошибка получения списка заказов клиента id={Id}", clientId);
|
|
|
|
|
throw;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[HttpPost]
|
|
|
|
|
public void CreateOrder(OrderBindingModel model)
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
2023-05-20 01:31:46 +04:00
|
|
|
|
_order.CreateOrder(model);
|
2023-05-19 18:26:38 +04:00
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogError(ex, "Ошибка создания заказа");
|
|
|
|
|
throw;
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-05-20 01:31:46 +04:00
|
|
|
|
[HttpDelete]
|
|
|
|
|
public void DeleteOrder(OrderBindingModel model)
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
_order.Delete(model);
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogError(ex, "Ошибка при удалении заказа");
|
|
|
|
|
throw;
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-12-02 01:39:39 +04:00
|
|
|
|
|
2023-12-02 06:42:59 +04:00
|
|
|
|
[HttpPost]
|
|
|
|
|
public void FinishOrder(int id)
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
var order = _orderStorage.GetElement(new() { Id = id });
|
|
|
|
|
OrderBindingModel model = new OrderBindingModel()
|
|
|
|
|
{
|
|
|
|
|
Id = id,
|
|
|
|
|
ClientId = order.ClientId,
|
|
|
|
|
DateImplement = order.DateImplement,
|
|
|
|
|
Status = order.Status
|
|
|
|
|
};
|
|
|
|
|
_order.FinishOrder(model);
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogError(ex, "Ошибка изменения закупки");
|
|
|
|
|
throw;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
[HttpPost]
|
|
|
|
|
public void DeliveryOrder(int id)
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
var order = _orderStorage.GetElement(new() { Id = id });
|
|
|
|
|
OrderBindingModel model = new OrderBindingModel()
|
|
|
|
|
{
|
|
|
|
|
Id = id,
|
|
|
|
|
ClientId = order.ClientId,
|
|
|
|
|
DateImplement = order.DateImplement,
|
|
|
|
|
Status = order.Status
|
|
|
|
|
};
|
|
|
|
|
_order.DeliveryOrder(model);
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogError(ex, "Ошибка изменения закупки");
|
|
|
|
|
throw;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
[HttpPost]
|
|
|
|
|
public void TakeOrderInWork(int id)
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
var order = _orderStorage.GetElement(new() { Id = id });
|
|
|
|
|
OrderBindingModel model = new OrderBindingModel()
|
|
|
|
|
{
|
|
|
|
|
Id = id,
|
|
|
|
|
ClientId = order.ClientId,
|
|
|
|
|
DateImplement = order.DateImplement,
|
|
|
|
|
Status = order.Status
|
|
|
|
|
};
|
|
|
|
|
_order.TakeOrderInWork(model);
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogError(ex, "Ошибка изменения закупки");
|
|
|
|
|
throw;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-12-02 01:39:39 +04:00
|
|
|
|
[HttpPost]
|
|
|
|
|
public void AddAssembly(Tuple<OrderSearchModel, AssemblySearchModel, int> model)
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
_order.AddAssembly(model.Item1, model.Item2, model.Item3);
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogError(ex, "Ошибка добавления компонента в сборку.");
|
|
|
|
|
throw;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-05-19 18:26:38 +04:00
|
|
|
|
}
|