增加同步时间
This commit is contained in:
@@ -118,7 +118,7 @@ namespace WMS.Web.Api.Controllers
|
||||
return Result<GetOutStockTaskByNoResponse>.ReFailure(ResultCodes.Token_Invalid_Error);
|
||||
|
||||
//搜索之前同步金蝶数据
|
||||
await _outStockTaskService.Ssyn(new List<string>() { billNo });
|
||||
await _outStockTaskService.Sync(new List<string>() { billNo });
|
||||
|
||||
var res = await _repositories.GetOutStockTaskByNo(billNo);
|
||||
if (res == null) return Result<GetOutStockTaskByNoResponse>.ReFailure(ResultCodes.OutStockTaskNoData);
|
||||
@@ -139,7 +139,7 @@ namespace WMS.Web.Api.Controllers
|
||||
if (loginInfo == null || loginInfo.UserInfo == null)
|
||||
return Result.ReFailure(ResultCodes.Token_Invalid_Error);
|
||||
|
||||
return await _outStockTaskService.Ssyn(dto.Ids);
|
||||
return await _outStockTaskService.Sync(dto.Ids);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user