From a737eb14fe1b705b07f017e0edc002fae6f857c3 Mon Sep 17 00:00:00 2001
From: username@email.com <yzy2002yzy@163.com>
Date: 星期五, 03 四月 2026 12:59:20 +0800
Subject: [PATCH] 发版套数再增加自定义填写数字 补单的生产施工单不要默认开料规格的数据 "付款未开票”列表中的金额合计放在“金额”格子下面,既要单页合计,又要每页的全部合计 生产要求跟“数量: ”的宽度一样 印刷数量的填写格子跟后道工序一样长
---
CY_ECommercePlatform/CY.WebForm/Pages/work/OA_DocumentAdd.aspx.cs | 8 ++++----
1 files changed, 4 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 709a43b..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 = "";
@@ -66,7 +66,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.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() : "";
@@ -108,7 +108,7 @@
//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();
@@ -142,7 +142,7 @@
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();
--
Gitblit v1.9.1