|
@@ -14,6 +14,7 @@ using Hotline.Caching.Interfaces;
|
|
|
using Hotline.Share.Enums.Order;
|
|
|
using Hotline.Share.Enums.Snapshot;
|
|
|
using XF.Utility.EnumExtensions;
|
|
|
+using Amazon.Runtime.Internal.Util;
|
|
|
|
|
|
namespace Hotline.Api.Controllers.Snapshot;
|
|
|
|
|
@@ -160,7 +161,7 @@ public class BiSnapshotController : BaseController
|
|
|
{
|
|
|
return new Dictionary<string, object>
|
|
|
{
|
|
|
- { "orderStatus", EnumExts.GetDescriptions<EOrderStatus>()},
|
|
|
+ { "orderStatus", EnumExts.GetDescriptions<EGuiderSystemReplyType>()},
|
|
|
};
|
|
|
}
|
|
|
|
|
@@ -172,4 +173,16 @@ 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)
|
|
|
+ {
|
|
|
+ throw new NotImplementedException();
|
|
|
+ }
|
|
|
+ //=> (await _biSnapshotApplication.GetGuiderWorkLogs(dto).ToPagedListAsync(dto)).ToPaged();
|
|
|
}
|