修复bug

This commit is contained in:
18942506660
2023-10-28 17:38:45 +08:00
parent 47c3dccb49
commit f94cf59a46
4 changed files with 24 additions and 9 deletions

View File

@@ -80,7 +80,7 @@ namespace WMS.Web.Api.Controllers
if (loginInfo == null || loginInfo.UserInfo == null)
return Result.ReFailure(ResultCodes.Token_Invalid_Error);
return await _takeStockService.Sync(id);
return await _takeStockService.Sync(dto);
}
}
}