From b1ac791a0e8896ee3d2016949911d44c9f0fb7a9 Mon Sep 17 00:00:00 2001
From: username@email.com <yzy2002yzy@163.com>
Date: 星期一, 16 三月 2026 13:17:23 +0800
Subject: [PATCH] 封面的构件选项修改为“封面、封内合拼、多单合拼、内页”,默认封面 选择了封面构件后,新增的内页构件中的选项该为“内页、多单合拼”, 默认内页 专版按以上 合版的选项中增加“无”,默认无 无”打印的时候为空白,不显示“无”字
---
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