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() + { + + } } }