diff --git a/src/WMS.Web.Domain/Services/BoxInventoryService.cs b/src/WMS.Web.Domain/Services/BoxInventoryService.cs index 8c6a14e8..cfeff1f5 100644 --- a/src/WMS.Web.Domain/Services/BoxInventoryService.cs +++ b/src/WMS.Web.Domain/Services/BoxInventoryService.cs @@ -548,7 +548,7 @@ namespace WMS.Web.Domain.Services }); //是否要改箱的信息:直接调拨出库单,过来的出库就不要去改箱了 var isChangeBoxInfo = true; - if (dtoData != null && dtoData.Type == OutStockType.Stkdirecttransfers) + if (dtoData != null && (dtoData.Type == OutStockType.Stkdirecttransfers || dtoData.Type== OutStockType.StktransferInst)) isChangeBoxInfo = false; //提交处理 var result = await this.ExeOutStockBox(generateDtoList, boxInventorys, isChangeBoxInfo, isTransaction);