Исправления

This commit is contained in:
dasha 2023-02-14 12:31:20 +04:00
parent 2591be00fd
commit 12ca78bbe5
5 changed files with 4 additions and 23 deletions

View File

@ -1,5 +1,4 @@
using Microsoft.Extensions.Logging;
using SushiBar;
using SushiBarContracts.BindingModels;
using SushiBarContracts.BusinessLogicsContracts;

View File

@ -1,5 +1,4 @@
using Microsoft.Extensions.Logging;
using SushiBar;
using SushiBarContracts.BindingModels;
using SushiBarContracts.BusinessLogicsContracts;

View File

@ -1,5 +1,4 @@
using Microsoft.Extensions.Logging;
using SushiBar;
using SushiBarContracts.BindingModels;
using SushiBarContracts.BusinessLogicsContracts;
using SushiBarDataModels.Enums;
@ -74,12 +73,7 @@ namespace SushiBarView
{
var operationResult = _orderLogic.TakeOrderInWork(new OrderBindingModel
{
Id = id,
SushiId = Convert.ToInt32(dataGridView.SelectedRows[0].Cells["SushiId"].Value),
Status = Enum.Parse<OrderStatus>(dataGridView.SelectedRows[0].Cells["Status"].Value.ToString()),
Count = Convert.ToInt32(dataGridView.SelectedRows[0].Cells["Count"].Value),
Sum = double.Parse(dataGridView.SelectedRows[0].Cells["Sum"].Value.ToString()),
DateCreate = DateTime.Parse(dataGridView.SelectedRows[0].Cells["DateCreate"].Value.ToString()),
Id = id
});
if (!operationResult)
{
@ -104,12 +98,7 @@ namespace SushiBarView
{
var operationResult = _orderLogic.FinishOrder(new OrderBindingModel
{
Id = id,
SushiId = Convert.ToInt32(dataGridView.SelectedRows[0].Cells["SushiId"].Value),
Status = Enum.Parse<OrderStatus>(dataGridView.SelectedRows[0].Cells["Status"].Value.ToString()),
Count = Convert.ToInt32(dataGridView.SelectedRows[0].Cells["Count"].Value),
Sum = double.Parse(dataGridView.SelectedRows[0].Cells["Sum"].Value.ToString()),
DateCreate = DateTime.Parse(dataGridView.SelectedRows[0].Cells["DateCreate"].Value.ToString()),
Id = id
});
if (!operationResult)
{
@ -134,12 +123,7 @@ namespace SushiBarView
{
var operationResult = _orderLogic.DeliveryOrder(new OrderBindingModel
{
Id = id,
SushiId = Convert.ToInt32(dataGridView.SelectedRows[0].Cells["SushiId"].Value),
Status = Enum.Parse<OrderStatus>(dataGridView.SelectedRows[0].Cells["Status"].Value.ToString()),
Count = Convert.ToInt32(dataGridView.SelectedRows[0].Cells["Count"].Value),
Sum = double.Parse(dataGridView.SelectedRows[0].Cells["Sum"].Value.ToString()),
DateCreate = DateTime.Parse(dataGridView.SelectedRows[0].Cells["DateCreate"].Value.ToString()),
Id = id
});
if (!operationResult)
{

View File

@ -1,5 +1,4 @@
using Microsoft.Extensions.Logging;
using SushiBar;
using SushiBarContracts.BindingModels;
using SushiBarContracts.BusinessLogicsContracts;
using SushiBarContracts.SearchModels;

View File

@ -91,7 +91,7 @@ namespace SushiBarBusinessLogic.BusinessLogics
{
model.DateImplement = viewModel.DateImplement;
}
CheckModel(model);
CheckModel(model, false);
if (_orderStorage.Update(model) == null)
{
model.Status--;