initial commit

This commit is contained in:
2026-07-21 14:14:44 +07:00
commit fa7dbb970d
1359 changed files with 104110 additions and 0 deletions
@@ -0,0 +1,75 @@
using Indotalent.Infrastructure.Database;
using MediatR;
using Microsoft.EntityFrameworkCore;
namespace Indotalent.Features.Inventory.NegativeAdjustment.Cqrs;
public class NegativeAdjustmentItemResponse
{
public string? Id { get; set; }
public string? ProductId { get; set; }
public string? ProductName { get; set; }
public string? WarehouseId { get; set; }
public string? WarehouseName { get; set; }
public double? Movement { get; set; }
}
public class GetNegativeAdjustmentByIdResponse
{
public string? Id { get; set; }
public string? AutoNumber { get; set; }
public DateTime? AdjustmentDate { get; set; }
public Data.Enums.AdjustmentStatus Status { get; set; }
public string? Description { get; set; }
public DateTimeOffset? CreatedAt { get; set; }
public string? CreatedBy { get; set; }
public DateTimeOffset? UpdatedAt { get; set; }
public string? UpdatedBy { get; set; }
public List<NegativeAdjustmentItemResponse> Items { get; set; } = new();
}
public record GetNegativeAdjustmentByIdQuery(string Id) : IRequest<GetNegativeAdjustmentByIdResponse?>;
public class GetNegativeAdjustmentByIdHandler : IRequestHandler<GetNegativeAdjustmentByIdQuery, GetNegativeAdjustmentByIdResponse?>
{
private readonly AppDbContext _context;
public GetNegativeAdjustmentByIdHandler(AppDbContext context) => _context = context;
public async Task<GetNegativeAdjustmentByIdResponse?> Handle(GetNegativeAdjustmentByIdQuery request, CancellationToken cancellationToken)
{
var master = await _context.NegativeAdjustment
.AsNoTracking()
.FirstOrDefaultAsync(x => x.Id == request.Id, cancellationToken);
if (master == null) return null;
var items = await _context.InventoryTransaction
.AsNoTracking()
.Include(x => x.Product)
.Include(x => x.Warehouse)
.Where(x => x.ModuleId == request.Id && x.ModuleName == nameof(Data.Entities.NegativeAdjustment))
.Select(x => new NegativeAdjustmentItemResponse
{
Id = x.Id,
ProductId = x.ProductId,
ProductName = x.Product!.Name,
WarehouseId = x.WarehouseId,
WarehouseName = x.Warehouse!.Name,
Movement = x.Movement
}).ToListAsync(cancellationToken);
return new GetNegativeAdjustmentByIdResponse
{
Id = master.Id,
AutoNumber = master.AutoNumber,
AdjustmentDate = master.AdjustmentDate,
Status = master.Status,
Description = master.Description,
CreatedAt = master.CreatedAt,
CreatedBy = master.CreatedBy,
UpdatedAt = master.UpdatedAt,
UpdatedBy = master.UpdatedBy,
Items = items
};
}
}