react-version #1

Merged
memartel merged 290 commits from react-version into main 2023-11-04 09:48:15 -04:00
Showing only changes of commit ef33cb199c - Show all commits

View File

@@ -178,6 +178,13 @@ public class InvoiceController : Controller {
inv.Products = new(); inv.Products = new();
try {
prods = _context.Products.Where(x => sinv.ProdQuant.Select(x => x.Key).Contains(x.Id)).ToList();
} catch (Exception e) {
_logger.LogError(8, e.Message);
return BadRequest();
}
foreach (var prod in prods) { foreach (var prod in prods) {
inv.Products.Add(new() { inv.Products.Add(new() {
Product = prod, Product = prod,
@@ -267,13 +274,6 @@ public class InvoiceController : Controller {
}; };
inv.ShippingAddress = ad; inv.ShippingAddress = ad;
try {
prods = _context.Products.Where(x => sinv.ProdQuant.Select(x => x.Key).Contains(x.Id)).ToList();
} catch (Exception e) {
_logger.LogError(8, e.Message);
return BadRequest();
}
if (prods.Count == 0) if (prods.Count == 0)
return BadRequest("Vous devez inclure au moins un produit à votre commande."); return BadRequest("Vous devez inclure au moins un produit à votre commande.");