Fix Error #1815
Some checks failed
release-dev / release-dev (push) Failing after 12s

root || owner กรองตาม fe ส่ง
This commit is contained in:
harid 2025-10-02 17:11:22 +07:00
parent faf62f1985
commit 389adeec2f
2 changed files with 23 additions and 17 deletions

View file

@ -520,7 +520,7 @@ namespace BMA.EHR.Application.Repositories
}
}
public async Task<List<GetProfileByKeycloakIdRootDto>> GetProfileByAdminRole(string? accessToken, int? node, string? nodeId, string role, string? revisionId)
public async Task<List<GetProfileByKeycloakIdRootDto>> GetProfileByAdminRole(string? accessToken, int? node, string? nodeId, string role, string? revisionId, int? reqNode, string? reqNodeId)
{
try
{
@ -532,6 +532,8 @@ namespace BMA.EHR.Application.Repositories
nodeId = nodeId,
role = role,
revisionId = revisionId,
reqNode = reqNode,
reqNodeId = reqNodeId
};
var profiles = new List<SearchProfileDto>();
@ -684,7 +686,7 @@ namespace BMA.EHR.Application.Repositories
}
}
public async Task<List<GetProfileByKeycloakIdRootDto>> GetEmployeeByAdminRole(string? accessToken, int? node, string? nodeId, string role, string? revisionId)
public async Task<List<GetProfileByKeycloakIdRootDto>> GetEmployeeByAdminRole(string? accessToken, int? node, string? nodeId, string role, string? revisionId, int? reqNode, string? reqNodeId )
{
try
{
@ -696,6 +698,8 @@ namespace BMA.EHR.Application.Repositories
nodeId = nodeId,
role = role,
revisionId = revisionId,
reqNode = reqNode,
reqNodeId = reqNodeId
};
var profiles = new List<SearchProfileDto>();