From 2605af51ca4787434c8c5f2b10dc0adc78a2fdb0 Mon Sep 17 00:00:00 2001 From: username@email.com <yzy2002yzy@163.com> Date: 星期五, 14 三月 2025 17:17:45 +0800 Subject: [PATCH] 外协管理,外协订单,你列表操作后面增加一个完工点,完工就进行。就是说,已完工处理好,前面呢,有个批量完工,好检索查询条件,也加个完工。 --- CY_ECommercePlatform/CY.Model/OA/OA_Fukuanshenqing.cs | 13 +++++++++++-- 1 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CY_ECommercePlatform/CY.Model/OA/OA_Fukuanshenqing.cs b/CY_ECommercePlatform/CY.Model/OA/OA_Fukuanshenqing.cs index 6d353f7..e69afdf 100644 --- a/CY_ECommercePlatform/CY.Model/OA/OA_Fukuanshenqing.cs +++ b/CY_ECommercePlatform/CY.Model/OA/OA_Fukuanshenqing.cs @@ -43,7 +43,8 @@ /// <summary> /// 瀹㈡埛id /// </summary> - public int SupplierId { get; set; } + public string SupplierId { get; set; } + /// <summary> /// 瀹㈡埛id /// </summary> @@ -65,6 +66,8 @@ public string Bank { get; set; } + + public string Huming { get; set; } public string AccountID { get; set; } @@ -183,7 +186,7 @@ } else if ("SupplierId".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 3) { - this.SupplierId = isChange ? MyConvert.ConvertToInt32(value).Value : SupplierId; + this.SupplierId = isChange ? MyConvert.ConvertToString(value) : SupplierId; theValue = this.SupplierId; } else if ("SupplierName".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 4) @@ -245,6 +248,12 @@ this.Bank = isChange ? MyConvert.ConvertToString(value) : Bank; theValue = this.Bank; } + else if ("Huming".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 28) + { + this.Huming = isChange ? MyConvert.ConvertToString(value) : Huming; + theValue = this.Huming; + } + else if ("AccountID".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 22) { this.AccountID = isChange ? MyConvert.ConvertToString(value) : AccountID; -- Gitblit v1.9.1