apiจัดสรร

This commit is contained in:
Kittapath 2023-08-25 18:18:28 +07:00
parent 0aa0aedba9
commit 15931fbaca
27 changed files with 64051 additions and 120 deletions

View file

@ -1,6 +1,7 @@
using BMA.EHR.Application.Repositories;
using BMA.EHR.Domain.Common;
using BMA.EHR.Domain.Extensions;
using BMA.EHR.Domain.Models.HR;
using BMA.EHR.Domain.Models.MetaData;
using BMA.EHR.Domain.Models.Retirement;
using BMA.EHR.Domain.Shared;
@ -247,6 +248,22 @@ namespace BMA.EHR.Retirement.Service.Controllers
if (_doc != null)
retirementDeceased.Document = _doc;
}
await _context.ProfileSalaries.AddAsync(new ProfileSalary
{
Date = req.Date,
SalaryRef = req.Number,
CommandNo = "-",
SalaryClass = "-",
PosNoEmployee = "-",
CommandTypeName = "-",
Profile = profile,
CreatedUserId = FullName ?? "",
CreatedFullName = UserId ?? "System Administrator",
CreatedAt = DateTime.Now,
LastUpdateFullName = FullName ?? "System Administrator",
LastUpdateUserId = UserId ?? "",
LastUpdatedAt = DateTime.Now,
});
await _context.SaveChangesAsync();
return Success();