38 lines
1.3 KiB
C#
38 lines
1.3 KiB
C#
using Indotalent.Infrastructure.Database;
|
|
using MediatR;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace Indotalent.Features.Inventory.PositiveAdjustment.Cqrs;
|
|
|
|
public class UpdatePositiveAdjustmentItemRequest
|
|
{
|
|
public string? Id { get; set; }
|
|
public string? ProductId { get; set; }
|
|
public string? WarehouseId { get; set; }
|
|
public double? Movement { get; set; }
|
|
}
|
|
|
|
public record UpdatePositiveAdjustmentItemCommand(UpdatePositiveAdjustmentItemRequest Data) : IRequest<bool>;
|
|
|
|
public class UpdatePositiveAdjustmentItemHandler : IRequestHandler<UpdatePositiveAdjustmentItemCommand, bool>
|
|
{
|
|
private readonly AppDbContext _context;
|
|
public UpdatePositiveAdjustmentItemHandler(AppDbContext context) => _context = context;
|
|
|
|
public async Task<bool> Handle(UpdatePositiveAdjustmentItemCommand request, CancellationToken cancellationToken)
|
|
{
|
|
var entity = await _context.InventoryTransaction
|
|
.FirstOrDefaultAsync(x => x.Id == request.Data.Id, cancellationToken);
|
|
|
|
if (entity == null) return false;
|
|
|
|
entity.ProductId = request.Data.ProductId;
|
|
entity.WarehouseId = request.Data.WarehouseId;
|
|
entity.Movement = request.Data.Movement;
|
|
|
|
_context.CalculateInvenTrans(entity);
|
|
await _context.SaveChangesAsync(cancellationToken);
|
|
|
|
return true;
|
|
}
|
|
} |