From e503792b208733a64ec1516ac7cf208da7097001 Mon Sep 17 00:00:00 2001
From: duhe <226547893@qq.com>
Date: 星期二, 19 八月 2025 16:55:56 +0800
Subject: [PATCH] 海诚:根据采购入库单生成条码,拼接条码时,批号、MTO号去掉空格

---
 WebAPI/Controllers/仓存管理/条码生成/Sc_BarCodeController.cs |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git "a/WebAPI/Controllers/\344\273\223\345\255\230\347\256\241\347\220\206/\346\235\241\347\240\201\347\224\237\346\210\220/Sc_BarCodeController.cs" "b/WebAPI/Controllers/\344\273\223\345\255\230\347\256\241\347\220\206/\346\235\241\347\240\201\347\224\237\346\210\220/Sc_BarCodeController.cs"
index a644cdf..62d82ed 100644
--- "a/WebAPI/Controllers/\344\273\223\345\255\230\347\256\241\347\220\206/\346\235\241\347\240\201\347\224\237\346\210\220/Sc_BarCodeController.cs"
+++ "b/WebAPI/Controllers/\344\273\223\345\255\230\347\256\241\347\220\206/\346\235\241\347\240\201\347\224\237\346\210\220/Sc_BarCodeController.cs"
@@ -1243,7 +1243,7 @@
                             else
                             {
                                 //鏉$爜瑙勫垯锛氱墿鏂欏唴鐮丂MTO@鎵规鍙稝鏁伴噺
-                                TM = HNumber + "@" + sHMTONo + "@" + HBatchNo + "@" + sHQty;
+                                TM = HNumber + "@" + sHMTONo.Replace(" ","") + "@" + HBatchNo.Replace(" ","") + "@" + sHQty;
                             }
                         }
 

--
Gitblit v1.9.1