Compare commits
16 Commits
b79e07dd8b
...
develop
Author | SHA1 | Date | |
---|---|---|---|
06c64a9f3f | |||
aa1c98d649 | |||
fa72c6d777 | |||
59628717d4 | |||
ff590302e2 | |||
45f6baaac3 | |||
ef9740d8ff | |||
3ada21adae | |||
4f12911263 | |||
8bd7fadabc | |||
e4e6c1c3f7 | |||
791eff9256 | |||
b4502ae562 | |||
347003c24a | |||
31e69aae1a | |||
74b5fa6666 |
@@ -8,5 +8,4 @@ public class CreateDeliveryNoteDto
|
|||||||
public DateOnly RealDeliveryDate { get; set; }
|
public DateOnly RealDeliveryDate { get; set; }
|
||||||
|
|
||||||
public int DelivererId { get; set; }
|
public int DelivererId { get; set; }
|
||||||
|
|
||||||
}
|
}
|
@@ -4,5 +4,4 @@ public class PatchDeliveryNoteRealDeliveryDateDto
|
|||||||
{
|
{
|
||||||
public int Id { get; set; }
|
public int Id { get; set; }
|
||||||
public DateOnly RealDeliveryDate { get; set; }
|
public DateOnly RealDeliveryDate { get; set; }
|
||||||
|
|
||||||
}
|
}
|
@@ -9,5 +9,4 @@ public class UpdateDeliveryNoteDto
|
|||||||
public DateOnly? RealDeliveryDate { get; set; }
|
public DateOnly? RealDeliveryDate { get; set; }
|
||||||
|
|
||||||
public int DelivererId { get; set; }
|
public int DelivererId { get; set; }
|
||||||
|
|
||||||
}
|
}
|
@@ -13,5 +13,5 @@ public class GetDeliveryNoteDto
|
|||||||
public int DelivererId { get; set; }
|
public int DelivererId { get; set; }
|
||||||
public string? DelivererTransporter { get; set; }
|
public string? DelivererTransporter { get; set; }
|
||||||
|
|
||||||
public List<GetProductDeliveryDto> Products { get; set; }
|
public List<GetProductDeliveryDto>? Products { get; set; }
|
||||||
}
|
}
|
@@ -0,0 +1,7 @@
|
|||||||
|
namespace PyroFetes.DTO.PurchaseOrder.Request;
|
||||||
|
|
||||||
|
public class PatchPurchaseOrderPurchaseConditionsDto
|
||||||
|
{
|
||||||
|
public int Id { get; set; }
|
||||||
|
public string? PurchaseConditions { get; set; }
|
||||||
|
}
|
10
PyroFetes/DTO/PurchaseOrder/Response/GetPurchaseOrderDto.cs
Normal file
10
PyroFetes/DTO/PurchaseOrder/Response/GetPurchaseOrderDto.cs
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
using PyroFetes.DTO.PurchaseProduct.Response;
|
||||||
|
|
||||||
|
namespace PyroFetes.DTO.PurchaseOrder.Response;
|
||||||
|
|
||||||
|
public class GetPurchaseOrderDto
|
||||||
|
{
|
||||||
|
public int Id { get; set; }
|
||||||
|
public string? PurchaseConditions { get; set; }
|
||||||
|
public List<GetPurchaseProductDto>? GetPurchaseProductDto { get; set; }
|
||||||
|
}
|
@@ -3,20 +3,7 @@ namespace PyroFetes.DTO.PurchaseProduct.Request;
|
|||||||
public class CreatePurchaseProductDto
|
public class CreatePurchaseProductDto
|
||||||
{
|
{
|
||||||
public int Quantity { get; set; }
|
public int Quantity { get; set; }
|
||||||
|
|
||||||
public int ProductId { get; set; }
|
public int ProductId { get; set; }
|
||||||
public int ProductReferences { get; set; }
|
|
||||||
public string? ProductName { get; set; }
|
|
||||||
public decimal ProductDuration {get; set;}
|
|
||||||
public decimal ProductCaliber { get; set; }
|
|
||||||
public int ProductApprovalNumber { get; set; }
|
|
||||||
public decimal ProductWeight { get; set; }
|
|
||||||
public decimal ProductNec { get; set; }
|
|
||||||
public string? ProductImage { get; set; }
|
|
||||||
public string? ProductLink { get; set; }
|
|
||||||
public int ProductMinimalQuantity { get; set; }
|
|
||||||
|
|
||||||
|
|
||||||
public int PurchaseOrderId { get; set; }
|
public int PurchaseOrderId { get; set; }
|
||||||
public string? PurchaseOrderPurchaseConditions { get; set; }
|
public string? PurchaseOrderPurchaseConditions { get; set; }
|
||||||
}
|
}
|
@@ -2,6 +2,7 @@ namespace PyroFetes.DTO.PurchaseProduct.Request;
|
|||||||
|
|
||||||
public class PatchPurchaseProductQuantityDto
|
public class PatchPurchaseProductQuantityDto
|
||||||
{
|
{
|
||||||
public int Id { get; set; }
|
public int ProductId { get; set; }
|
||||||
|
public int PurchaseOrderId { get; set; }
|
||||||
public int Quantity { get; set; }
|
public int Quantity { get; set; }
|
||||||
}
|
}
|
@@ -2,10 +2,11 @@ namespace PyroFetes.DTO.PurchaseProduct.Request;
|
|||||||
|
|
||||||
public class UpdatePurchaseProductDto
|
public class UpdatePurchaseProductDto
|
||||||
{
|
{
|
||||||
public int Id { get; set; }
|
public int ProductId { get; set; }
|
||||||
|
public int PurchaseOrderId { get; set; }
|
||||||
|
|
||||||
public int Quantity { get; set; }
|
public int Quantity { get; set; }
|
||||||
|
|
||||||
public int ProductId { get; set; }
|
|
||||||
public int ProductReferences { get; set; }
|
public int ProductReferences { get; set; }
|
||||||
public string? ProductName { get; set; }
|
public string? ProductName { get; set; }
|
||||||
public decimal ProductDuration {get; set;}
|
public decimal ProductDuration {get; set;}
|
||||||
@@ -17,7 +18,5 @@ public class UpdatePurchaseProductDto
|
|||||||
public string? ProductLink { get; set; }
|
public string? ProductLink { get; set; }
|
||||||
public int ProductMinimalQuantity { get; set; }
|
public int ProductMinimalQuantity { get; set; }
|
||||||
|
|
||||||
|
|
||||||
public int PurchaseOrderId { get; set; }
|
|
||||||
public string? PurchaseOrderPurchaseConditions { get; set; }
|
public string? PurchaseOrderPurchaseConditions { get; set; }
|
||||||
}
|
}
|
@@ -2,23 +2,20 @@ namespace PyroFetes.DTO.PurchaseProduct.Response;
|
|||||||
|
|
||||||
public class GetPurchaseProductDto
|
public class GetPurchaseProductDto
|
||||||
{
|
{
|
||||||
public int Id { get; set; }
|
|
||||||
public int Quantity { get; set; }
|
|
||||||
|
|
||||||
public int ProductId { get; set; }
|
public int ProductId { get; set; }
|
||||||
public int ProductReferences { get; set; }
|
public string? ProductReferences { get; set; }
|
||||||
public string? ProductName { get; set; }
|
public string? ProductName { get; set; }
|
||||||
public decimal ProductDuration {get; set;}
|
public decimal ProductDuration {get; set;}
|
||||||
public decimal ProductCaliber { get; set; }
|
public decimal ProductCaliber { get; set; }
|
||||||
public int ProductApprovalNumber { get; set; }
|
public int ProductApprovalNumber { get; set; }
|
||||||
public decimal ProductWeight { get; set; }
|
public decimal ProductWeight { get; set; }
|
||||||
public decimal ProductNec { get; set; }
|
public decimal ProductNec { get; set; }
|
||||||
public decimal ProductSellingPrice { get; set; }
|
|
||||||
public string? ProductImage { get; set; }
|
public string? ProductImage { get; set; }
|
||||||
public string? ProductLink { get; set; }
|
public string? ProductLink { get; set; }
|
||||||
public int ProductMinimalQuantity { get; set; }
|
public int ProductMinimalQuantity { get; set; }
|
||||||
|
|
||||||
|
|
||||||
public int PurchaseOrderId { get; set; }
|
public int PurchaseOrderId { get; set; }
|
||||||
public string? PurchaseOrderPurchaseConditions { get; set; }
|
public string? PurchaseOrderPurchaseConditions { get; set; }
|
||||||
|
|
||||||
|
public int Quantity { get; set; }
|
||||||
}
|
}
|
@@ -0,0 +1,7 @@
|
|||||||
|
namespace PyroFetes.DTO.Quotation.Request;
|
||||||
|
|
||||||
|
public class PatchQuotationConditionsSaleDto
|
||||||
|
{
|
||||||
|
public int Id { get; set; }
|
||||||
|
public string? ConditionsSale { get; set; }
|
||||||
|
}
|
@@ -0,0 +1,7 @@
|
|||||||
|
namespace PyroFetes.DTO.Quotation.Request;
|
||||||
|
|
||||||
|
public class PatchQuotationMessageDto
|
||||||
|
{
|
||||||
|
public int Id { get; set; }
|
||||||
|
public string? Message { get; set; }
|
||||||
|
}
|
11
PyroFetes/DTO/Quotation/Response/GetQuotationDto.cs
Normal file
11
PyroFetes/DTO/Quotation/Response/GetQuotationDto.cs
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
using PyroFetes.DTO.QuotationProduct.Response;
|
||||||
|
|
||||||
|
namespace PyroFetes.DTO.Quotation.Response;
|
||||||
|
|
||||||
|
public class GetQuotationDto
|
||||||
|
{
|
||||||
|
public int Id { get; set; }
|
||||||
|
public string? Message { get; set; }
|
||||||
|
public string? ConditionsSale { get; set; }
|
||||||
|
public List<GetQuotationProductDto>? GetQuotationProductDto { get; set; }
|
||||||
|
}
|
@@ -2,6 +2,7 @@ namespace PyroFetes.DTO.QuotationProduct.Request;
|
|||||||
|
|
||||||
public class PatchQuotationProductQuantityDto
|
public class PatchQuotationProductQuantityDto
|
||||||
{
|
{
|
||||||
public int Id { get; set; }
|
public int ProductId { get; set; }
|
||||||
|
public int QuotationId { get; set; }
|
||||||
public int Quantity { get; set; }
|
public int Quantity { get; set; }
|
||||||
}
|
}
|
@@ -2,7 +2,6 @@ namespace PyroFetes.DTO.QuotationProduct.Response;
|
|||||||
|
|
||||||
public class GetQuotationProductDto
|
public class GetQuotationProductDto
|
||||||
{
|
{
|
||||||
public int Id { get; set; }
|
|
||||||
public int Quantity { get; set; }
|
public int Quantity { get; set; }
|
||||||
|
|
||||||
public int QuotationId { get; set; }
|
public int QuotationId { get; set; }
|
||||||
@@ -10,7 +9,7 @@ public class GetQuotationProductDto
|
|||||||
public string? QuotationConditionsSale { get; set; }
|
public string? QuotationConditionsSale { get; set; }
|
||||||
|
|
||||||
public int ProductId { get; set; }
|
public int ProductId { get; set; }
|
||||||
public int ProductReferences { get; set; }
|
public string? ProductReferences { get; set; }
|
||||||
public string? ProductName { get; set; }
|
public string? ProductName { get; set; }
|
||||||
public decimal ProductDuration {get; set;}
|
public decimal ProductDuration {get; set;}
|
||||||
public decimal ProductCaliber { get; set; }
|
public decimal ProductCaliber { get; set; }
|
||||||
|
7
PyroFetes/DTO/User/Request/ConnectUserDto.cs
Normal file
7
PyroFetes/DTO/User/Request/ConnectUserDto.cs
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
namespace PyroFetes.DTO.User.Request;
|
||||||
|
|
||||||
|
public class ConnectUserDto
|
||||||
|
{
|
||||||
|
public string? Username { get; set; }
|
||||||
|
public string? Password { get; set; }
|
||||||
|
}
|
7
PyroFetes/DTO/User/Request/PatchUserPasswordDto.cs
Normal file
7
PyroFetes/DTO/User/Request/PatchUserPasswordDto.cs
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
namespace PyroFetes.DTO.User.Request;
|
||||||
|
|
||||||
|
public class PatchUserPasswordDto
|
||||||
|
{
|
||||||
|
public int Id { get; set; }
|
||||||
|
public string? Password { get; set; }
|
||||||
|
}
|
6
PyroFetes/DTO/User/Response/GetTokenDto.cs
Normal file
6
PyroFetes/DTO/User/Response/GetTokenDto.cs
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
namespace PyroFetes.DTO.User.Response;
|
||||||
|
|
||||||
|
public class GetTokenDto
|
||||||
|
{
|
||||||
|
public string? Token { get; set; }
|
||||||
|
}
|
@@ -1,27 +0,0 @@
|
|||||||
namespace PyroFetes.DTO.WareHouseProduct.Request;
|
|
||||||
|
|
||||||
public class CreateWareHouseProductDto
|
|
||||||
{
|
|
||||||
public int Quantity { get; set; }
|
|
||||||
|
|
||||||
public int WareHouseId { get; set; }
|
|
||||||
public string? WareHouseName {get; set;}
|
|
||||||
public int WareHouseMaxWeight {get; set;}
|
|
||||||
public int WareHouseCurrent {get; set;}
|
|
||||||
public int WareHouseMinWeight {get; set;}
|
|
||||||
public string? WareHouseAddress { get; set; }
|
|
||||||
public int WareHouseZipCode { get; set; }
|
|
||||||
public string? WareHouseCity { get; set; }
|
|
||||||
|
|
||||||
public int ProductId { get; set; }
|
|
||||||
public int ProductReferences { get; set; }
|
|
||||||
public string? ProductName { get; set; }
|
|
||||||
public decimal ProductDuration {get; set;}
|
|
||||||
public decimal ProductCaliber { get; set; }
|
|
||||||
public int ProductApprovalNumber { get; set; }
|
|
||||||
public decimal ProductWeight { get; set; }
|
|
||||||
public decimal ProductNec { get; set; }
|
|
||||||
public string? ProductImage { get; set; }
|
|
||||||
public string? ProductLink { get; set; }
|
|
||||||
public int ProductMinimalQuantity { get; set; }
|
|
||||||
}
|
|
@@ -2,6 +2,7 @@ namespace PyroFetes.DTO.WareHouseProduct.Request;
|
|||||||
|
|
||||||
public class PatchWareHouseProductQuantityDto
|
public class PatchWareHouseProductQuantityDto
|
||||||
{
|
{
|
||||||
public int Id { get; set; }
|
public int WareHouseId { get; set; }
|
||||||
|
public int ProductId { get; set; }
|
||||||
public int Quantity { get; set; }
|
public int Quantity { get; set; }
|
||||||
}
|
}
|
@@ -1,28 +0,0 @@
|
|||||||
namespace PyroFetes.DTO.WareHouseProduct.Request;
|
|
||||||
|
|
||||||
public class UpdateWareHouseProductDto
|
|
||||||
{
|
|
||||||
public int Id { get; set; }
|
|
||||||
public int Quantity { get; set; }
|
|
||||||
|
|
||||||
public int WareHouseId { get; set; }
|
|
||||||
public string? WareHouseName {get; set;}
|
|
||||||
public int WareHouseMaxWeight {get; set;}
|
|
||||||
public int WareHouseCurrent {get; set;}
|
|
||||||
public int WareHouseMinWeight {get; set;}
|
|
||||||
public string? WareHouseAddress { get; set; }
|
|
||||||
public int WareHouseZipCode { get; set; }
|
|
||||||
public string? WareHouseCity { get; set; }
|
|
||||||
|
|
||||||
public int ProductId { get; set; }
|
|
||||||
public int ProductReferences { get; set; }
|
|
||||||
public string? ProductName { get; set; }
|
|
||||||
public decimal ProductDuration {get; set;}
|
|
||||||
public decimal ProductCaliber { get; set; }
|
|
||||||
public int ProductApprovalNumber { get; set; }
|
|
||||||
public decimal ProductWeight { get; set; }
|
|
||||||
public decimal ProductNec { get; set; }
|
|
||||||
public string? ProductImage { get; set; }
|
|
||||||
public string? ProductLink { get; set; }
|
|
||||||
public int ProductMinimalQuantity { get; set; }
|
|
||||||
}
|
|
@@ -0,0 +1,7 @@
|
|||||||
|
namespace PyroFetes.DTO.WareHouseProduct.Response;
|
||||||
|
|
||||||
|
public class GetTotalQuantityDto
|
||||||
|
{
|
||||||
|
public int ProductId { get; set; }
|
||||||
|
public int TotalQuantity { get; set; }
|
||||||
|
}
|
@@ -2,27 +2,7 @@ namespace PyroFetes.DTO.WareHouseProduct.Response;
|
|||||||
|
|
||||||
public class GetWareHouseProductDto
|
public class GetWareHouseProductDto
|
||||||
{
|
{
|
||||||
public int Id { get; set; }
|
|
||||||
public int Quantity { get; set; }
|
public int Quantity { get; set; }
|
||||||
|
|
||||||
public int WareHouseId { get; set; }
|
public int WareHouseId { get; set; }
|
||||||
public string? WareHouseName {get; set;}
|
|
||||||
public int WareHouseMaxWeight {get; set;}
|
|
||||||
public int WareHouseCurrent {get; set;}
|
|
||||||
public int WareHouseMinWeight {get; set;}
|
|
||||||
public string? WareHouseAddress { get; set; }
|
|
||||||
public int WareHouseZipCode { get; set; }
|
|
||||||
public string? WareHouseCity { get; set; }
|
|
||||||
|
|
||||||
public int ProductId { get; set; }
|
public int ProductId { get; set; }
|
||||||
public int ProductReferences { get; set; }
|
|
||||||
public string? ProductName { get; set; }
|
|
||||||
public decimal ProductDuration {get; set;}
|
|
||||||
public decimal ProductCaliber { get; set; }
|
|
||||||
public int ProductApprovalNumber { get; set; }
|
|
||||||
public decimal ProductWeight { get; set; }
|
|
||||||
public decimal ProductNec { get; set; }
|
|
||||||
public string? ProductImage { get; set; }
|
|
||||||
public string? ProductLink { get; set; }
|
|
||||||
public int ProductMinimalQuantity { get; set; }
|
|
||||||
}
|
}
|
@@ -0,0 +1,41 @@
|
|||||||
|
using FastEndpoints;
|
||||||
|
using Microsoft.EntityFrameworkCore;
|
||||||
|
|
||||||
|
namespace PyroFetes.Endpoints.PurchaseOrder;
|
||||||
|
|
||||||
|
public class DeletePurchaseOrderRequest
|
||||||
|
{
|
||||||
|
public int Id { get; set; }
|
||||||
|
}
|
||||||
|
|
||||||
|
public class DeletePurchaseOrderEndpoint(PyroFetesDbContext database) : Endpoint<DeletePurchaseOrderRequest>
|
||||||
|
{
|
||||||
|
public override void Configure()
|
||||||
|
{
|
||||||
|
Delete("/api/purchaseOrders/{@Id}", x => new {x.Id});
|
||||||
|
AllowAnonymous();
|
||||||
|
}
|
||||||
|
|
||||||
|
public override async Task HandleAsync(DeletePurchaseOrderRequest req, CancellationToken ct)
|
||||||
|
{
|
||||||
|
var purchaseOrder = await database.PurchaseOrders
|
||||||
|
.Include(po => po.PurchaseProducts)
|
||||||
|
.SingleOrDefaultAsync(po => po.Id == req.Id, ct);
|
||||||
|
|
||||||
|
if (purchaseOrder == null)
|
||||||
|
{
|
||||||
|
await Send.NotFoundAsync(ct);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (purchaseOrder.PurchaseProducts != null && purchaseOrder.PurchaseProducts.Any())
|
||||||
|
{
|
||||||
|
database.PurchaseProducts.RemoveRange(purchaseOrder.PurchaseProducts);
|
||||||
|
}
|
||||||
|
|
||||||
|
database.PurchaseOrders.Remove(purchaseOrder);
|
||||||
|
await database.SaveChangesAsync(ct);
|
||||||
|
|
||||||
|
await Send.NoContentAsync(ct);
|
||||||
|
}
|
||||||
|
}
|
@@ -0,0 +1,45 @@
|
|||||||
|
using FastEndpoints;
|
||||||
|
using Microsoft.EntityFrameworkCore;
|
||||||
|
using PyroFetes.DTO.PurchaseOrder.Response;
|
||||||
|
using PyroFetes.DTO.PurchaseProduct.Response;
|
||||||
|
|
||||||
|
namespace PyroFetes.Endpoints.PurchaseOrder;
|
||||||
|
|
||||||
|
public class GetAllPurchaseOrderEndpoint(PyroFetesDbContext database) : EndpointWithoutRequest<List<GetPurchaseOrderDto>>
|
||||||
|
{
|
||||||
|
public override void Configure()
|
||||||
|
{
|
||||||
|
Get("/api/purchaseOrders");
|
||||||
|
}
|
||||||
|
|
||||||
|
public override async Task HandleAsync(CancellationToken ct)
|
||||||
|
{
|
||||||
|
var purchaseOrder = await database.PurchaseOrders
|
||||||
|
.Include(p => p.PurchaseProducts)
|
||||||
|
.Select(purchaseOrder => new GetPurchaseOrderDto()
|
||||||
|
{
|
||||||
|
Id = purchaseOrder.Id,
|
||||||
|
PurchaseConditions = purchaseOrder.PurchaseConditions,
|
||||||
|
GetPurchaseProductDto = purchaseOrder.PurchaseProducts
|
||||||
|
.Select(p => new GetPurchaseProductDto
|
||||||
|
{
|
||||||
|
ProductId = p.ProductId,
|
||||||
|
ProductReferences = p.Product.Reference,
|
||||||
|
ProductName = p.Product.Name,
|
||||||
|
ProductDuration = p.Product.Duration,
|
||||||
|
ProductCaliber = p.Product.Caliber,
|
||||||
|
ProductApprovalNumber = p.Product.ApprovalNumber,
|
||||||
|
ProductWeight = p.Product.Weight,
|
||||||
|
ProductNec = p.Product.Nec,
|
||||||
|
ProductImage = p.Product.Image,
|
||||||
|
ProductLink = p.Product.Link,
|
||||||
|
ProductMinimalQuantity = p.Product.MinimalQuantity,
|
||||||
|
PurchaseOrderId = p.PurchaseOrderId,
|
||||||
|
Quantity = p.Quantity,
|
||||||
|
}).ToList()
|
||||||
|
})
|
||||||
|
.ToListAsync(ct);
|
||||||
|
|
||||||
|
await Send.OkAsync(purchaseOrder, ct);
|
||||||
|
}
|
||||||
|
}
|
@@ -0,0 +1,56 @@
|
|||||||
|
using FastEndpoints;
|
||||||
|
using Microsoft.EntityFrameworkCore;
|
||||||
|
using PyroFetes.DTO.PurchaseOrder.Response;
|
||||||
|
using PyroFetes.DTO.PurchaseProduct.Response;
|
||||||
|
|
||||||
|
namespace PyroFetes.Endpoints.PurchaseOrder;
|
||||||
|
|
||||||
|
public class GetPurchaseOrderRequest
|
||||||
|
{
|
||||||
|
public int Id { get; set; }
|
||||||
|
}
|
||||||
|
|
||||||
|
public class GetPurchaseOrderEndpoint(PyroFetesDbContext database) : Endpoint<GetPurchaseOrderRequest, GetPurchaseOrderDto>
|
||||||
|
{
|
||||||
|
public override void Configure()
|
||||||
|
{
|
||||||
|
Get("/api/purchaseOrders/{@Id}", x => new {x.Id});
|
||||||
|
}
|
||||||
|
|
||||||
|
public override async Task HandleAsync(GetPurchaseOrderRequest req, CancellationToken ct)
|
||||||
|
{
|
||||||
|
var purchaseOrder = await database.PurchaseOrders
|
||||||
|
.SingleOrDefaultAsync(x => x.Id == req.Id, ct);
|
||||||
|
|
||||||
|
if (purchaseOrder == null)
|
||||||
|
{
|
||||||
|
await Send.NotFoundAsync(ct);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
GetPurchaseOrderDto responseDto = new()
|
||||||
|
{
|
||||||
|
Id = purchaseOrder.Id,
|
||||||
|
PurchaseConditions = purchaseOrder.PurchaseConditions,
|
||||||
|
GetPurchaseProductDto = purchaseOrder.PurchaseProducts
|
||||||
|
.Select(p => new GetPurchaseProductDto
|
||||||
|
{
|
||||||
|
ProductId = p.ProductId,
|
||||||
|
ProductReferences = p.Product.Reference,
|
||||||
|
ProductName = p.Product.Name,
|
||||||
|
ProductDuration = p.Product.Duration,
|
||||||
|
ProductCaliber = p.Product.Caliber,
|
||||||
|
ProductApprovalNumber = p.Product.ApprovalNumber,
|
||||||
|
ProductWeight = p.Product.Weight,
|
||||||
|
ProductNec = p.Product.Nec,
|
||||||
|
ProductImage = p.Product.Image,
|
||||||
|
ProductLink = p.Product.Link,
|
||||||
|
ProductMinimalQuantity = p.Product.MinimalQuantity,
|
||||||
|
PurchaseOrderId = p.PurchaseOrderId,
|
||||||
|
Quantity = p.Quantity,
|
||||||
|
}).ToList()
|
||||||
|
};
|
||||||
|
|
||||||
|
await Send.OkAsync(responseDto, ct);
|
||||||
|
}
|
||||||
|
}
|
@@ -0,0 +1,54 @@
|
|||||||
|
using FastEndpoints;
|
||||||
|
using Microsoft.EntityFrameworkCore;
|
||||||
|
using PyroFetes.DTO.PurchaseOrder.Request;
|
||||||
|
using PyroFetes.DTO.PurchaseOrder.Response;
|
||||||
|
using PyroFetes.DTO.PurchaseProduct.Request;
|
||||||
|
using PyroFetes.DTO.PurchaseProduct.Response;
|
||||||
|
|
||||||
|
namespace PyroFetes.Endpoints.PurchaseOrder;
|
||||||
|
|
||||||
|
public class PatchPurchaseOrderPurchaseConditionsEndpoint(PyroFetesDbContext database) : Endpoint<PatchPurchaseOrderPurchaseConditionsDto, GetPurchaseOrderDto>
|
||||||
|
{
|
||||||
|
public override void Configure()
|
||||||
|
{
|
||||||
|
Patch("/api/purchaseOrders/{@Id}/PurchaseConditions", x => new { x.Id });
|
||||||
|
AllowAnonymous();
|
||||||
|
}
|
||||||
|
|
||||||
|
public override async Task HandleAsync(PatchPurchaseOrderPurchaseConditionsDto req, CancellationToken ct)
|
||||||
|
{
|
||||||
|
var purchaseOrder = await database.PurchaseOrders.SingleOrDefaultAsync(po => po.Id == req.Id, ct);
|
||||||
|
if (purchaseOrder == null)
|
||||||
|
{
|
||||||
|
await Send.NotFoundAsync(ct);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
purchaseOrder.PurchaseConditions = req.PurchaseConditions;
|
||||||
|
await database.SaveChangesAsync(ct);
|
||||||
|
|
||||||
|
GetPurchaseOrderDto responseDto = new()
|
||||||
|
{
|
||||||
|
Id = purchaseOrder.Id,
|
||||||
|
PurchaseConditions = purchaseOrder.PurchaseConditions,
|
||||||
|
GetPurchaseProductDto = purchaseOrder.PurchaseProducts
|
||||||
|
.Select(p => new GetPurchaseProductDto
|
||||||
|
{
|
||||||
|
ProductId = p.ProductId,
|
||||||
|
ProductReferences = p.Product.Reference,
|
||||||
|
ProductName = p.Product.Name,
|
||||||
|
ProductDuration = p.Product.Duration,
|
||||||
|
ProductCaliber = p.Product.Caliber,
|
||||||
|
ProductApprovalNumber = p.Product.ApprovalNumber,
|
||||||
|
ProductWeight = p.Product.Weight,
|
||||||
|
ProductNec = p.Product.Nec,
|
||||||
|
ProductImage = p.Product.Image,
|
||||||
|
ProductLink = p.Product.Link,
|
||||||
|
ProductMinimalQuantity = p.Product.MinimalQuantity,
|
||||||
|
PurchaseOrderId = p.PurchaseOrderId,
|
||||||
|
Quantity = p.Quantity,
|
||||||
|
}).ToList()
|
||||||
|
};
|
||||||
|
await Send.OkAsync(responseDto, ct);
|
||||||
|
}
|
||||||
|
}
|
@@ -0,0 +1,67 @@
|
|||||||
|
using Microsoft.EntityFrameworkCore;
|
||||||
|
using FastEndpoints;
|
||||||
|
using PyroFetes.DTO.PurchaseProduct.Request;
|
||||||
|
using PyroFetes.DTO.PurchaseProduct.Response;
|
||||||
|
|
||||||
|
namespace PyroFetes.Endpoints.PurchaseProduct;
|
||||||
|
|
||||||
|
public class CreatePurchaseProductEndpoint(PyroFetesDbContext database) : Endpoint<CreatePurchaseProductDto, GetPurchaseProductDto>
|
||||||
|
{
|
||||||
|
public override void Configure()
|
||||||
|
{
|
||||||
|
Post("/api/purchaseProducts");
|
||||||
|
AllowAnonymous();
|
||||||
|
}
|
||||||
|
|
||||||
|
public override async Task HandleAsync(CreatePurchaseProductDto req, CancellationToken ct)
|
||||||
|
{
|
||||||
|
var product = await database.Products.FirstOrDefaultAsync(p => p.Id == req.ProductId, ct);
|
||||||
|
if (product == null)
|
||||||
|
{
|
||||||
|
await Send.NotFoundAsync(ct);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
var purchaseOrder = await database.PurchaseOrders.FirstOrDefaultAsync(po => po.Id == req.PurchaseOrderId, ct);
|
||||||
|
|
||||||
|
if (purchaseOrder == null)
|
||||||
|
{
|
||||||
|
purchaseOrder = new Models.PurchaseOrder()
|
||||||
|
{
|
||||||
|
PurchaseConditions = req.PurchaseOrderPurchaseConditions ?? "Conditions non précisées"
|
||||||
|
};
|
||||||
|
database.PurchaseOrders.Add(purchaseOrder);
|
||||||
|
await database.SaveChangesAsync(ct);
|
||||||
|
}
|
||||||
|
|
||||||
|
var purchaseProduct = new Models.PurchaseProduct()
|
||||||
|
{
|
||||||
|
ProductId = product.Id,
|
||||||
|
PurchaseOrderId = purchaseOrder.Id,
|
||||||
|
Quantity = req.Quantity
|
||||||
|
};
|
||||||
|
database.PurchaseProducts.Add(purchaseProduct);
|
||||||
|
await database.SaveChangesAsync(ct);
|
||||||
|
|
||||||
|
var responseDto = new GetPurchaseProductDto()
|
||||||
|
{
|
||||||
|
ProductId = product.Id,
|
||||||
|
ProductReferences = product.Reference,
|
||||||
|
ProductName = product.Name,
|
||||||
|
ProductDuration = product.Duration,
|
||||||
|
ProductCaliber = product.Caliber,
|
||||||
|
ProductApprovalNumber = product.ApprovalNumber,
|
||||||
|
ProductWeight = product.Weight,
|
||||||
|
ProductNec = product.Nec,
|
||||||
|
ProductImage = product.Image,
|
||||||
|
ProductLink = product.Link,
|
||||||
|
ProductMinimalQuantity = product.MinimalQuantity,
|
||||||
|
|
||||||
|
PurchaseOrderId = purchaseOrder.Id,
|
||||||
|
PurchaseOrderPurchaseConditions = purchaseOrder.PurchaseConditions,
|
||||||
|
Quantity = purchaseProduct.Quantity
|
||||||
|
};
|
||||||
|
|
||||||
|
await Send.OkAsync(responseDto, ct);
|
||||||
|
}
|
||||||
|
}
|
@@ -0,0 +1,36 @@
|
|||||||
|
using FastEndpoints;
|
||||||
|
using Microsoft.EntityFrameworkCore;
|
||||||
|
|
||||||
|
namespace PyroFetes.Endpoints.PurchaseProduct;
|
||||||
|
|
||||||
|
public class DeletePurchaseProductRequest
|
||||||
|
{
|
||||||
|
public int ProductId { get; set; }
|
||||||
|
public int PurchaseOrderId { get; set; }
|
||||||
|
}
|
||||||
|
|
||||||
|
public class DeletePurchaseOrderEndpoint(PyroFetesDbContext database) : Endpoint<DeletePurchaseProductRequest>
|
||||||
|
{
|
||||||
|
public override void Configure()
|
||||||
|
{
|
||||||
|
Delete("/api/purchaseProducts/{@ProductId}/{@PurchaseOrderId}", x => new {x.ProductId, x.PurchaseOrderId});
|
||||||
|
AllowAnonymous();
|
||||||
|
}
|
||||||
|
|
||||||
|
public override async Task HandleAsync(DeletePurchaseProductRequest req, CancellationToken ct)
|
||||||
|
{
|
||||||
|
var purchaseProduct = await database.PurchaseProducts
|
||||||
|
.SingleOrDefaultAsync(po => po.ProductId == req.ProductId && po.PurchaseOrderId == req.PurchaseOrderId, ct);
|
||||||
|
|
||||||
|
if (purchaseProduct == null)
|
||||||
|
{
|
||||||
|
await Send.NotFoundAsync(ct);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
database.PurchaseProducts.Remove(purchaseProduct);
|
||||||
|
await database.SaveChangesAsync(ct);
|
||||||
|
|
||||||
|
await Send.NoContentAsync(ct);
|
||||||
|
}
|
||||||
|
}
|
@@ -0,0 +1,36 @@
|
|||||||
|
using FastEndpoints;
|
||||||
|
using Microsoft.EntityFrameworkCore;
|
||||||
|
using PyroFetes.DTO.PurchaseProduct.Request;
|
||||||
|
using PyroFetes.DTO.PurchaseProduct.Response;
|
||||||
|
|
||||||
|
namespace PyroFetes.Endpoints.PurchaseProduct;
|
||||||
|
|
||||||
|
public class PatchPurchaseProductQuantityEndpoint(PyroFetesDbContext database) : Endpoint<PatchPurchaseProductQuantityDto, GetPurchaseProductDto>
|
||||||
|
{
|
||||||
|
public override void Configure()
|
||||||
|
{
|
||||||
|
Patch("/api/purchaseProducts/{@ProductId}/{@PurchaseOrderId}/Quantity", x => new { x.ProductId, x.PurchaseOrderId });
|
||||||
|
AllowAnonymous();
|
||||||
|
}
|
||||||
|
|
||||||
|
public override async Task HandleAsync(PatchPurchaseProductQuantityDto req, CancellationToken ct)
|
||||||
|
{
|
||||||
|
var purchaseProduct = await database.PurchaseProducts.SingleOrDefaultAsync(po => po.ProductId == req.ProductId && po.PurchaseOrderId == req.PurchaseOrderId, ct);
|
||||||
|
if (purchaseProduct == null)
|
||||||
|
{
|
||||||
|
await Send.NotFoundAsync(ct);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
purchaseProduct.Quantity = req.Quantity;
|
||||||
|
await database.SaveChangesAsync(ct);
|
||||||
|
|
||||||
|
GetPurchaseProductDto responseDto = new()
|
||||||
|
{
|
||||||
|
ProductId = purchaseProduct.ProductId,
|
||||||
|
PurchaseOrderId = purchaseProduct.PurchaseOrderId,
|
||||||
|
Quantity = purchaseProduct.Quantity
|
||||||
|
};
|
||||||
|
await Send.OkAsync(responseDto, ct);
|
||||||
|
}
|
||||||
|
}
|
41
PyroFetes/Endpoints/Quotation/DeleteQuotationEndpoint.cs
Normal file
41
PyroFetes/Endpoints/Quotation/DeleteQuotationEndpoint.cs
Normal file
@@ -0,0 +1,41 @@
|
|||||||
|
using FastEndpoints;
|
||||||
|
using Microsoft.EntityFrameworkCore;
|
||||||
|
|
||||||
|
namespace PyroFetes.Endpoints.Quotation;
|
||||||
|
|
||||||
|
public class DeleteQuotationRequest
|
||||||
|
{
|
||||||
|
public int Id { get; set; }
|
||||||
|
}
|
||||||
|
|
||||||
|
public class DeleteQuotationEndpoint(PyroFetesDbContext database) : Endpoint<DeleteQuotationRequest>
|
||||||
|
{
|
||||||
|
public override void Configure()
|
||||||
|
{
|
||||||
|
Delete("/api/quotations/{@Id}", x => new {x.Id});
|
||||||
|
AllowAnonymous();
|
||||||
|
}
|
||||||
|
|
||||||
|
public override async Task HandleAsync(DeleteQuotationRequest req, CancellationToken ct)
|
||||||
|
{
|
||||||
|
var quotation = await database.Quotations
|
||||||
|
.Include(q => q.QuotationProducts)
|
||||||
|
.SingleOrDefaultAsync(q => q.Id == req.Id, ct);
|
||||||
|
|
||||||
|
if (quotation == null)
|
||||||
|
{
|
||||||
|
await Send.NotFoundAsync(ct);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (quotation.QuotationProducts != null && quotation.QuotationProducts.Any())
|
||||||
|
{
|
||||||
|
database.QuotationProducts.RemoveRange(quotation.QuotationProducts);
|
||||||
|
}
|
||||||
|
|
||||||
|
database.Quotations.Remove(quotation);
|
||||||
|
await database.SaveChangesAsync(ct);
|
||||||
|
|
||||||
|
await Send.NoContentAsync(ct);
|
||||||
|
}
|
||||||
|
}
|
48
PyroFetes/Endpoints/Quotation/GetAllQuotationEndpoint.cs
Normal file
48
PyroFetes/Endpoints/Quotation/GetAllQuotationEndpoint.cs
Normal file
@@ -0,0 +1,48 @@
|
|||||||
|
using FastEndpoints;
|
||||||
|
using Microsoft.EntityFrameworkCore;
|
||||||
|
using PyroFetes.DTO.Quotation.Response;
|
||||||
|
using PyroFetes.DTO.QuotationProduct.Response;
|
||||||
|
|
||||||
|
namespace PyroFetes.Endpoints.Quotation;
|
||||||
|
|
||||||
|
public class GetAllQuotationEndpoint(PyroFetesDbContext database) : EndpointWithoutRequest<List<GetQuotationDto>>
|
||||||
|
{
|
||||||
|
public override void Configure()
|
||||||
|
{
|
||||||
|
Get("/api/quotations");
|
||||||
|
}
|
||||||
|
|
||||||
|
public override async Task HandleAsync(CancellationToken ct)
|
||||||
|
{
|
||||||
|
var quotations = await database.Quotations
|
||||||
|
.Include(q => q.QuotationProducts!)
|
||||||
|
.ThenInclude(qp => qp.Product)
|
||||||
|
.Select(q => new GetQuotationDto
|
||||||
|
{
|
||||||
|
Id = q.Id,
|
||||||
|
Message = q.Message,
|
||||||
|
ConditionsSale = q.ConditionsSale,
|
||||||
|
GetQuotationProductDto = q.QuotationProducts.Select(qp => new GetQuotationProductDto
|
||||||
|
{
|
||||||
|
Quantity = qp.Quantity,
|
||||||
|
QuotationId = q.Id,
|
||||||
|
QuotationMessage = q.Message,
|
||||||
|
QuotationConditionsSale = q.ConditionsSale,
|
||||||
|
ProductId = qp.ProductId,
|
||||||
|
ProductReferences = qp.Product.Reference,
|
||||||
|
ProductName = qp.Product.Name,
|
||||||
|
ProductDuration = qp.Product.Duration,
|
||||||
|
ProductCaliber = qp.Product.Caliber,
|
||||||
|
ProductApprovalNumber = qp.Product.ApprovalNumber,
|
||||||
|
ProductWeight = qp.Product.Weight,
|
||||||
|
ProductNec = qp.Product.Nec,
|
||||||
|
ProductImage = qp.Product.Image,
|
||||||
|
ProductLink = qp.Product.Link,
|
||||||
|
ProductMinimalQuantity = qp.Product.MinimalQuantity,
|
||||||
|
}).ToList()
|
||||||
|
})
|
||||||
|
.ToListAsync(ct);
|
||||||
|
|
||||||
|
await Send.OkAsync(quotations, ct);
|
||||||
|
}
|
||||||
|
}
|
59
PyroFetes/Endpoints/Quotation/GetQuotationEndpoint.cs
Normal file
59
PyroFetes/Endpoints/Quotation/GetQuotationEndpoint.cs
Normal file
@@ -0,0 +1,59 @@
|
|||||||
|
using FastEndpoints;
|
||||||
|
using Microsoft.EntityFrameworkCore;
|
||||||
|
using PyroFetes.DTO.Quotation.Response;
|
||||||
|
using PyroFetes.DTO.QuotationProduct.Response;
|
||||||
|
|
||||||
|
namespace PyroFetes.Endpoints.Quotation;
|
||||||
|
|
||||||
|
public class GetQuotationRequest
|
||||||
|
{
|
||||||
|
public int Id { get; set; }
|
||||||
|
}
|
||||||
|
|
||||||
|
public class GetQuotationEndpoint(PyroFetesDbContext database) : Endpoint<GetQuotationRequest, GetQuotationDto>
|
||||||
|
{
|
||||||
|
public override void Configure()
|
||||||
|
{
|
||||||
|
Get("/api/quotations/{@Id}", x => new {x.Id});
|
||||||
|
}
|
||||||
|
|
||||||
|
public override async Task HandleAsync(GetQuotationRequest req, CancellationToken ct)
|
||||||
|
{
|
||||||
|
var quotation = await database.Quotations
|
||||||
|
.SingleOrDefaultAsync(x => x.Id == req.Id, ct);
|
||||||
|
|
||||||
|
if (quotation == null)
|
||||||
|
{
|
||||||
|
await Send.NotFoundAsync(ct);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
GetQuotationDto responseDto = new()
|
||||||
|
{
|
||||||
|
Id = quotation.Id,
|
||||||
|
Message = quotation.Message,
|
||||||
|
ConditionsSale = quotation.ConditionsSale,
|
||||||
|
GetQuotationProductDto = quotation.QuotationProducts
|
||||||
|
.Select(qp => new GetQuotationProductDto
|
||||||
|
{
|
||||||
|
Quantity = qp.Quantity,
|
||||||
|
QuotationId = quotation.Id,
|
||||||
|
QuotationMessage = quotation.Message,
|
||||||
|
QuotationConditionsSale = quotation.ConditionsSale,
|
||||||
|
ProductId = qp.ProductId,
|
||||||
|
ProductReferences = qp.Product.Reference,
|
||||||
|
ProductName = qp.Product.Name,
|
||||||
|
ProductDuration = qp.Product.Duration,
|
||||||
|
ProductCaliber = qp.Product.Caliber,
|
||||||
|
ProductApprovalNumber = qp.Product.ApprovalNumber,
|
||||||
|
ProductWeight = qp.Product.Weight,
|
||||||
|
ProductNec = qp.Product.Nec,
|
||||||
|
ProductImage = qp.Product.Image,
|
||||||
|
ProductLink = qp.Product.Link,
|
||||||
|
ProductMinimalQuantity = qp.Product.MinimalQuantity,
|
||||||
|
}).ToList()
|
||||||
|
};
|
||||||
|
|
||||||
|
await Send.OkAsync(responseDto, ct);
|
||||||
|
}
|
||||||
|
}
|
@@ -0,0 +1,58 @@
|
|||||||
|
using FastEndpoints;
|
||||||
|
using Microsoft.EntityFrameworkCore;
|
||||||
|
using PyroFetes.DTO.PurchaseOrder.Request;
|
||||||
|
using PyroFetes.DTO.PurchaseOrder.Response;
|
||||||
|
using PyroFetes.DTO.PurchaseProduct.Response;
|
||||||
|
using PyroFetes.DTO.Quotation.Request;
|
||||||
|
using PyroFetes.DTO.Quotation.Response;
|
||||||
|
using PyroFetes.DTO.QuotationProduct.Response;
|
||||||
|
|
||||||
|
namespace PyroFetes.Endpoints.Quotation;
|
||||||
|
|
||||||
|
public class PatchQuotationConditionsSaleEndpoint(PyroFetesDbContext database) : Endpoint<PatchQuotationConditionsSaleDto, GetQuotationDto>
|
||||||
|
{
|
||||||
|
public override void Configure()
|
||||||
|
{
|
||||||
|
Patch("/api/quotations/{@Id}/ConditionsSale", x => new { x.Id });
|
||||||
|
AllowAnonymous();
|
||||||
|
}
|
||||||
|
|
||||||
|
public override async Task HandleAsync(PatchQuotationConditionsSaleDto req, CancellationToken ct)
|
||||||
|
{
|
||||||
|
var quotation = await database.Quotations.SingleOrDefaultAsync(x => x.Id == req.Id, ct);
|
||||||
|
if (quotation == null)
|
||||||
|
{
|
||||||
|
await Send.NotFoundAsync(ct);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
quotation.ConditionsSale = req.ConditionsSale;
|
||||||
|
await database.SaveChangesAsync(ct);
|
||||||
|
|
||||||
|
GetQuotationDto responseDto = new()
|
||||||
|
{
|
||||||
|
Id = quotation.Id,
|
||||||
|
Message = quotation.Message,
|
||||||
|
ConditionsSale = quotation.ConditionsSale,
|
||||||
|
GetQuotationProductDto = quotation.QuotationProducts.Select(qp => new GetQuotationProductDto
|
||||||
|
{
|
||||||
|
Quantity = qp.Quantity,
|
||||||
|
QuotationId = quotation.Id,
|
||||||
|
QuotationMessage = quotation.Message,
|
||||||
|
QuotationConditionsSale = quotation.ConditionsSale,
|
||||||
|
ProductId = qp.ProductId,
|
||||||
|
ProductReferences = qp.Product.Reference,
|
||||||
|
ProductName = qp.Product.Name,
|
||||||
|
ProductDuration = qp.Product.Duration,
|
||||||
|
ProductCaliber = qp.Product.Caliber,
|
||||||
|
ProductApprovalNumber = qp.Product.ApprovalNumber,
|
||||||
|
ProductWeight = qp.Product.Weight,
|
||||||
|
ProductNec = qp.Product.Nec,
|
||||||
|
ProductImage = qp.Product.Image,
|
||||||
|
ProductLink = qp.Product.Link,
|
||||||
|
ProductMinimalQuantity = qp.Product.MinimalQuantity,
|
||||||
|
}).ToList()
|
||||||
|
};
|
||||||
|
await Send.OkAsync(responseDto, ct);
|
||||||
|
}
|
||||||
|
}
|
@@ -0,0 +1,68 @@
|
|||||||
|
using FastEndpoints;
|
||||||
|
using Microsoft.EntityFrameworkCore;
|
||||||
|
using PyroFetes.DTO.QuotationProduct.Request;
|
||||||
|
using PyroFetes.DTO.QuotationProduct.Response;
|
||||||
|
|
||||||
|
namespace PyroFetes.Endpoints.QuotationProduct;
|
||||||
|
|
||||||
|
public class CreateQuotationProductEndpoint(PyroFetesDbContext database) : Endpoint<CreateQuotationProductDto, GetQuotationProductDto>
|
||||||
|
{
|
||||||
|
public override void Configure()
|
||||||
|
{
|
||||||
|
Post("/api/quotationProduct");
|
||||||
|
AllowAnonymous();
|
||||||
|
}
|
||||||
|
|
||||||
|
public override async Task HandleAsync(CreateQuotationProductDto req, CancellationToken ct)
|
||||||
|
{
|
||||||
|
var product = await database.Products.FirstOrDefaultAsync(p => p.Id == req.ProductId, ct);
|
||||||
|
if (product == null)
|
||||||
|
{
|
||||||
|
await Send.NotFoundAsync(ct);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
var quotation = await database.Quotations.FirstOrDefaultAsync(q => q.Id == req.QuotationId, ct);
|
||||||
|
|
||||||
|
if (quotation == null)
|
||||||
|
{
|
||||||
|
quotation = new Models.Quotation()
|
||||||
|
{
|
||||||
|
Message = req.QuotationMessage ?? "",
|
||||||
|
ConditionsSale = req.QuotationConditionsSale,
|
||||||
|
};
|
||||||
|
database.Quotations.Add(quotation);
|
||||||
|
await database.SaveChangesAsync(ct);
|
||||||
|
}
|
||||||
|
|
||||||
|
var quotationProduct = new Models.QuotationProduct()
|
||||||
|
{
|
||||||
|
ProductId = product.Id,
|
||||||
|
QuotationId = quotation.Id,
|
||||||
|
Quantity = req.Quantity
|
||||||
|
};
|
||||||
|
database.QuotationProducts.Add(quotationProduct);
|
||||||
|
await database.SaveChangesAsync(ct);
|
||||||
|
|
||||||
|
var responseDto = new GetQuotationProductDto()
|
||||||
|
{
|
||||||
|
ProductId = product.Id,
|
||||||
|
ProductReferences = product.Reference,
|
||||||
|
ProductName = product.Name,
|
||||||
|
ProductDuration = product.Duration,
|
||||||
|
ProductCaliber = product.Caliber,
|
||||||
|
ProductApprovalNumber = product.ApprovalNumber,
|
||||||
|
ProductWeight = product.Weight,
|
||||||
|
ProductNec = product.Nec,
|
||||||
|
ProductImage = product.Image,
|
||||||
|
ProductLink = product.Link,
|
||||||
|
ProductMinimalQuantity = product.MinimalQuantity,
|
||||||
|
Quantity = quotationProduct.Quantity,
|
||||||
|
QuotationMessage = quotation.Message,
|
||||||
|
QuotationConditionsSale = quotation.ConditionsSale,
|
||||||
|
QuotationId = quotation.Id,
|
||||||
|
};
|
||||||
|
|
||||||
|
await Send.OkAsync(responseDto, ct);
|
||||||
|
}
|
||||||
|
}
|
@@ -0,0 +1,36 @@
|
|||||||
|
using FastEndpoints;
|
||||||
|
using Microsoft.EntityFrameworkCore;
|
||||||
|
|
||||||
|
namespace PyroFetes.Endpoints.QuotationProduct;
|
||||||
|
|
||||||
|
public class DeleteQuotationProductRequest
|
||||||
|
{
|
||||||
|
public int ProductId { get; set; }
|
||||||
|
public int QuotationId { get; set; }
|
||||||
|
}
|
||||||
|
|
||||||
|
public class DeleteQuotationProductEndpoint(PyroFetesDbContext database) : Endpoint<DeleteQuotationProductRequest>
|
||||||
|
{
|
||||||
|
public override void Configure()
|
||||||
|
{
|
||||||
|
Delete("/api/quotationProduct/{@ProductId}/{@QuotationId}", x => new {x.ProductId, x.QuotationId});
|
||||||
|
AllowAnonymous();
|
||||||
|
}
|
||||||
|
|
||||||
|
public override async Task HandleAsync(DeleteQuotationProductRequest req, CancellationToken ct)
|
||||||
|
{
|
||||||
|
var quotationProduct = await database.QuotationProducts
|
||||||
|
.SingleOrDefaultAsync(qo => qo.ProductId == req.ProductId && qo.QuotationId == req.QuotationId, ct);
|
||||||
|
|
||||||
|
if (quotationProduct == null)
|
||||||
|
{
|
||||||
|
await Send.NotFoundAsync(ct);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
database.QuotationProducts.Remove(quotationProduct);
|
||||||
|
await database.SaveChangesAsync(ct);
|
||||||
|
|
||||||
|
await Send.NoContentAsync(ct);
|
||||||
|
}
|
||||||
|
}
|
@@ -0,0 +1,36 @@
|
|||||||
|
using FastEndpoints;
|
||||||
|
using Microsoft.EntityFrameworkCore;
|
||||||
|
using PyroFetes.DTO.QuotationProduct.Request;
|
||||||
|
using PyroFetes.DTO.QuotationProduct.Response;
|
||||||
|
|
||||||
|
namespace PyroFetes.Endpoints.QuotationProduct;
|
||||||
|
|
||||||
|
public class PatchQuotationProductQuantityEndpoint(PyroFetesDbContext database) : Endpoint<PatchQuotationProductQuantityDto, GetQuotationProductDto>
|
||||||
|
{
|
||||||
|
public override void Configure()
|
||||||
|
{
|
||||||
|
Patch("/api/quotationProduct/{@ProductId}/{@QuotationId}/Quantity", x => new { x.ProductId, x.QuotationId });
|
||||||
|
AllowAnonymous();
|
||||||
|
}
|
||||||
|
|
||||||
|
public override async Task HandleAsync(PatchQuotationProductQuantityDto req, CancellationToken ct)
|
||||||
|
{
|
||||||
|
var quotationProduct = await database.QuotationProducts.SingleOrDefaultAsync(qo => qo.ProductId == req.ProductId && qo.QuotationId == req.QuotationId, ct);
|
||||||
|
if (quotationProduct == null)
|
||||||
|
{
|
||||||
|
await Send.NotFoundAsync(ct);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
quotationProduct.Quantity = req.Quantity;
|
||||||
|
await database.SaveChangesAsync(ct);
|
||||||
|
|
||||||
|
GetQuotationProductDto responseDto = new()
|
||||||
|
{
|
||||||
|
ProductId = quotationProduct.ProductId,
|
||||||
|
QuotationId = quotationProduct.QuotationId,
|
||||||
|
Quantity = quotationProduct.Quantity
|
||||||
|
};
|
||||||
|
await Send.OkAsync(responseDto, ct);
|
||||||
|
}
|
||||||
|
}
|
32
PyroFetes/Endpoints/Setting/CreateSettingEndpoint.cs
Normal file
32
PyroFetes/Endpoints/Setting/CreateSettingEndpoint.cs
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
using PyroFetes.DTO.SettingDTO.Request;
|
||||||
|
using PyroFetes.DTO.SettingDTO.Response;
|
||||||
|
using FastEndpoints;
|
||||||
|
namespace PyroFetes.Endpoints.Setting;
|
||||||
|
|
||||||
|
public class CreateSettingEndpoint(PyroFetesDbContext database) : Endpoint<CreateSettingDto, GetSettingDto>
|
||||||
|
{
|
||||||
|
public override void Configure()
|
||||||
|
{
|
||||||
|
Post("/api/setting");
|
||||||
|
}
|
||||||
|
|
||||||
|
public override async Task HandleAsync(CreateSettingDto req, CancellationToken ct)
|
||||||
|
{
|
||||||
|
var setting = new Models.Setting()
|
||||||
|
{
|
||||||
|
ElectronicSignature = req.ElectronicSignature,
|
||||||
|
Logo = req.Logo
|
||||||
|
};
|
||||||
|
|
||||||
|
database.Settings.Add(setting);
|
||||||
|
await database.SaveChangesAsync(ct);
|
||||||
|
|
||||||
|
GetSettingDto responseDto = new()
|
||||||
|
{
|
||||||
|
Id = setting.Id,
|
||||||
|
ElectronicSignature = setting.ElectronicSignature,
|
||||||
|
Logo = setting.Logo
|
||||||
|
};
|
||||||
|
await Send.OkAsync(responseDto, ct);
|
||||||
|
}
|
||||||
|
}
|
33
PyroFetes/Endpoints/Setting/DeleteSettingEndpoint.cs
Normal file
33
PyroFetes/Endpoints/Setting/DeleteSettingEndpoint.cs
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
using FastEndpoints;
|
||||||
|
using Microsoft.EntityFrameworkCore;
|
||||||
|
|
||||||
|
namespace PyroFetes.Endpoints.Setting;
|
||||||
|
|
||||||
|
public class DeleteSettingRequest
|
||||||
|
{
|
||||||
|
public int Id { get; set; }
|
||||||
|
}
|
||||||
|
|
||||||
|
public class DeleteSettingEndpoint(PyroFetesDbContext database) : Endpoint<DeleteSettingRequest>
|
||||||
|
{
|
||||||
|
public override void Configure()
|
||||||
|
{
|
||||||
|
Delete("/api/setting/{@Id}", x => new {x.Id});
|
||||||
|
}
|
||||||
|
|
||||||
|
public override async Task HandleAsync(DeleteSettingRequest req, CancellationToken ct)
|
||||||
|
{
|
||||||
|
var setting = await database.Settings.SingleOrDefaultAsync(x => x.Id == req.Id, ct);
|
||||||
|
|
||||||
|
if (setting == null)
|
||||||
|
{
|
||||||
|
await Send.NotFoundAsync(ct);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
database.Settings.Remove(setting);
|
||||||
|
await database.SaveChangesAsync(ct);
|
||||||
|
|
||||||
|
await Send.NoContentAsync(ct);
|
||||||
|
}
|
||||||
|
}
|
38
PyroFetes/Endpoints/Setting/GetSettingEndpoint.cs
Normal file
38
PyroFetes/Endpoints/Setting/GetSettingEndpoint.cs
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
using FastEndpoints;
|
||||||
|
using Microsoft.EntityFrameworkCore;
|
||||||
|
using PyroFetes.DTO.SettingDTO.Response;
|
||||||
|
|
||||||
|
namespace PyroFetes.Endpoints.Setting;
|
||||||
|
|
||||||
|
public class GetSettingRequest
|
||||||
|
{
|
||||||
|
public int Id { get; set; }
|
||||||
|
}
|
||||||
|
|
||||||
|
public class GetSettingEndpoint(PyroFetesDbContext database) : Endpoint<GetSettingRequest, GetSettingDto>
|
||||||
|
{
|
||||||
|
public override void Configure()
|
||||||
|
{
|
||||||
|
Get("/api/setting/{@Id}", x => new {x.Id});
|
||||||
|
}
|
||||||
|
|
||||||
|
public override async Task HandleAsync(GetSettingRequest req, CancellationToken ct)
|
||||||
|
{
|
||||||
|
var setting = await database.Settings
|
||||||
|
.SingleOrDefaultAsync(x => x.Id == req.Id, ct);
|
||||||
|
|
||||||
|
if (setting == null)
|
||||||
|
{
|
||||||
|
await Send.NotFoundAsync(ct);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
GetSettingDto responseDto = new()
|
||||||
|
{
|
||||||
|
Id = setting.Id,
|
||||||
|
ElectronicSignature = setting.ElectronicSignature,
|
||||||
|
Logo = setting.Logo
|
||||||
|
};
|
||||||
|
await Send.OkAsync(responseDto, ct);
|
||||||
|
}
|
||||||
|
}
|
@@ -0,0 +1,37 @@
|
|||||||
|
using FastEndpoints;
|
||||||
|
using Microsoft.EntityFrameworkCore;
|
||||||
|
using PyroFetes.DTO.SettingDTO.Request;
|
||||||
|
using PyroFetes.DTO.SettingDTO.Response;
|
||||||
|
|
||||||
|
namespace PyroFetes.Endpoints.Setting;
|
||||||
|
|
||||||
|
public class PatchSettingElectronicSignatureEndpoint(PyroFetesDbContext database) : Endpoint<PatchSettingElectronicSignatureDto, GetSettingDto>
|
||||||
|
{
|
||||||
|
public override void Configure()
|
||||||
|
{
|
||||||
|
Get("/api/setting/{@Id}/ElectronicSignature", x => new {x.Id});
|
||||||
|
}
|
||||||
|
|
||||||
|
public override async Task HandleAsync(PatchSettingElectronicSignatureDto req, CancellationToken ct)
|
||||||
|
{
|
||||||
|
var setting = await database.Settings.SingleOrDefaultAsync(x => x.Id == req.Id, ct);
|
||||||
|
|
||||||
|
if (setting == null)
|
||||||
|
{
|
||||||
|
await Send.NotFoundAsync(ct);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
setting.ElectronicSignature = req.ElectronicSignature;
|
||||||
|
await database.SaveChangesAsync(ct);
|
||||||
|
|
||||||
|
GetSettingDto responseDto = new()
|
||||||
|
{
|
||||||
|
Id = setting.Id,
|
||||||
|
ElectronicSignature = setting.ElectronicSignature,
|
||||||
|
Logo = setting.Logo
|
||||||
|
};
|
||||||
|
|
||||||
|
await Send.OkAsync(responseDto, ct);
|
||||||
|
}
|
||||||
|
}
|
37
PyroFetes/Endpoints/Setting/PatchSettingLogoEndpoint.cs
Normal file
37
PyroFetes/Endpoints/Setting/PatchSettingLogoEndpoint.cs
Normal file
@@ -0,0 +1,37 @@
|
|||||||
|
using FastEndpoints;
|
||||||
|
using Microsoft.EntityFrameworkCore;
|
||||||
|
using PyroFetes.DTO.SettingDTO.Request;
|
||||||
|
using PyroFetes.DTO.SettingDTO.Response;
|
||||||
|
|
||||||
|
namespace PyroFetes.Endpoints.Setting;
|
||||||
|
|
||||||
|
public class PatchSettingLogoEndpoint(PyroFetesDbContext database) : Endpoint<PatchSettingLogoDto, GetSettingDto>
|
||||||
|
{
|
||||||
|
public override void Configure()
|
||||||
|
{
|
||||||
|
Get("/api/setting/{@Id}/Logo", x => new {x.Id});
|
||||||
|
}
|
||||||
|
|
||||||
|
public override async Task HandleAsync(PatchSettingLogoDto req, CancellationToken ct)
|
||||||
|
{
|
||||||
|
var setting = await database.Settings.SingleOrDefaultAsync(x => x.Id == req.Id, ct);
|
||||||
|
|
||||||
|
if (setting == null)
|
||||||
|
{
|
||||||
|
await Send.NotFoundAsync(ct);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
setting.Logo = req.Logo;
|
||||||
|
await database.SaveChangesAsync(ct);
|
||||||
|
|
||||||
|
GetSettingDto responseDto = new()
|
||||||
|
{
|
||||||
|
Id = setting.Id,
|
||||||
|
ElectronicSignature = setting.ElectronicSignature,
|
||||||
|
Logo = setting.Logo
|
||||||
|
};
|
||||||
|
|
||||||
|
await Send.OkAsync(responseDto, ct);
|
||||||
|
}
|
||||||
|
}
|
@@ -0,0 +1,42 @@
|
|||||||
|
using FastEndpoints;
|
||||||
|
using Microsoft.EntityFrameworkCore;
|
||||||
|
using PyroFetes.DTO.WareHouseProduct.Response;
|
||||||
|
|
||||||
|
namespace PyroFetes.Endpoints.WareHouseProduct;
|
||||||
|
|
||||||
|
public class GetTotalQuantityRequest
|
||||||
|
{
|
||||||
|
public int ProductId { get; set; }
|
||||||
|
}
|
||||||
|
|
||||||
|
public class GetTotalQuantityEndpoint(PyroFetesDbContext database) : Endpoint<GetTotalQuantityRequest, GetTotalQuantityDto>
|
||||||
|
{
|
||||||
|
public override void Configure()
|
||||||
|
{
|
||||||
|
Get("/api/wareHouseProduct/{@ProductId}", x => new { x.ProductId });
|
||||||
|
AllowAnonymous();
|
||||||
|
}
|
||||||
|
|
||||||
|
public override async Task HandleAsync(GetTotalQuantityRequest req, CancellationToken ct)
|
||||||
|
{
|
||||||
|
var exists = await database.WarehouseProducts
|
||||||
|
.AnyAsync(wp => wp.ProductId == req.ProductId, ct);
|
||||||
|
|
||||||
|
if (!exists)
|
||||||
|
{
|
||||||
|
await Send.NotFoundAsync(ct);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
var totalQuantity = await database.WarehouseProducts
|
||||||
|
.Where(wp => wp.ProductId == req.ProductId)
|
||||||
|
.SumAsync(wp => wp.Quantity, ct);
|
||||||
|
|
||||||
|
GetTotalQuantityDto responseDto = new()
|
||||||
|
{
|
||||||
|
ProductId = req.ProductId,
|
||||||
|
TotalQuantity = totalQuantity
|
||||||
|
};
|
||||||
|
await Send.OkAsync(responseDto, ct);
|
||||||
|
}
|
||||||
|
}
|
@@ -0,0 +1,38 @@
|
|||||||
|
using FastEndpoints;
|
||||||
|
using Microsoft.EntityFrameworkCore;
|
||||||
|
using PyroFetes.DTO.QuotationProduct.Request;
|
||||||
|
using PyroFetes.DTO.QuotationProduct.Response;
|
||||||
|
using PyroFetes.DTO.WareHouseProduct.Request;
|
||||||
|
using PyroFetes.DTO.WareHouseProduct.Response;
|
||||||
|
|
||||||
|
namespace PyroFetes.Endpoints.WareHouseProduct;
|
||||||
|
|
||||||
|
public class PatchWareHouseProductQuantityEndpoint(PyroFetesDbContext database) : Endpoint<PatchWareHouseProductQuantityDto, GetWareHouseProductDto>
|
||||||
|
{
|
||||||
|
public override void Configure()
|
||||||
|
{
|
||||||
|
Patch("/api/wareHouseProduct/{@ProductId}/{@WareHouseId}/Quantity", x => new { x.ProductId, x.WareHouseId });
|
||||||
|
AllowAnonymous();
|
||||||
|
}
|
||||||
|
|
||||||
|
public override async Task HandleAsync(PatchWareHouseProductQuantityDto req, CancellationToken ct)
|
||||||
|
{
|
||||||
|
var wareHouseProduct = await database.WarehouseProducts.SingleOrDefaultAsync(wp => wp.ProductId == req.ProductId && wp.WarehouseId == req.WareHouseId, ct);
|
||||||
|
if (wareHouseProduct == null)
|
||||||
|
{
|
||||||
|
await Send.NotFoundAsync(ct);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
wareHouseProduct.Quantity = req.Quantity;
|
||||||
|
await database.SaveChangesAsync(ct);
|
||||||
|
|
||||||
|
GetWareHouseProductDto responseDto = new()
|
||||||
|
{
|
||||||
|
ProductId = wareHouseProduct.ProductId,
|
||||||
|
WareHouseId = wareHouseProduct.WarehouseId,
|
||||||
|
Quantity = wareHouseProduct.Quantity
|
||||||
|
};
|
||||||
|
await Send.OkAsync(responseDto, ct);
|
||||||
|
}
|
||||||
|
}
|
@@ -1,18 +1,26 @@
|
|||||||
var builder = WebApplication.CreateBuilder(args);
|
using PyroFetes;
|
||||||
|
using FastEndpoints;
|
||||||
|
using FastEndpoints.Swagger;
|
||||||
|
using FastEndpoints.Security;
|
||||||
|
|
||||||
// Add services to the container.
|
WebApplicationBuilder builder = WebApplication.CreateBuilder(args);
|
||||||
// Learn more about configuring Swagger/OpenAPI at https://aka.ms/aspnetcore/swashbuckle
|
|
||||||
builder.Services.AddEndpointsApiExplorer();
|
|
||||||
builder.Services.AddSwaggerGen();
|
|
||||||
|
|
||||||
var app = builder.Build();
|
// On ajoute ici FastEndpoints, un framework REPR et Swagger aux services disponibles dans le projet
|
||||||
|
builder.Services
|
||||||
|
.AddAuthenticationJwtBearer(s => s.SigningKey = "ThisIsASuperSecretJwtKeyThatIsAtLeast32CharsLong")
|
||||||
|
.AddAuthorization()
|
||||||
|
.AddFastEndpoints()
|
||||||
|
.SwaggerDocument();
|
||||||
|
|
||||||
// Configure the HTTP request pipeline.
|
// On ajoute ici la configuration de la base de données
|
||||||
if (app.Environment.IsDevelopment())
|
builder.Services.AddDbContext<PyroFetesDbContext>();
|
||||||
{
|
|
||||||
app.UseSwagger();
|
// On construit l'application en lui donnant vie
|
||||||
app.UseSwaggerUI();
|
WebApplication app = builder.Build();
|
||||||
}
|
app.UseAuthentication()
|
||||||
|
.UseAuthorization()
|
||||||
|
.UseFastEndpoints()
|
||||||
|
.UseSwaggerGen();
|
||||||
|
|
||||||
app.UseHttpsRedirection();
|
app.UseHttpsRedirection();
|
||||||
|
|
||||||
|
@@ -7,6 +7,10 @@
|
|||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
<PackageReference Include="BCrypt.Net-Next" Version="4.0.3" />
|
||||||
|
<PackageReference Include="FastEndpoints" Version="7.0.1" />
|
||||||
|
<PackageReference Include="FastEndpoints.Security" Version="7.0.1" />
|
||||||
|
<PackageReference Include="FastEndpoints.Swagger" Version="7.0.1" />
|
||||||
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="8.0.19"/>
|
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="8.0.19"/>
|
||||||
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.20" />
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.20" />
|
||||||
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.20">
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.20">
|
||||||
|
Reference in New Issue
Block a user