|
@@ -160,7 +160,7 @@ public class BiSnapshotController : BaseController
|
|
|
{
|
|
|
return new Dictionary<string, object>
|
|
|
{
|
|
|
- { "orderStatus", EnumExts.GetDescriptions<EOrderStatus>()},
|
|
|
+ { "orderStatus", EnumExts.GetDescriptions<EGuiderSystemReplyType>()},
|
|
|
};
|
|
|
}
|
|
|
|
|
@@ -172,4 +172,13 @@ public class BiSnapshotController : BaseController
|
|
|
[HttpGet("guider-work-log")]
|
|
|
public async Task<PagedDto<GuiderWorkLogsOutDto>> GetGuiderWorkLogsAsync([FromQuery] GuiderWorkLogsInDto dto)
|
|
|
=> (await _biSnapshotApplication.GetGuiderWorkLogs(dto).ToPagedListAsync(dto)).ToPaged();
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 重复件-随手拍
|
|
|
+ /// </summary>
|
|
|
+ /// <param name="dto"></param>
|
|
|
+ /// <returns></returns>
|
|
|
+ [HttpGet("duplicate")]
|
|
|
+ public async Task<PagedDto<DuplicateItemsOutDto>> GetDuplicateItemsAsync([FromQuery] GuiderWorkLogsInDto dto)
|
|
|
+ => (await _biSnapshotApplication.GetGuiderWorkLogs(dto).ToPagedListAsync(dto)).ToPaged();
|
|
|
}
|