cronjob retirement (test)

This commit is contained in:
Bright 2025-01-29 12:15:30 +07:00
parent e42dd1926b
commit 01f16eaef4
3 changed files with 81 additions and 7 deletions

View file

@ -1997,5 +1997,44 @@ namespace BMA.EHR.Retirement.Service.Controllers
};
return Success(data);
}
//เกษียณอายุราชการ
//public async Task ExecuteRetirement()
//{
// var retirePeriodOfficer = await _context.RetirementPeriods
// .Include(x => x.RetirementRawProfiles.Where(y => y.Remove != "REMOVE"))
// .Where(x => x.Year == /*DateTime.Now.Year*/2026)
// .Where(x => x.Type.Trim().ToUpper().Contains("OFFICER"))
// .FirstOrDefaultAsync();
// var body = retirePeriodOfficer.RetirementProfiles
// .Select(x => new {
// profileId = x.profileId,
// //lastUpdateUserId = UserId,
// //lastUpdateFullName = FullName,
// })
// .ToList();
// //ข้าราชการ
// //var apiUrl = $"{_configuration["API"]}/org/unauthorize/retirement";
// var apiUrl = $"http://localhost:13001/api/v1/org/unauthorize/retirement";
// using (var client = new HttpClient())
// {
// client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", token.Replace("Bearer ", ""));
// client.DefaultRequestHeaders.Add("api_key", _configuration["API_KEY"]);
// var jsonBody = JsonConvert.SerializeObject(body);
// var content = new StringContent(jsonBody, Encoding.UTF8, "application/json");
// var _req = new HttpRequestMessage(HttpMethod.Patch, apiUrl)
// {
// Content = content
// };
// var response = await client.SendAsync(_req);
// var responseContent = await response.Content.ReadAsStringAsync();
// if (!response.IsSuccessStatusCode)
// {
// }
// }
//}
}
}