From e561870f9644a5e80925346485fe623da678177f Mon Sep 17 00:00:00 2001
From: wxw <Administrator@DESKTOP-5BIMHQ3>
Date: 星期二, 14 十月 2025 10:20:57 +0800
Subject: [PATCH] 调整WMS出库逻辑,原辅料可选择成品库出库;
---
Wms/Model/ModelDto/BllAsnDto/BoxInfoDto.cs | 46 ++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 46 insertions(+), 0 deletions(-)
diff --git a/Wms/Model/ModelDto/BllAsnDto/BoxInfoDto.cs b/Wms/Model/ModelDto/BllAsnDto/BoxInfoDto.cs
index f17d6be..971a69d 100644
--- a/Wms/Model/ModelDto/BllAsnDto/BoxInfoDto.cs
+++ b/Wms/Model/ModelDto/BllAsnDto/BoxInfoDto.cs
@@ -240,6 +240,52 @@
/// </summary>
public string Date2 { get; set; }
}
+ public class StockDetailWithQtyDto
+ {
+ public string LotNo { get; set; }
+ public string LotText { get; set; }
+ public string SupplierLot { get; set; }
+ public string OwnerNo { get; set; }
+ public string OwnerName { get; set; }
+ public string SupplierNo { get; set; }
+ public string SupplierName { get; set; }
+ public string SkuNo { get; set; }
+ public string SkuName { get; set; }
+ public string Standard { get; set; }
+ public decimal Qty { get; set; } // 鏉ヨ嚜DataBoxInfo鐨凲ty
+ public decimal? LockQty { get; set; }
+ public decimal? FrozenQty { get; set; }
+ public decimal? InspectQty { get; set; }
+ public string ASNNo { get; set; }
+ public int? ASNDetailNo { get; set; }
+ public string SONo { get; set; }
+ public string WareHouseNo { get; set; }
+ public string RoadwayNo { get; set; }
+ public string AreaNo { get; set; }
+ public string LocatNo { get; set; }
+ public string PalletNo { get; set; }
+ public string PalletNo2 { get; set; }
+ public string PalletNo3 { get; set; }
+ public string PalletTags { get; set; }
+ public DateTime? CompleteTime { get; set; }
+ public DateTime? ProductionTime { get; set; }
+ public DateTime? ExpirationTime { get; set; }
+ public string Status { get; set; }
+ public string InspectMark { get; set; }
+ public string BitPalletMark { get; set; }
+ public string InspectStatus { get; set; }
+ public DateTime? InspectTime { get; set; }
+ public string PackagNo { get; set; }
+ public string IsBale { get; set; }
+ public string IsBelt { get; set; }
+ public string UDF5 { get; set; }
+ public string IsDel { get; set; }
+ public DateTime CreateTime { get; set; }
+ public int? CreateUser { get; set; }
+ public DateTime? UpdateTime { get; set; }
+ public int? UpdateUser { get; set; }
+ public string Demo { get; set; }
+ }
}
--
Gitblit v1.8.0