From be3203181cf0dfdc66adda9c442a165d96fc9833 Mon Sep 17 00:00:00 2001
From: username@email.com <yzy2002yzy@163.com>
Date: 星期五, 20 三月 2026 11:51:15 +0800
Subject: [PATCH] 已经派了工的学校的“送货时间”改为绿色,逾期为点完成送货操作的“送货时间”变为红色,这样以示区别 完成
---
CY_ECommercePlatform/CY.WebForm/Pages/work/OA_DocumentAdd.aspx.cs | 12 ++++++++----
1 files changed, 8 insertions(+), 4 deletions(-)
diff --git a/CY_ECommercePlatform/CY.WebForm/Pages/work/OA_DocumentAdd.aspx.cs b/CY_ECommercePlatform/CY.WebForm/Pages/work/OA_DocumentAdd.aspx.cs
index 337748d..1c905ad 100644
--- a/CY_ECommercePlatform/CY.WebForm/Pages/work/OA_DocumentAdd.aspx.cs
+++ b/CY_ECommercePlatform/CY.WebForm/Pages/work/OA_DocumentAdd.aspx.cs
@@ -49,7 +49,7 @@
{
this.txtDM_Title.Value = "";
this.txtDM_Content.Text = "";
- this.txtDM_ThemeWords.Value = "";
+ //this.txtDM_ThemeWords.Value = "";
this.txtDM_CCUnit.Text = "";
this.txtDM_PrintNumber.Value = "";
this.txtDM_PostingId.SelectedValue = "";
@@ -57,6 +57,7 @@
this.txtDM_DocumentType.Value = "";
this.txtDM_Number.Value = "";
this.txtDM_DocumentNumber.InnerHtml = "";
+ this.txtKonghangshu.Value = "";
if (!string.IsNullOrEmpty(Request["keyid"]))
{
@@ -65,7 +66,8 @@
{
this.txtDM_Title.Value = m_OA_Document.DM_Title.ToString2(); ;
this.txtDM_Content.Text = m_OA_Document.DM_Content;
- this.txtDM_ThemeWords.Value = m_OA_Document.DM_ThemeWords;
+ //this.txtDM_ThemeWords.Value = m_OA_Document.DM_ThemeWords;
+ this.txtKonghangshu.Value = m_OA_Document.Konghangshu.HasValue? m_OA_Document.Konghangshu.Value.ToString() : "";
this.txtDM_CCUnit.Text = m_OA_Document.DM_CCUnit;
this.txtDM_PrintNumber.Value = m_OA_Document.DM_PrintNumber.HasValue ? m_OA_Document.DM_PrintNumber.Value.ToString() : "";
this.txtDM_PostingId.SelectedValue = m_OA_Document.DM_PostingId.HasValue ? m_OA_Document.DM_PostingId.Value.ToString() : "";
@@ -106,7 +108,8 @@
//m_OA_Document.DM_DocumentNumber = m_OA_DocumentDic.ParType + "(" + DateTime.Now.Year.ToString2() + ")" + "绗� " + this.txtDM_Number.Value.ToInt32().Value.ToString("000") + " 鍙�";
m_OA_Document.DM_Title = this.txtDM_Title.Value.ToString2();
m_OA_Document.DM_Content = this.txtDM_Content.Text.ToString2();
- m_OA_Document.DM_ThemeWords = this.txtDM_ThemeWords.Value.ToString2();
+ m_OA_Document.DM_ThemeWords = "";// this.txtDM_ThemeWords.Value.ToString2();
+ m_OA_Document.Konghangshu = this.txtKonghangshu.Value.ToInt32();
m_OA_Document.DM_CCUnit = this.txtDM_CCUnit.Text.ToString2();
m_OA_Document.DM_PrintNumber = this.txtDM_PrintNumber.Value.ToInt32();
m_OA_Document.LastUpdateTime = nowTime;
@@ -139,7 +142,8 @@
m_OA_Document.DM_DocumentNumber = m_OA_DocumentDic.ParType + "(" + DateTime.Now.Year.ToString2() + ")" + "绗� " + this.txtDM_Number.Value.ToInt32().Value.ToString("000") + " 鍙�";
m_OA_Document.DM_Title = this.txtDM_Title.Value.ToString2();
m_OA_Document.DM_Content = this.txtDM_Content.Text.ToString2();
- m_OA_Document.DM_ThemeWords = this.txtDM_ThemeWords.Value.ToString2();
+ m_OA_Document.DM_ThemeWords = "";// this.txtDM_ThemeWords.Value.ToString2();
+ m_OA_Document.Konghangshu = this.txtKonghangshu.Value.ToInt32();
m_OA_Document.DM_CCUnit = this.txtDM_CCUnit.Text.ToString2();
m_OA_Document.DM_PrintNumber = this.txtDM_PrintNumber.Value.ToInt32();
m_OA_Document.LastUpdateTime = nowTime;
--
Gitblit v1.9.1