From 49b37bdd9089c17cb816d9a3b92134052a5a2e15 Mon Sep 17 00:00:00 2001
From: username@email.com <yzy2002yzy@163.com>
Date: 星期五, 13 三月 2026 08:44:55 +0800
Subject: [PATCH] 20260312 所有要品牌选择界面的订单类型的“品牌”都删除 20260312 合版工单删除包装要求,后道及工艺要求不要尺寸
---
CY_ECommercePlatform/CY.Model/OA/OA_DeliverPlan.cs | 44 +++++++++++++++++++++++++++++++++++++++++++-
1 files changed, 43 insertions(+), 1 deletions(-)
diff --git a/CY_ECommercePlatform/CY.Model/OA/OA_DeliverPlan.cs b/CY_ECommercePlatform/CY.Model/OA/OA_DeliverPlan.cs
index 3c24c8b..2b4e16b 100644
--- a/CY_ECommercePlatform/CY.Model/OA/OA_DeliverPlan.cs
+++ b/CY_ECommercePlatform/CY.Model/OA/OA_DeliverPlan.cs
@@ -504,6 +504,34 @@
set;
}
+
+
+ public int? Chulistatus
+ {
+ get;
+ set;
+ }
+ public string ChulistatusName
+ {
+ get
+ {
+ return Chulistatus.HasValue && Chulistatus.Value == 1 ? "鈭�" : "脳";
+ }
+
+ }
+
+ public DateTime? ChuliTime
+ {
+ get;
+ set;
+ }
+
+ public string Chuliren
+ {
+ get;
+ set;
+ }
+
public int? Zerenren
{
get;
@@ -922,7 +950,21 @@
this.OrAllUnPayedMoney = isChange ? MyConvert.ConvertToDecimal(value) : OrAllUnPayedMoney;
theValue = this.OrAllUnPayedMoney;
}
-
+ else if ("Chulistatus".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 72)
+ {
+ this.Chulistatus = isChange ? MyConvert.ConvertToInt32(value) : Chulistatus;
+ theValue = this.Chulistatus;
+ }
+ else if ("ChuliTime".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 73)
+ {
+ this.ChuliTime = isChange ? MyConvert.ConvertToDateTime(value) : ChuliTime;
+ theValue = this.ChuliTime;
+ }
+ else if ("Chuliren".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 74)
+ {
+ this.Chuliren = isChange ? MyConvert.ConvertToString(value) : Chuliren;
+ theValue = this.Chuliren;
+ }
--
Gitblit v1.9.1