fix(CheckUserFirstDiscountUser)
-Add new command for CheckUserFirstDiscountUser -Fix CheckUserFirstDiscountUsersubProduct
parent
5edd394252
commit
4ff7601843
|
@ -6,8 +6,8 @@
|
|||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<InvariantGlobalization>true</InvariantGlobalization>
|
||||
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
|
||||
<AssemblyVersion>1.0.5.6</AssemblyVersion>
|
||||
<FileVersion>1.0.5.6</FileVersion>
|
||||
<AssemblyVersion>1.0.6.7</AssemblyVersion>
|
||||
<FileVersion>1.0.6.7</FileVersion>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
|
|
|
@ -21,29 +21,20 @@ public class CalculateOrderDiscountCommandHandler : IRequestHandler<CalculateOrd
|
|||
|
||||
if (discount == null)
|
||||
throw new AppException("تخفیف وجود منقضی شده است یا وجود ندارد", ApiResultStatusCode.NotFound);
|
||||
|
||||
if (_currentUserService.UserId != null && Guid.TryParse(_currentUserService.UserId, out Guid userId))
|
||||
{
|
||||
var customer = await _repositoryWrapper.SetRepository<Customer>()
|
||||
.TableNoTracking
|
||||
.FirstOrDefaultAsync(c => c.UserId == userId, cancellationToken);
|
||||
if (customer == null)
|
||||
throw new BaseApiException(ApiResultStatusCode.NotFound, "Customer not found");
|
||||
|
||||
var discountedUserOrder = await _repositoryWrapper.SetRepository<Order>()
|
||||
.TableNoTracking
|
||||
.FirstOrDefaultAsync(f => f.CustomerId == customer.Id && f.DiscountCode == discount.Code, cancellationToken);
|
||||
if (discountedUserOrder != null)
|
||||
throw new AppException("شما یک بار از این کد تخفیف استفاده کرده اید", ApiResultStatusCode.BadRequest);
|
||||
}
|
||||
|
||||
|
||||
if (discount.IsForFirstPurchase)
|
||||
{
|
||||
if (_currentUserService.UserId != null && Guid.TryParse(_currentUserService.UserId, out Guid firstPurchaseUserId))
|
||||
{
|
||||
var customer = await _repositoryWrapper.SetRepository<Customer>()
|
||||
.TableNoTracking
|
||||
.FirstOrDefaultAsync(c => c.UserId == firstPurchaseUserId, cancellationToken);
|
||||
if (customer == null)
|
||||
throw new BaseApiException(ApiResultStatusCode.NotFound, "Customer not found");
|
||||
var userOrderCount = await _repositoryWrapper.SetRepository<Order>()
|
||||
.TableNoTracking
|
||||
.CountAsync(f => f.CustomerId == firstPurchaseUserId && f.DiscountCode == discount.Code, cancellationToken);
|
||||
.CountAsync(f => f.CustomerId == customer.Id && f.DiscountCode == discount.Code, cancellationToken);
|
||||
if (userOrderCount > 0)
|
||||
throw new AppException("شما قبلا خریدی داشته اید و نمیتوانید از تخفیف اولین خرید استفاده کنید", ApiResultStatusCode.BadRequest);
|
||||
}
|
||||
|
|
|
@ -0,0 +1,36 @@
|
|||
namespace Netina.Core.EntityServices.DiscountHandlers;
|
||||
|
||||
public class CheckUserDiscountFirstUseCommandHandler : IRequestHandler<CheckUserDiscountFirstUseCommand, bool>
|
||||
{
|
||||
private readonly IRepositoryWrapper _repositoryWrapper;
|
||||
private readonly ICurrentUserService _currentUserService;
|
||||
|
||||
public CheckUserDiscountFirstUseCommandHandler(IRepositoryWrapper repositoryWrapper, ICurrentUserService currentUserService)
|
||||
{
|
||||
_repositoryWrapper = repositoryWrapper;
|
||||
_currentUserService = currentUserService;
|
||||
}
|
||||
|
||||
public async Task<bool> Handle(CheckUserDiscountFirstUseCommand request, CancellationToken cancellationToken)
|
||||
{
|
||||
|
||||
if (_currentUserService.UserId != null && Guid.TryParse(_currentUserService.UserId, out Guid userId))
|
||||
{
|
||||
var customer = await _repositoryWrapper.SetRepository<Customer>()
|
||||
.TableNoTracking
|
||||
.FirstOrDefaultAsync(c => c.UserId == userId, cancellationToken);
|
||||
if (customer == null)
|
||||
throw new BaseApiException(ApiResultStatusCode.NotFound, "Customer not found");
|
||||
|
||||
var discountedUserOrder = await _repositoryWrapper.SetRepository<Order>()
|
||||
.TableNoTracking
|
||||
.FirstOrDefaultAsync(f => f.CustomerId == customer.Id && f.DiscountCode == request.DiscountCode,
|
||||
cancellationToken);
|
||||
if (discountedUserOrder != null)
|
||||
return true;
|
||||
return false;
|
||||
}
|
||||
else
|
||||
throw new BaseApiException(ApiResultStatusCode.BadRequest,"UserId is wrong");
|
||||
}
|
||||
}
|
|
@ -20,12 +20,17 @@ public class SubmitDiscountActionCommandHandler : IRequestHandler<SubmitDiscount
|
|||
|
||||
if (request.DiscountCode != null)
|
||||
{
|
||||
|
||||
var discount = await _repositoryWrapper.SetRepository<Discount>()
|
||||
.TableNoTracking
|
||||
.FirstOrDefaultAsync(d => d.Code == request.DiscountCode, cancellationToken);
|
||||
if (discount == null || discount.IsExpired())
|
||||
throw new AppException("تخفیف منقضی شده است یا وجود ندارد", ApiResultStatusCode.NotFound);
|
||||
|
||||
var isFirstUserOfDiscount = await _mediator.Send(new CheckUserDiscountFirstUseCommand(request.DiscountCode), cancellationToken);
|
||||
|
||||
if (!isFirstUserOfDiscount)
|
||||
throw new BaseApiException(ApiResultStatusCode.BadRequest, "شما یک بار از این کد تخفیف استفاده نموده اید و قابلیت استفاده مجدد ندارید");
|
||||
|
||||
order.SetDiscount(request.DiscountCode);
|
||||
}
|
||||
else
|
||||
|
|
|
@ -51,4 +51,5 @@ public sealed record UpdateDiscountCommand(
|
|||
|
||||
public sealed record DeleteDiscountCommand(Guid Id) : IRequest<bool>;
|
||||
|
||||
public sealed record CalculateOrderDiscountCommand(string DiscountCode, Order Order) : IRequest<double>;
|
||||
public sealed record CalculateOrderDiscountCommand(string DiscountCode, Order Order) : IRequest<double>;
|
||||
public sealed record CheckUserDiscountFirstUseCommand(string DiscountCode) : IRequest<bool>;
|
Loading…
Reference in New Issue