From 571289345cb09c809de244fc61065971e0e5cdee Mon Sep 17 00:00:00 2001
From: Rodney Chen <rodney.chen@hotmail.com>
Date: 星期二, 11 三月 2025 11:40:23 +0800
Subject: [PATCH] 送货单事务增加生成收货单逻辑

---
 Tiger.Model.Net/Entitys/WMS/BIZ_U9_ASN_DTL.cs |   21 +++++++++++++++------
 1 files changed, 15 insertions(+), 6 deletions(-)

diff --git a/Tiger.Model.Net/Entitys/WMS/BIZ_U9_ASN_DTL.cs b/Tiger.Model.Net/Entitys/WMS/BIZ_U9_ASN_DTL.cs
index 7300c8e..1a1d903 100644
--- a/Tiger.Model.Net/Entitys/WMS/BIZ_U9_ASN_DTL.cs
+++ b/Tiger.Model.Net/Entitys/WMS/BIZ_U9_ASN_DTL.cs
@@ -73,10 +73,15 @@
 		/// </summary>
 		[DisplayName("閫�璐ф暟閲�")]
 		public double QTY_RETURN { get; set; }
-		/// <summary>
-		/// 鏄惁璧犲搧(Y/N)
-		/// </summary>
-		[DisplayName("鏄惁璧犲搧(Y/N)")]
+        /// <summary>
+        /// 璧犲搧鏁伴噺
+        /// </summary>
+        [DisplayName("璧犲搧鏁伴噺")]
+        public double QTY_GIFT { get; set; }
+        /// <summary>
+        /// 鏄惁璧犲搧(Y/N)
+        /// </summary>
+        [DisplayName("鏄惁璧犲搧(Y/N)")]
 		public string IS_GIFT { get; set; }
 		/// <summary>
 		/// 渚涘簲鍟嗙紪鐮�
@@ -139,10 +144,14 @@
         public string ITEM_NAME => ItemInfo?.ITEM_NAME;
         [SugarColumn(IsIgnore = true)]
         public string ITEM_DESC => ItemInfo?.ITEM_DESC;
+        [SugarColumn(IsIgnore = true)]
+        public double QTY_COUNTED { get; set; } = 0;
+        [SugarColumn(IsIgnore = true)]
+        public List<BIZ_U9_ASN_SN> SnList { get; set; } = new List<BIZ_U9_ASN_SN>();
         #endregion
 
-		#region 澶栭敭灞炴��
-		/*渚嬪瓙
+        #region 澶栭敭灞炴��
+        /*渚嬪瓙
 		//涓�瀵逛竴澶栭敭瀵艰埅
 		[Navigate(NavigateType.OneToOne, nameof(ClassAId))]//涓�瀵逛竴 ClassAId鏄疊IZ_U9_ASN_DTL绫婚噷闈㈢殑澶栭敭ID瀛楁
 		public ClassA ClassA { get; set; } //娉ㄦ剰绂佹鎵嬪姩璧嬪�硷紝鍙兘鏄痭ull

--
Gitblit v1.9.3