改箱支持多个

This commit is contained in:
18942506660
2023-11-27 11:54:41 +08:00
parent 1198e01805
commit f2e4d125ce
3 changed files with 48 additions and 36 deletions

View File

@@ -95,7 +95,7 @@ namespace WMS.Web.Api.Controllers
if (loginInfo == null || loginInfo.UserInfo == null)
return Result.ReFailure(ResultCodes.Token_Invalid_Error);
return await _changeMoveBoxService.ChangeBoxSave(dto, loginInfo);
return await _changeMoveBoxService.ChangeBoxSave(new List<SaveChangeBoxRecordRequest>() { dto }, loginInfo);
}
}
}