From 34c359d4490386526bd08e74b59280b87c0bc232 Mon Sep 17 00:00:00 2001 From: alex Date: Thu, 15 Jun 2023 14:53:58 +0800 Subject: [PATCH] 1 --- WarehouseMgr/Tnb.WarehouseMgr/WmsEmptyInstockService.cs | 4 ++-- WarehouseMgr/Tnb.WarehouseMgr/WmsInStockService.cs | 9 +++++++++ 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/WarehouseMgr/Tnb.WarehouseMgr/WmsEmptyInstockService.cs b/WarehouseMgr/Tnb.WarehouseMgr/WmsEmptyInstockService.cs index a922e99a..5adddff7 100644 --- a/WarehouseMgr/Tnb.WarehouseMgr/WmsEmptyInstockService.cs +++ b/WarehouseMgr/Tnb.WarehouseMgr/WmsEmptyInstockService.cs @@ -30,11 +30,11 @@ namespace Tnb.WarehouseMgr /// 空载具入库 /// [OverideVisualDev(ModuleConsts.MODULE_WMSEMPTYINSTOCK_ID)] - [ServiceModule(BizModuleId)] + [ServiceModule(BizTypeId)] public class WmsEmptyInstockService : BaseWareHouseService { - private const string BizModuleId = "26121986416677"; + private const string BizTypeId = "26121986416677"; private readonly ISqlSugarClient _db; private readonly IRunService _runService; private readonly IVisualDevService _visualDevService; diff --git a/WarehouseMgr/Tnb.WarehouseMgr/WmsInStockService.cs b/WarehouseMgr/Tnb.WarehouseMgr/WmsInStockService.cs index 104e1a14..530b0994 100644 --- a/WarehouseMgr/Tnb.WarehouseMgr/WmsInStockService.cs +++ b/WarehouseMgr/Tnb.WarehouseMgr/WmsInStockService.cs @@ -38,5 +38,14 @@ namespace Tnb.WarehouseMgr it => it.line_status = dic.ContainsKey(it.line_status) ? dic[it.line_status]?.ToString()! : ""); return items; } + /// + /// 条码打印 + /// + /// + [HttpPost] + public async Task BarCodePrint() + { + + } } }