diff --git a/.vs/WMS.Web/DesignTimeBuild/.dtbcache.v2 b/.vs/WMS.Web/DesignTimeBuild/.dtbcache.v2 index 5ad8fcf9..55fdca19 100644 Binary files a/.vs/WMS.Web/DesignTimeBuild/.dtbcache.v2 and b/.vs/WMS.Web/DesignTimeBuild/.dtbcache.v2 differ diff --git a/src/WMS.Web.Domain/Services/BoxInventoryService.cs b/src/WMS.Web.Domain/Services/BoxInventoryService.cs index 4c3d1432..36fa049f 100644 --- a/src/WMS.Web.Domain/Services/BoxInventoryService.cs +++ b/src/WMS.Web.Domain/Services/BoxInventoryService.cs @@ -844,7 +844,7 @@ namespace WMS.Web.Domain.Services } if (delete_entitys.Count != 0) { - var delete_ids = add_entitys.Select(x => x.Id).ToList(); + var delete_ids = delete_entitys.Select(x => x.Id).ToList(); isSuccess = await _boxInventoryRepositories.DeleteRange(delete_ids, isTransaction); if (!isSuccess) return Result.ReFailure(ResultCodes.DateWriteError); } @@ -1276,6 +1276,8 @@ namespace WMS.Web.Domain.Services return Result.ReSuccess(); } + //private async Task ExeTaskBox(List serNubs,bool isTransaction) { } + /// /// 入库单-箱库存变更 ///