fix issue : 1113
This commit is contained in:
parent
ddb541c819
commit
3cad108cef
8 changed files with 1328 additions and 25 deletions
|
|
@ -518,10 +518,10 @@ namespace BMA.EHR.Leave.Service.Controllers
|
|||
coupleDayPosition = data.CoupleDayPosition,
|
||||
coupleDayOrganizationName = "-",
|
||||
coupleDayLevelCountry = data.CoupleDayLevelCountry,
|
||||
coupleDayCountryHistory = data.CoupleDayCountryHistory,
|
||||
coupleDayTotalHistory = data.CoupleDayTotalHistory,
|
||||
coupleDayStartDateHistory = data.CoupleDayStartDateHistory.Date.ToThaiShortDate(),
|
||||
coupleDayEndDateHistory = data.CoupleDayEndDateHistory.Date.ToThaiShortDate(),
|
||||
coupleDayCountryHistory = data.CoupleDayCountryHistory ?? "",
|
||||
coupleDayTotalHistory = data.CoupleDayTotalHistory ?? "",
|
||||
coupleDayStartDateHistory = data.CoupleDayStartDateHistory == null ? "" : data.CoupleDayStartDateHistory.Value.Date.ToThaiShortDate(),
|
||||
coupleDayEndDateHistory = data.CoupleDayEndDateHistory == null ? "" : data.CoupleDayEndDateHistory.Value.Date.ToThaiShortDate(),
|
||||
coupleDaySumTotalHistory = data.CoupleDaySumTotalHistory,
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -1109,7 +1109,7 @@ namespace BMA.EHR.Leave.Service.Controllers
|
|||
CoupleDayLevelCountry = rawData.CoupleDayLevelCountry,
|
||||
CoupleDayCountryHistory = rawData.CoupleDayCountryHistory,
|
||||
CoupleDayTotalHistory = rawData.CoupleDayTotalHistory,
|
||||
CoupleDayStartDateHistory = rawData.CoupleDayStartDateHistory,
|
||||
CoupleDayStartDateHistory = rawData.CoupleDayStartDateHistory,
|
||||
CoupleDayEndDateHistory = rawData.CoupleDayEndDateHistory,
|
||||
CoupleDaySumTotalHistory = rawData.CoupleDaySumTotalHistory,
|
||||
|
||||
|
|
|
|||
|
|
@ -105,15 +105,15 @@ namespace BMA.EHR.Leave.Service.DTOs.LeaveRequest
|
|||
|
||||
public string CoupleDayLevelCountry { get; set; } = string.Empty;
|
||||
|
||||
public string CoupleDayCountryHistory { get; set; } = string.Empty;
|
||||
public string? CoupleDayCountryHistory { get; set; }
|
||||
|
||||
public string CoupleDayTotalHistory { get; set; } = string.Empty;
|
||||
public string? CoupleDayTotalHistory { get; set; }
|
||||
|
||||
public DateTime CoupleDayStartDateHistory { get; set; } = DateTime.Now;
|
||||
public DateTime? CoupleDayStartDateHistory { get; set; }
|
||||
|
||||
public DateTime CoupleDayEndDateHistory { get; set; } = DateTime.Now;
|
||||
public DateTime? CoupleDayEndDateHistory { get; set; }
|
||||
|
||||
public string CoupleDaySumTotalHistory { get; set; } = string.Empty;
|
||||
public string? CoupleDaySumTotalHistory { get; set; }
|
||||
|
||||
public string? Dear { get; set; } = string.Empty;
|
||||
|
||||
|
|
|
|||
|
|
@ -112,15 +112,15 @@ namespace BMA.EHR.Leave.Service.DTOs.LeaveRequest
|
|||
|
||||
public string CoupleDayLevelCountry { get; set; } = string.Empty;
|
||||
|
||||
public string CoupleDayCountryHistory { get; set; } = string.Empty;
|
||||
public string? CoupleDayCountryHistory { get; set; }
|
||||
|
||||
public string CoupleDayTotalHistory { get; set; } = string.Empty;
|
||||
public string? CoupleDayTotalHistory { get; set; }
|
||||
|
||||
public DateTime CoupleDayStartDateHistory { get; set; } = DateTime.Now;
|
||||
public DateTime? CoupleDayStartDateHistory { get; set; }
|
||||
|
||||
public DateTime CoupleDayEndDateHistory { get; set; } = DateTime.Now;
|
||||
public DateTime? CoupleDayEndDateHistory { get; set; }
|
||||
|
||||
public string CoupleDaySumTotalHistory { get; set; } = string.Empty;
|
||||
public string? CoupleDaySumTotalHistory { get; set; }
|
||||
|
||||
public string Dear { get; set; } = string.Empty;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue