fix ออกคำสั่งย้ายลูกจ้างประจำ
This commit is contained in:
parent
1960f243d0
commit
a2a8aee819
3 changed files with 4 additions and 2 deletions
|
|
@ -1320,7 +1320,8 @@ namespace BMA.EHR.Application.Repositories.Commands
|
|||
Seq = r.Sequence.ToString().ToThaiNumber(),
|
||||
FullName = $"{r.Prefix}{r.FirstName} {r.LastName}",
|
||||
Organization = p.OrganizationPositionOld,
|
||||
OldPositionName = p.OrganizationPositionOld,
|
||||
OldOrganization = p.OrganizationOld,
|
||||
OldPositionName = p.positionOld,
|
||||
OldPositionLevel = p.PositionLevelOld,
|
||||
OldPositionNumber = p.PositionNumberOld == null ? null : p.PositionNumberOld.ToThaiNumber(),
|
||||
OldSalary = p.AmountOld == null ? "" : p.AmountOld.Value.ToNumericNoDecimalText().ToThaiNumber(),
|
||||
|
|
|
|||
|
|
@ -7078,7 +7078,7 @@ namespace BMA.EHR.Application.Repositories.Commands
|
|||
}
|
||||
|
||||
var baseAPIOrg = _configuration["API"];
|
||||
var apiUrlOrg = $"{baseAPIOrg}/org/pos/report/current";
|
||||
var apiUrlOrg = $"{baseAPIOrg}/org/employee/pos/report/current";
|
||||
using (var client = new HttpClient())
|
||||
{
|
||||
client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", token.Replace("Bearer ", ""));
|
||||
|
|
|
|||
|
|
@ -6,6 +6,7 @@
|
|||
// public string CitizenId { get; set; } = string.Empty;
|
||||
public string? FullName { get; set; } = string.Empty;
|
||||
public string? Organization { get; set; } = string.Empty;
|
||||
public string? OldOrganization { get; set; } = string.Empty;
|
||||
public string? OldPositionName { get; set; } = string.Empty;
|
||||
public string? OldPositionLevel { get; set; } = string.Empty;
|
||||
public string? OldPositionNumber { get; set; } = string.Empty;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue