2024-06-26 08:04:07 +04:00
|
|
|
|
using Contracts.BindingModels;
|
|
|
|
|
using Contracts.ViewModels;
|
|
|
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
|
using Microsoft.AspNetCore.Mvc.RazorPages;
|
|
|
|
|
|
|
|
|
|
namespace WebApp.Pages
|
|
|
|
|
{
|
|
|
|
|
public class ProductPageModel : PageModel
|
|
|
|
|
{
|
|
|
|
|
public PurchaseViewModel purchaseModel { get; set; }
|
|
|
|
|
public ProductViewModel productModel { get; set; }
|
|
|
|
|
public MediaFileViewModel mediaFileModel { get; set; }
|
|
|
|
|
public Dictionary<Guid, List<MediaFileViewModel>> MediaByProductsModel { get; set; }
|
|
|
|
|
public int Amount { get; set; } // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|
|
|
|
public void OnGet(Guid id)
|
|
|
|
|
{
|
|
|
|
|
productModel = APIClient.GetRequest<ProductViewModel>($"Product/GetProduct?id={id}");
|
|
|
|
|
}
|
2024-06-28 00:43:29 +04:00
|
|
|
|
|
2024-06-26 08:04:07 +04:00
|
|
|
|
public byte[] GetMediaByProduct(ProductViewModel productModel)
|
|
|
|
|
{
|
|
|
|
|
MediaByProductsModel = APIClient.GetRequest<Dictionary<Guid, List<MediaFileViewModel>>>($"MediaFile/GetByProducts");
|
|
|
|
|
MediaByProductsModel.TryGetValue(productModel.Id, out List<MediaFileViewModel> models);
|
|
|
|
|
return models[0].Image;
|
|
|
|
|
}
|
2024-06-28 00:43:29 +04:00
|
|
|
|
|
|
|
|
|
public List<MediaFileViewModel> GetAllMediaFilesByProduct(ProductViewModel productModel)
|
|
|
|
|
{
|
|
|
|
|
MediaByProductsModel = APIClient.GetRequest<Dictionary<Guid, List<MediaFileViewModel>>>($"MediaFile/GetByProducts");
|
|
|
|
|
MediaByProductsModel.TryGetValue(productModel.Id, out List<MediaFileViewModel> models);
|
|
|
|
|
return models;
|
|
|
|
|
}
|
|
|
|
|
|
2024-06-26 08:04:07 +04:00
|
|
|
|
public IActionResult OnPostAsync(Guid id, int count)
|
|
|
|
|
{
|
|
|
|
|
Amount = count;
|
|
|
|
|
if (purchaseModel == null)
|
|
|
|
|
{
|
|
|
|
|
var model = new PurchaseBindingModel()
|
|
|
|
|
{
|
|
|
|
|
Cost = 0,
|
|
|
|
|
DatePurchase = DateTime.Now,
|
|
|
|
|
Status = 0,
|
|
|
|
|
UserId = new Guid(this.GetUserId())
|
|
|
|
|
};
|
|
|
|
|
//purchaseModel = APIClient.PostRequest<PurchaseBindingModel>($"Purchase/Create", model);
|
|
|
|
|
}
|
|
|
|
|
APIClient.GetRequest<PurchaseViewModel>($"Purchase/AddProducts?purchaseId={purchaseModel.Id}?productId={id}?count={count}");
|
|
|
|
|
return RedirectToPage("Cart");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|