From e67b811c4601e7a68c2a980cab2982aebf44c60c Mon Sep 17 00:00:00 2001
From: username@email.com <yzy2002yzy@163.com>
Date: 星期五, 03 四月 2026 08:46:43 +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