From 1280aa7ceaeffcdcd52e3c0fd45c86f608f9f0cf Mon Sep 17 00:00:00 2001
From: username@email.com <yzy2002yzy@163.com>
Date: 星期二, 05 八月 2025 09:02:10 +0800
Subject: [PATCH] 20250804 供应商,新增采购,过滤供应商

---
 CY_ECommercePlatform/CY.WebForm/Pages/work/OA_DocumentAdd.aspx.cs |    4 ++++
 1 files changed, 4 insertions(+), 0 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..709a43b 100644
--- a/CY_ECommercePlatform/CY.WebForm/Pages/work/OA_DocumentAdd.aspx.cs
+++ b/CY_ECommercePlatform/CY.WebForm/Pages/work/OA_DocumentAdd.aspx.cs
@@ -57,6 +57,7 @@
             this.txtDM_DocumentType.Value = "";
             this.txtDM_Number.Value = "";
             this.txtDM_DocumentNumber.InnerHtml = "";
+            this.txtKonghangshu.Value = "";
 
             if (!string.IsNullOrEmpty(Request["keyid"]))
             {
@@ -66,6 +67,7 @@
                     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.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() : "";
@@ -107,6 +109,7 @@
                     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.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;
@@ -140,6 +143,7 @@
                     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.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