fixes
This commit is contained in:
parent
d7dffd1485
commit
992e4a6c40
|
|
@ -50,14 +50,16 @@
|
||||||
};
|
};
|
||||||
addAntiForgeryToken(postData);
|
addAntiForgeryToken(postData);
|
||||||
|
|
||||||
console.log("postData: " + JSON.stringify(postData));
|
var jsonData = JSON.stringify(postData);
|
||||||
|
console.log("postData: " + jsonData);
|
||||||
|
debugger;
|
||||||
|
|
||||||
// Perform AJAX call
|
// Perform AJAX call
|
||||||
$.ajax({
|
$.ajax({
|
||||||
url: "/Admin/AuctionPluginAdmin/AssignProductToAuction", // Update to match your endpoint
|
url: "/Admin/AuctionPluginAdmin/AssignProductToAuction", // Update to match your endpoint
|
||||||
type: "POST",
|
type: "POST",
|
||||||
contentType: "application/json",
|
contentType: "application/json",
|
||||||
data: JSON.stringify(postData),
|
data: jsonData,
|
||||||
traditional: true,
|
traditional: true,
|
||||||
success: function (response) {
|
success: function (response) {
|
||||||
alert("Product successfully assigned to the auction!");
|
alert("Product successfully assigned to the auction!");
|
||||||
|
|
|
||||||
|
|
@ -30,6 +30,7 @@ namespace Nop.Plugin.Misc.AuctionPlugin.Hubs
|
||||||
{
|
{
|
||||||
switch (message.MessageType)
|
switch (message.MessageType)
|
||||||
{
|
{
|
||||||
|
//nameof(IAuctionHubClient.SendPrice)
|
||||||
case "BidRequestMessage":
|
case "BidRequestMessage":
|
||||||
await HandleBidRequest(message.Data);
|
await HandleBidRequest(message.Data);
|
||||||
break;
|
break;
|
||||||
|
|
@ -52,6 +53,7 @@ namespace Nop.Plugin.Misc.AuctionPlugin.Hubs
|
||||||
{
|
{
|
||||||
await _logger.InformationAsync("Deserialization returned null. Message data might not match the expected structure.");
|
await _logger.InformationAsync("Deserialization returned null. Message data might not match the expected structure.");
|
||||||
}
|
}
|
||||||
|
|
||||||
bidRequestMessage = a;
|
bidRequestMessage = a;
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
|
|
@ -60,66 +62,72 @@ namespace Nop.Plugin.Misc.AuctionPlugin.Hubs
|
||||||
}
|
}
|
||||||
//AuctionBidRequest bidRequestMessage = new AuctionBidRequest();
|
//AuctionBidRequest bidRequestMessage = new AuctionBidRequest();
|
||||||
|
|
||||||
if (bidRequestMessage != null)
|
try
|
||||||
{
|
{
|
||||||
await _logger.InformationAsync($"Bid received: - Auction:{bidRequestMessage.AuctionId} Product: {bidRequestMessage.ProductId} - Bid: {bidRequestMessage.BidPrice} - Customer: {bidRequestMessage.CustomerId}");
|
|
||||||
//get product
|
|
||||||
|
|
||||||
var product = await _productService.GetProductByIdAsync(Convert.ToInt32(bidRequestMessage.ProductId));
|
if (bidRequestMessage != null)
|
||||||
|
|
||||||
if (product != null)
|
|
||||||
{
|
{
|
||||||
//validate the bidprice amount
|
await _logger.InformationAsync($"Bid received: - Auction:{bidRequestMessage.AuctionId} Product: {bidRequestMessage.ProductId} - Bid: {bidRequestMessage.BidPrice} - Customer: {bidRequestMessage.CustomerId}");
|
||||||
|
//get product
|
||||||
|
|
||||||
|
var product = await _productService.GetProductByIdAsync(Convert.ToInt32(bidRequestMessage.ProductId));
|
||||||
|
|
||||||
//set new price
|
if (product != null)
|
||||||
product.Price = Convert.ToDecimal(bidRequestMessage.BidPrice);
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
List<ProductToAuctionMapping> mapping = await _auctionService.GetProductToAuctionByAuctionIdAndProductIdAsync(Convert.ToInt32(bidRequestMessage.AuctionId), Convert.ToInt32(bidRequestMessage.ProductId));
|
|
||||||
|
|
||||||
|
|
||||||
AuctionBid auctionBid = new AuctionBid();
|
|
||||||
|
|
||||||
auctionBid.ProductId = Convert.ToInt32(bidRequestMessage.ProductId);
|
|
||||||
auctionBid.CustomerId = Convert.ToInt32(bidRequestMessage.CustomerId);
|
|
||||||
auctionBid.BidPrice = Convert.ToDecimal(bidRequestMessage.BidPrice);
|
|
||||||
auctionBid.ProductAuctionMappingId = mapping.FirstOrDefault().Id;
|
|
||||||
|
|
||||||
//save bid
|
|
||||||
try
|
|
||||||
{
|
|
||||||
var result = _auctionService.InsertBidAsync(auctionBid);
|
|
||||||
|
|
||||||
}
|
|
||||||
catch(Exception ex)
|
|
||||||
{
|
|
||||||
_logger.Error($"MessageHandling error: {ex.ToString()}");
|
|
||||||
}
|
|
||||||
|
|
||||||
//update product
|
|
||||||
|
|
||||||
await _productService.UpdateProductAsync(product);
|
|
||||||
|
|
||||||
// Optionally broadcast to all clients
|
|
||||||
var bid = new MessageWrapper
|
|
||||||
{
|
|
||||||
MessageType = "bidNotification",
|
|
||||||
Data = new BidNotificationMessage
|
|
||||||
{
|
{
|
||||||
ProductName = bidRequestMessage.ProductId,
|
//validate the bidprice amount
|
||||||
BidPrice = bidRequestMessage.BidPrice,
|
|
||||||
NextStepAmount = "50000"
|
|
||||||
}
|
|
||||||
};
|
|
||||||
var jsonMessage = JsonConvert.SerializeObject(bid, Formatting.Indented,
|
|
||||||
new JsonSerializerSettings { ContractResolver = new CamelCasePropertyNamesContractResolver() }
|
|
||||||
);
|
|
||||||
|
|
||||||
await _hubContext.Clients.All.SendAsync("send", jsonMessage);
|
|
||||||
|
//set new price
|
||||||
|
product.Price = Convert.ToDecimal(bidRequestMessage.BidPrice);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
List<ProductToAuctionMapping> mapping = await _auctionService.GetProductToAuctionByAuctionIdAndProductIdAsync(Convert.ToInt32(bidRequestMessage.AuctionId), Convert.ToInt32(bidRequestMessage.ProductId));
|
||||||
|
|
||||||
|
|
||||||
|
AuctionBid auctionBid = new AuctionBid();
|
||||||
|
|
||||||
|
auctionBid.ProductId = Convert.ToInt32(bidRequestMessage.ProductId);
|
||||||
|
auctionBid.CustomerId = Convert.ToInt32(bidRequestMessage.CustomerId);
|
||||||
|
auctionBid.BidPrice = Convert.ToDecimal(bidRequestMessage.BidPrice);
|
||||||
|
auctionBid.ProductAuctionMappingId = mapping.FirstOrDefault().Id;
|
||||||
|
|
||||||
|
//save bid
|
||||||
|
try
|
||||||
|
{
|
||||||
|
await _auctionService.InsertBidAsync(auctionBid);
|
||||||
|
}
|
||||||
|
catch (Exception e)
|
||||||
|
{
|
||||||
|
_logger.Error($"MessageHandling InsertBidAsync error: {e.ToString()}");
|
||||||
|
}
|
||||||
|
|
||||||
|
//update product
|
||||||
|
|
||||||
|
await _productService.UpdateProductAsync(product);
|
||||||
|
|
||||||
|
// Optionally broadcast to all clients
|
||||||
|
var bid = new MessageWrapper
|
||||||
|
{
|
||||||
|
MessageType = "bidNotification",
|
||||||
|
Data = new BidNotificationMessage
|
||||||
|
{
|
||||||
|
ProductName = bidRequestMessage.ProductId,
|
||||||
|
BidPrice = bidRequestMessage.BidPrice,
|
||||||
|
NextStepAmount = "50000"
|
||||||
|
}
|
||||||
|
};
|
||||||
|
var jsonMessage = JsonConvert.SerializeObject(bid, Formatting.Indented,
|
||||||
|
new JsonSerializerSettings { ContractResolver = new CamelCasePropertyNamesContractResolver() }
|
||||||
|
);
|
||||||
|
|
||||||
|
await _hubContext.Clients.All.SendAsync("send", jsonMessage);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
_logger.Error($"MessageHandling error: {ex.ToString()}");
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -211,12 +211,15 @@ public class AuctionService : IAuctionService
|
||||||
return new List<ProductToAuctionMapping>(await _ctx.ProductToAuctions.GetByAuctionAndProductId(auctionId, productId).ToListAsync());
|
return new List<ProductToAuctionMapping>(await _ctx.ProductToAuctions.GetByAuctionAndProductId(auctionId, productId).ToListAsync());
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<bool> AssignProductToAuctionAsync(int productId, decimal startingPrice, decimal bidPrice, int auctionId)
|
public async Task<ProductToAuctionMapping> AssignProductToAuctionAsync(int productId, decimal startingPrice, decimal bidPrice, int auctionId)
|
||||||
{
|
{
|
||||||
var auction = await GetAuctionDtoByIdAsync(auctionId);
|
var auction = await GetAuctionDtoByIdAsync(auctionId);
|
||||||
if (auction == null)
|
if (auction == null)
|
||||||
return null;
|
return null;
|
||||||
|
|
||||||
|
var existedProductToAuction = (await GetProductToAuctionByAuctionIdAndProductIdAsync(auctionId, productId)).FirstOrDefault();
|
||||||
|
if (existedProductToAuction != null) return existedProductToAuction;
|
||||||
|
|
||||||
var mapping = new ProductToAuctionMapping
|
var mapping = new ProductToAuctionMapping
|
||||||
{
|
{
|
||||||
ProductId = productId,
|
ProductId = productId,
|
||||||
|
|
|
||||||
|
|
@ -50,6 +50,4 @@ public interface IAuctionService
|
||||||
Task<List<ProductToAuctionMapping>> GetProductToAuctionsByProductIdAsync(int productId);
|
Task<List<ProductToAuctionMapping>> GetProductToAuctionsByProductIdAsync(int productId);
|
||||||
|
|
||||||
Task<List<ProductToAuctionMapping>> GetProductToAuctionByAuctionIdAndProductIdAsync(int auctionId, int productId);
|
Task<List<ProductToAuctionMapping>> GetProductToAuctionByAuctionIdAndProductIdAsync(int auctionId, int productId);
|
||||||
|
|
||||||
Task<bool> AssignProductToAuctionAsync(int productId, decimal startingPrice, decimal bidPrice, int auctionId);
|
|
||||||
}
|
}
|
||||||
Loading…
Reference in New Issue