2024-06-22 15:10:46 +04:00
|
|
|
|
using Contracts.BindingModels;
|
|
|
|
|
using Contracts.ViewModels;
|
|
|
|
|
using DataModels.Models;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
|
using System.Diagnostics;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using static System.Runtime.InteropServices.JavaScript.JSType;
|
|
|
|
|
|
|
|
|
|
namespace DatabaseImplement.Models
|
|
|
|
|
{
|
|
|
|
|
public class Supplier : ISupplier
|
|
|
|
|
{
|
|
|
|
|
public Guid Id { get; set; }
|
|
|
|
|
[Required]
|
|
|
|
|
public string Name { get; set; } = string.Empty;
|
|
|
|
|
[Required]
|
|
|
|
|
public int Deals { get; set; }
|
|
|
|
|
private Dictionary<Guid, (IProduct, int)>? _availibleProducts = null;
|
|
|
|
|
[NotMapped]
|
|
|
|
|
public Dictionary<Guid, (IProduct, int)> AvailibleProducts
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
if (_availibleProducts == null)
|
|
|
|
|
{
|
|
|
|
|
_availibleProducts = Products
|
|
|
|
|
.ToDictionary(recPC => recPC.Id, recPC =>
|
|
|
|
|
(recPC.Product as IProduct, recPC.Count));
|
|
|
|
|
}
|
|
|
|
|
return _availibleProducts;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
[ForeignKey("SupplierId")]
|
|
|
|
|
public virtual List<SupplierProduct> Products { get; set; } = new();
|
|
|
|
|
|
|
|
|
|
public static Supplier Create(Database context, SupplierBindingModel model)
|
|
|
|
|
{
|
|
|
|
|
return new Supplier()
|
|
|
|
|
{
|
|
|
|
|
Id = model.Id,
|
|
|
|
|
Name = model.Name,
|
2024-06-23 18:55:46 +04:00
|
|
|
|
Deals = model.Deals,
|
2024-06-22 15:10:46 +04:00
|
|
|
|
Products = model.AvailibleProducts.Select(x => new
|
|
|
|
|
SupplierProduct
|
|
|
|
|
{
|
|
|
|
|
Product = context.Products.First(y => y.Id == x.Key),
|
|
|
|
|
Count = x.Value.Item2
|
|
|
|
|
}).ToList()
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
public void Update(Database context, SupplierBindingModel model)
|
|
|
|
|
{
|
|
|
|
|
Name = model.Name;
|
2024-06-23 19:31:00 +04:00
|
|
|
|
Deals = model.Deals;
|
2024-06-23 18:55:46 +04:00
|
|
|
|
Debug.WriteLine(model.AvailibleProducts.Keys);
|
2024-06-22 15:10:46 +04:00
|
|
|
|
Products = model.AvailibleProducts.Select(x => new
|
|
|
|
|
SupplierProduct
|
|
|
|
|
{
|
2024-06-23 18:55:46 +04:00
|
|
|
|
Product = context.Products.First(y => y.Id == x.Value.Item1.Id),
|
2024-06-22 15:10:46 +04:00
|
|
|
|
Count = x.Value.Item2
|
|
|
|
|
}).ToList();
|
|
|
|
|
}
|
|
|
|
|
public SupplierViewModel GetViewModel
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
var context = new Database();
|
|
|
|
|
return new()
|
|
|
|
|
{
|
|
|
|
|
Id = Id,
|
|
|
|
|
Name = Name,
|
2024-06-23 17:04:26 +04:00
|
|
|
|
AvailibleProducts = AvailibleProducts,
|
|
|
|
|
Deals = Deals,
|
2024-06-22 15:10:46 +04:00
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
public void UpdateProducts(Database context, SupplierBindingModel model)
|
|
|
|
|
{
|
2024-06-23 18:55:46 +04:00
|
|
|
|
var supplierProducts = context.SupplierProducts.Where(rec => rec.SupplierId == model.Id).ToList();
|
|
|
|
|
if (supplierProducts != null && supplierProducts.Count > model.AvailibleProducts.Count)
|
|
|
|
|
{
|
|
|
|
|
var newList = new List<SupplierProduct>();
|
|
|
|
|
var trueCount = model.AvailibleProducts.Count;
|
2024-06-23 19:31:00 +04:00
|
|
|
|
for (int i = 0; i < trueCount; i++)
|
2024-06-23 18:55:46 +04:00
|
|
|
|
{
|
|
|
|
|
newList.Add(supplierProducts[i]);
|
|
|
|
|
}
|
|
|
|
|
supplierProducts = newList;
|
|
|
|
|
}
|
2024-06-22 15:10:46 +04:00
|
|
|
|
if (supplierProducts != null && supplierProducts.Count > 0)
|
|
|
|
|
{ // удалили те, которых нет в модели
|
2024-06-23 18:55:46 +04:00
|
|
|
|
foreach (var item in supplierProducts)
|
|
|
|
|
{
|
|
|
|
|
bool flag = false;
|
2024-06-23 19:31:00 +04:00
|
|
|
|
foreach (var product in model.AvailibleProducts)
|
2024-06-23 18:55:46 +04:00
|
|
|
|
{
|
|
|
|
|
if (product.Value.Item1.Id == item.ProductId)
|
|
|
|
|
{
|
|
|
|
|
flag = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (!flag)
|
|
|
|
|
{
|
|
|
|
|
context.SupplierProducts.Remove(item);
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-06-22 15:10:46 +04:00
|
|
|
|
context.SaveChanges();
|
2024-06-23 18:55:46 +04:00
|
|
|
|
//обновили количество у существующих записей, затем удалили
|
2024-06-22 15:10:46 +04:00
|
|
|
|
foreach (var updateProduct in supplierProducts)
|
|
|
|
|
{
|
2024-06-23 18:55:46 +04:00
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
updateProduct.Count = model.AvailibleProducts[updateProduct.Id].Item2;
|
|
|
|
|
model.AvailibleProducts.Remove(updateProduct.Id);
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ex) { }
|
2024-06-22 15:10:46 +04:00
|
|
|
|
}
|
|
|
|
|
context.SaveChanges();
|
|
|
|
|
}
|
|
|
|
|
var supplier = context.Suppliers.First(x => x.Id == Id);
|
2024-06-23 18:55:46 +04:00
|
|
|
|
// тут всё дюпается, тут должны добавляться те которые остались в модели
|
2024-06-22 15:10:46 +04:00
|
|
|
|
foreach (var pc in model.AvailibleProducts)
|
|
|
|
|
{
|
|
|
|
|
context.SupplierProducts.Add(new SupplierProduct
|
|
|
|
|
{
|
|
|
|
|
Supplier = supplier,
|
2024-06-23 18:55:46 +04:00
|
|
|
|
Product = context.Products.First(x => x.Id == pc.Value.Item1.Id),
|
2024-06-22 15:10:46 +04:00
|
|
|
|
Count = pc.Value.Item2
|
|
|
|
|
});
|
|
|
|
|
context.SaveChanges();
|
|
|
|
|
}
|
|
|
|
|
_availibleProducts = null;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|