|
@@ -1197,7 +1197,23 @@ public class OrderController : BaseController
|
|
|
.ToPagedListAsync(dto.PageIndex, dto.PageSize, HttpContext.RequestAborted);
|
|
|
return new PagedDto<OrderVisitDto>(total, _mapper.Map<IReadOnlyList<OrderVisitDto>>(items));
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 扭转列表查询基础数据
|
|
|
+ /// </summary>
|
|
|
+ /// <returns></returns>
|
|
|
+ [HttpGet("visit/judge-query-basedata")]
|
|
|
+ public async Task<object> VisitJudgeQueryBaseData()
|
|
|
+ {
|
|
|
+ return new
|
|
|
+ {
|
|
|
+ FiledTypeOptions = EnumExts.GetDescriptions<FiledType>(),
|
|
|
+ AcceptTypeOptions = _sysDicDataCacheManager.GetSysDicDataCache(SysDicTypeConsts.AcceptType),
|
|
|
+ OrgsOptions = await _organizeRepository.GetOrgJson(),
|
|
|
+ CallForwardingOptions = _sysDicDataCacheManager.GetSysDicDataCache(SysDicTypeConsts.CallForwardingSource)
|
|
|
+ };
|
|
|
+ }
|
|
|
+
|
|
|
/// <summary>
|
|
|
/// 扭转列表导出
|
|
|
/// </summary>
|