wanshenmean
23 小时以前 fcf0f53de620c6f3c6218e59dbdeff01fda4eb3b
Code/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/Stock/StockController.cs
@@ -72,7 +72,7 @@
        [HttpPost("SplitPalletConfirm"), AllowAnonymous]
        public async Task<WebResponseContent> SplitPalletConfirm([FromBody] SplitPalletConfirmRequestDto dto)
        {
            return await Service.SplitPalletConfirmAsync(dto.PalletCode);
            return await Service.SplitPalletConfirmAsync(dto.PalletCode, dto.DeviceName);
        }
        /// <summary>
@@ -83,7 +83,7 @@
        [HttpPost("GroupPalletConfirm"), AllowAnonymous]
        public async Task<WebResponseContent> GroupPalletConfirm([FromBody] GroupPalletConfirmRequestDto dto)
        {
            return await Service.GroupPalletConfirmAsync(dto.PalletCode);
            return await Service.GroupPalletConfirmAsync(dto.PalletCode, dto.DeviceName);
        }
    }
}