From f84883811b523bbc2de76a98eb406146436ba3a1 Mon Sep 17 00:00:00 2001 From: zhoukeda <1315948824@qq.com> Date: Wed, 22 Nov 2023 14:31:08 +0800 Subject: [PATCH] 1 --- ProductionMgr/Tnb.ProductionMgr/PrdInstockService.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ProductionMgr/Tnb.ProductionMgr/PrdInstockService.cs b/ProductionMgr/Tnb.ProductionMgr/PrdInstockService.cs index 334e96a3..6bce7c2f 100644 --- a/ProductionMgr/Tnb.ProductionMgr/PrdInstockService.cs +++ b/ProductionMgr/Tnb.ProductionMgr/PrdInstockService.cs @@ -264,12 +264,12 @@ namespace Tnb.ProductionMgr string equip_code = input.equip_code; string label_code = input.label_code; string warehouse_id = "2"; - if (!string.IsNullOrEmpty(equip_code)) + if (string.IsNullOrEmpty(equip_code)) { throw Oops.Bah("请传机台号"); } - if (!string.IsNullOrEmpty(label_code)) + if (string.IsNullOrEmpty(label_code)) { throw Oops.Bah("请传标签号"); }