From 6167bf4c8fe617d9f9861585042149d48ad15dbb Mon Sep 17 00:00:00 2001 From: chengsc <11752@DESKTOP-DS49RCP> Date: 星期二, 13 五月 2025 17:54:50 +0800 Subject: [PATCH] 修改问题,添加PDA下发出库页面 --- Wms/Wms/Controllers/PdaAsnController.cs | 10 +++++++--- 1 files changed, 7 insertions(+), 3 deletions(-) diff --git a/Wms/Wms/Controllers/PdaAsnController.cs b/Wms/Wms/Controllers/PdaAsnController.cs index 1522b14..3987256 100644 --- a/Wms/Wms/Controllers/PdaAsnController.cs +++ b/Wms/Wms/Controllers/PdaAsnController.cs @@ -1,6 +1,7 @@ 锘縰sing Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Identity; using Microsoft.AspNetCore.Mvc; +using Microsoft.Extensions.Options; using Model.InterFaceModel; using Model.ModelDto.BllAsnDto; using Model.ModelDto.DataDto; @@ -12,6 +13,7 @@ using System.Security.Claims; using Utility; using Utility.Tools; +using Wms.Tools; using WMS.BLL.LogServer; using WMS.Entity.BllAsnEntity; using WMS.Entity.DataEntity; @@ -24,11 +26,13 @@ [Authorize] public class PdaAsnController : ControllerBase { + private readonly ApiUrlConfig _config; //鎺ュ彛浜や簰璺緞 private readonly IPdaAsnServer _PdaAsnSvc; private readonly UserManager _userManager; - public PdaAsnController(IPdaAsnServer pdaAsnSvc,UserManager userManager) + public PdaAsnController(IOptions<ApiUrlConfig> setting, IPdaAsnServer pdaAsnSvc,UserManager userManager) { + _config = setting.Value; _PdaAsnSvc = pdaAsnSvc; _userManager = userManager; } @@ -178,7 +182,7 @@ { try { - var models = _PdaAsnSvc.GetBindBoxInfos(model); + var models = _PdaAsnSvc.GetBindBoxInfos(model, _config.BoxHost + _config.GetBoxUrl); return Ok(new { code = 0, msg = "鏍囩绠辩爜淇℃伅", data = models }); } @@ -254,7 +258,7 @@ { _PdaAsnSvc.SaveAppointLocate(model.PalletNo, model.LocatNo, _userManager.UserId); - return Ok(new HttpReturnModel{ Success = "0", Message = "鏍规嵁鍗曟嵁鑾峰彇鏍囩鏁伴噺" }); + return Ok(new HttpReturnModel{ Success = "0", Message = "鎴愬姛鎸囧畾鍌ㄤ綅" }); } catch (Exception e) -- Gitblit v1.8.0