Update InventoryController.cs

This commit is contained in:
MarcEricMartel 2022-10-18 07:43:52 -07:00
parent 49381ca6f6
commit 47eb452541

View File

@ -59,10 +59,10 @@ public class InventoryController : Controller {
switch (order) {
case "Price":
ret = ret.OrderBy(x => x.Price);
ret = ret.OrderBy(x => x.Status == Product.States.Promotion? x.PromoPrice: x.Price);
break;
case "PriceDesc":
ret = ret.OrderByDescending(x => x.Price);
ret = ret.OrderByDescending(x => x.Status == Product.States.Promotion ? x.PromoPrice : x.Price);
break;
case "Title":
ret = ret.OrderBy(x => x.Title);
@ -79,20 +79,19 @@ public class InventoryController : Controller {
default: break;
}
List<Product> lst = ret.ToList();
List<Product> lst = new();
bool yup = false;
int add = 0;
if (lastId.HasValue)
foreach (Product prod in new List<Product>(lst)) {
lst.Remove(prod);
if (prod.Id == lastId)
break;
foreach (Product prod in new List<Product>(ret.ToList())) {
if (yup && add < AMOUNT) {
lst.Add(prod);
add++;
}
if (prod.Id == lastId)
yup = true;
}
//if (order is not null && order.Contains("Desc")) {
// if (!lastId.HasValue)
// lastId = _context.Products.Max(x => x.Id) + 1;
//} else
// if (!lastId.HasValue)
// lastId = _context.Products.Min(x => x.Id) - 1;
return lst.Take(AMOUNT);
}