查询班组未绑定的人员 ,修正
This commit is contained in:
@@ -163,13 +163,13 @@ namespace DOAN.Admin.WebApi.Controllers
|
||||
/// <param name="group_code">班组id</param>
|
||||
/// <returns></returns>
|
||||
[HttpGet("list_person_bind")]
|
||||
public IActionResult SearchPerson_group_bind(string group_code)
|
||||
public IActionResult SearchPerson_group_bind(DateTime schedule_date, string group_code)
|
||||
{
|
||||
if (string.IsNullOrEmpty(group_code))
|
||||
{
|
||||
return SUCCESS(null);
|
||||
}
|
||||
var response = _GroupScheduleService.SearchPerson_group_bind(group_code);
|
||||
var response = _GroupScheduleService.SearchPerson_group_bind(schedule_date.Date,group_code);
|
||||
|
||||
return SUCCESS(response);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user