From 9dec67fc7bd6064995d4f9fdc937d0cf9e592012 Mon Sep 17 00:00:00 2001
From: username@email.com <yzy2002yzy@163.com>
Date: 星期三, 18 三月 2026 13:01:58 +0800
Subject: [PATCH] 20260318 除“书刊”、“画册”外,其他所有订单类型的“构件”和“P数”默认空白
---
CY_ECommercePlatform/CY.Model/OA/OA_DeliverPlan.cs | 46 +++++++++++++++++++++++++++++++++++++++++++++-
1 files changed, 45 insertions(+), 1 deletions(-)
diff --git a/CY_ECommercePlatform/CY.Model/OA/OA_DeliverPlan.cs b/CY_ECommercePlatform/CY.Model/OA/OA_DeliverPlan.cs
index 0e88c8b..2b4e16b 100644
--- a/CY_ECommercePlatform/CY.Model/OA/OA_DeliverPlan.cs
+++ b/CY_ECommercePlatform/CY.Model/OA/OA_DeliverPlan.cs
@@ -73,6 +73,8 @@
public int? fapiaoshuliang { get; set; }
+ public string fapiaoshuliangName { get; set; }
+
/// <summary>
@@ -502,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;
@@ -920,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