From cf6a69eed3ac59698f16ee08aedd73d34cf6790d Mon Sep 17 00:00:00 2001
From: 647556386 <647556386@qq.com>
Date: 星期四, 15 一月 2026 11:43:08 +0800
Subject: [PATCH] 代码优化

---
 项目代码/WMS无仓储版/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/Inbound/InboundOrderController.cs |    7 +++++--
 1 files changed, 5 insertions(+), 2 deletions(-)

diff --git "a/\351\241\271\347\233\256\344\273\243\347\240\201/WMS\346\227\240\344\273\223\345\202\250\347\211\210/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/Inbound/InboundOrderController.cs" "b/\351\241\271\347\233\256\344\273\243\347\240\201/WMS\346\227\240\344\273\223\345\202\250\347\211\210/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/Inbound/InboundOrderController.cs"
index aeffcc5..5a398f2 100644
--- "a/\351\241\271\347\233\256\344\273\243\347\240\201/WMS\346\227\240\344\273\223\345\202\250\347\211\210/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/Inbound/InboundOrderController.cs"
+++ "b/\351\241\271\347\233\256\344\273\243\347\240\201/WMS\346\227\240\344\273\223\345\202\250\347\211\210/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/Inbound/InboundOrderController.cs"
@@ -167,7 +167,9 @@
                                 OutBoxbarcodes = barcode.outBoxbarcodes,
                                 BarcodeUnit = barcode.unit,
                                 BarcodeQty = barcode.qty,
-                                OrderQuantity = barcode.qty
+                                OrderQuantity = barcode.qty,
+                                Remark = detailitem.remark??"",
+                                
                             };
 
                             dt_InboundOrder.Details.Add(inboundOrderDetail);
@@ -187,7 +189,8 @@
                             OrderQuantity = detailitem.qty,
                             BarcodeUnit = detailitem.unit,
                             BarcodeQty = detailitem.qty,
-                            MaterielName = materialName
+                            MaterielName = materialName,
+                            Remark = detailitem.remark??""
                         };
                         dt_InboundOrder.Details.Add(inboundOrderDetail);
                     }

--
Gitblit v1.9.3