|
|
@ -26,7 +26,7 @@ namespace BBWY.Client.APIServices |
|
|
|
return SendRequest<SealBoxWaitConfigureResponse>(globalContext.QKApiHost, $"api/SealBox/GetSealBoxWaitConfigureList", |
|
|
|
new |
|
|
|
{ |
|
|
|
|
|
|
|
|
|
|
|
ShopId = globalContext.User.Shop.ShopId.ToString(), |
|
|
|
TaskId, |
|
|
|
SkuId, |
|
|
@ -91,7 +91,7 @@ namespace BBWY.Client.APIServices |
|
|
|
, null, HttpMethod.Post); |
|
|
|
} |
|
|
|
|
|
|
|
public ApiResponse<GetWareSealBoxResponse> GetWareSealBoxList(string ShopName, long? TaskId, string SkuId,long? SealBoxId, int? PageIndex, int? PageSize) |
|
|
|
public ApiResponse<GetWareSealBoxResponse> GetWareSealBoxList(string ShopName, long? TaskId, string SkuId, long? SealBoxId, int? PageIndex, int? PageSize) |
|
|
|
{ |
|
|
|
return SendRequest<GetWareSealBoxResponse>(globalContext.QKApiHost, $"api/SealBox/GetWareSealBoxList", |
|
|
|
new |
|
|
@ -119,6 +119,21 @@ namespace BBWY.Client.APIServices |
|
|
|
} |
|
|
|
, null, HttpMethod.Post); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 完成打印封箱明细
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="SealBoxId"></param>
|
|
|
|
/// <returns></returns>
|
|
|
|
public ApiResponse<object> WareCompetePrintSealBox(long SealBoxId) |
|
|
|
{ |
|
|
|
return SendRequest<object>(globalContext.QKApiHost, $"api/SealBox/WareCompetePrintSealBox?SealBoxId={SealBoxId}", |
|
|
|
null, null, HttpMethod.Get); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 仓库端获取待落仓列表
|
|
|
|
/// </summary>
|
|
|
@ -128,7 +143,7 @@ namespace BBWY.Client.APIServices |
|
|
|
/// <param name="PageIndex"></param>
|
|
|
|
/// <param name="PageSize"></param>
|
|
|
|
/// <returns></returns>
|
|
|
|
public ApiResponse<SearchWaitFallWareResponse> SearchWareFallWareConfigureList(PositionState positionState, string ShopName = null, long? TaskId = null, string SkuId = null,long?sealBoxId=null, int PageIndex = 1 |
|
|
|
public ApiResponse<SearchWaitFallWareResponse> SearchWareFallWareConfigureList(PositionState positionState, string ShopName = null, long? TaskId = null, string SkuId = null, long? sealBoxId = null, int PageIndex = 1 |
|
|
|
, int PageSize = 10) |
|
|
|
{ |
|
|
|
return SendRequest<SearchWaitFallWareResponse>(globalContext.QKApiHost, $"api/SealBox/SearchWareFallWareConfigureList", |
|
|
@ -174,7 +189,7 @@ namespace BBWY.Client.APIServices |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public ApiResponse<bool> SetFallWareConfigure(long SealBoxId, string ProductTitle, string PurchaseOrder, string PrewOrder, string WaybillNo, string providerName = "", string wareName = "",string WareCity="",DateTime? TransportOverTime=null) |
|
|
|
public ApiResponse<bool> SetFallWareConfigure(long SealBoxId, string ProductTitle, string PurchaseOrder, string PrewOrder, string WaybillNo, string providerName = "", string wareName = "", string WareCity = "", DateTime? TransportOverTime = null) |
|
|
|
{ |
|
|
|
return SendRequest<bool>(globalContext.QKApiHost, $"api/SealBox/SetFallWareConfigure", |
|
|
|
new |
|
|
@ -246,7 +261,7 @@ namespace BBWY.Client.APIServices |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public ApiResponse<GetWareWaitTransportResponse> GetWareWaitTransportList(WareType WareType, int? PageSize, int? PageIndex,string shopId=null) |
|
|
|
public ApiResponse<GetWareWaitTransportResponse> GetWareWaitTransportList(WareType WareType, int? PageSize, int? PageIndex, string shopId = null) |
|
|
|
{ |
|
|
|
return SendRequest<GetWareWaitTransportResponse>(globalContext.QKApiHost, $"api/SealBox/GetWareWaitTransportList", |
|
|
|
new |
|
|
@ -263,7 +278,7 @@ namespace BBWY.Client.APIServices |
|
|
|
public ApiResponse<bool> WareCompeteTransport(long sealBoxId) |
|
|
|
{ |
|
|
|
return SendRequest<bool>(globalContext.QKApiHost, $"api/SealBox/WareCompeteTransport?sealBoxId={sealBoxId}", |
|
|
|
null , null, HttpMethod.Post); |
|
|
|
null, null, HttpMethod.Post); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
@ -273,10 +288,11 @@ namespace BBWY.Client.APIServices |
|
|
|
null, null, HttpMethod.Post); |
|
|
|
} |
|
|
|
|
|
|
|
public ApiResponse<GetWareWaitCompletedResponse> GetWareWaitCompletedList(string shopId, string ShopName , long? TaskId , string SkuId , long? sealBoxId , int? PageIndex, int? PageSize) |
|
|
|
public ApiResponse<GetWareWaitCompletedResponse> GetWareWaitCompletedList(string shopId, string ShopName, long? TaskId, string SkuId, long? sealBoxId, int? PageIndex, int? PageSize) |
|
|
|
{ |
|
|
|
return SendRequest<GetWareWaitCompletedResponse>(globalContext.QKApiHost, $"api/SealBox/GetWareWaitCompletedList", |
|
|
|
new { |
|
|
|
new |
|
|
|
{ |
|
|
|
shopId, |
|
|
|
PageIndex, |
|
|
|
PageSize, |
|
|
|