|
|
@ -80,7 +80,7 @@ public class ThirdLocationJobController : AbpController |
|
|
|
public virtual async Task<PagedResultDto<ThirdLocationJobDTO>> GetListAsync(int pageSize, int pageIndex) |
|
|
|
{ |
|
|
|
var wlgCodes = await _userWorkGroupAppService.GetCodsOfCurrentUserAsync().ConfigureAwait(false); |
|
|
|
var jsonCodes = JsonSerializer.Serialize(wlgCodes); |
|
|
|
//var jsonCodes = JsonSerializer.Serialize(wlgCodes);
|
|
|
|
|
|
|
|
var status = new List<int>() { (int)EnumJobStatus.Open, (int)EnumJobStatus.Doing ,(int)EnumJobStatus.Partial}; |
|
|
|
var jsonStatus = JsonSerializer.Serialize(status); |
|
|
@ -94,7 +94,7 @@ public class ThirdLocationJobController : AbpController |
|
|
|
{ |
|
|
|
Filters = new List<Filter> |
|
|
|
{ |
|
|
|
new(nameof(ThirdLocationJobDTO.WorkGroupCode),jsonCodes,"In"), |
|
|
|
//new(nameof(ThirdLocationJobDTO.WorkGroupCode),jsonCodes,"In"),
|
|
|
|
new(nameof(ThirdLocationJobDTO.JobStatus),jsonStatus,"In") |
|
|
|
} |
|
|
|
} |
|
|
|