|
@@ -293,6 +293,7 @@ public abstract class DefaultCallApplication : ICallApplication
|
|
public virtual async Task<IReadOnlyList<TelOperation>> QueryTelOperationsAsync(QueryTelOperationsFixedDto dto, CancellationToken cancellationToken)
|
|
public virtual async Task<IReadOnlyList<TelOperation>> QueryTelOperationsAsync(QueryTelOperationsFixedDto dto, CancellationToken cancellationToken)
|
|
{
|
|
{
|
|
return await _telOperationRepository.Queryable()
|
|
return await _telOperationRepository.Queryable()
|
|
|
|
+ .Where(m => m.OperateStateText != "未知")
|
|
.WhereIF(!string.IsNullOrEmpty(dto.UserName), d => d.UserName == dto.UserName)
|
|
.WhereIF(!string.IsNullOrEmpty(dto.UserName), d => d.UserName == dto.UserName)
|
|
.WhereIF(!string.IsNullOrEmpty(dto.StaffNo), d => d.StaffNo == dto.StaffNo)
|
|
.WhereIF(!string.IsNullOrEmpty(dto.StaffNo), d => d.StaffNo == dto.StaffNo)
|
|
.WhereIF(!string.IsNullOrEmpty(dto.GroupId), d => d.GroupId == dto.GroupId)
|
|
.WhereIF(!string.IsNullOrEmpty(dto.GroupId), d => d.GroupId == dto.GroupId)
|