wxw
1 天以前 22428c74e4b57c87a979a8f2f199e0e8e34dbb86
Wms/Wms/Controllers/PdaSoController.cs
@@ -326,9 +326,31 @@
        [HttpPost]
        public async Task ChejianPick(PdaSoVm model)
        {
            if (_userManager.UserId == 0)
            {
                throw new Exception("未获取到用户信息");
            }
            await _pdaSoSvc.ChejianPick(model.PalletNo, model.BoxNo, _userManager.UserId);
        }
        /// <summary>
        /// 车间Pda出库-数量
        /// </summary>
        /// <param name="model"></param>
        /// <returns></returns>
        /// <exception cref="Exception"></exception>
        [HttpPost]
        public async Task ChejianPickNum(PdaSoVm model)
        {
            if (_userManager.UserId == 0)
            {
                throw new Exception("未获取到用户信息");
            }
            await _pdaSoSvc.ChejianPickNum(model, _userManager.UserId);
        }
        #endregion
        #region JC23版取样