From 374ce108d737c1e4d6608989090195a7346d10ad Mon Sep 17 00:00:00 2001
From: username@email.com <yzy2002yzy@163.com>
Date: 星期四, 26 二月 2026 08:47:21 +0800
Subject: [PATCH] 优化格式美观度。 完成 (1)“印刷、打包、送货要求”放在右边的格子里面;右边格子拉通 (2)“单价”和“总价”的格子比例要调整适中 (3)把“印件名称”放在第一格 (1)操作中增加“问题处理”,进行处理操作  完成 (2)问题反馈除了生成在这个列表中,还要自动推送给对应订单的下单人或者送货安排(发起工作安排)的安排人,显示在他们的“工作提醒”中,处理完了就在列表中变成已完成问题处理,显示“√”,点“√”进去就显示谁处理的、什么时候处理的。  完成 生产施工单中,选“轮转印刷机”的,删除“纸张数量(张)”和“开料规格”  完成

---
 CY_ECommercePlatform/CY.WebForm/Helper/upLoadContractFile.cs |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/CY_ECommercePlatform/CY.WebForm/Helper/upLoadContractFile.cs b/CY_ECommercePlatform/CY.WebForm/Helper/upLoadContractFile.cs
index d9701e3..3c06ab6 100644
--- a/CY_ECommercePlatform/CY.WebForm/Helper/upLoadContractFile.cs
+++ b/CY_ECommercePlatform/CY.WebForm/Helper/upLoadContractFile.cs
@@ -38,7 +38,7 @@
                 if (CountractFileKeiId != null)
                 {
                     //淇敼鏂囦欢
-                    sqlStr = string.Format(@"SELECT  [Keyid]     ,[FileName]    ,[PageCode]    ,[FilePath]    ,[Remark] FROM [ECTEST].[dbo].[OA_CorporateClientContract] where Keyid='{0}'", CountractFileKeiId.ToString());
+                    sqlStr = string.Format(@"SELECT  [Keyid]     ,[FileName]    ,[PageCode]    ,[FilePath]    ,[Remark] FROM  [dbo].[OA_CorporateClientContract] where Keyid='{0}'", CountractFileKeiId.ToString());
                     //寮�濮嬩慨鏀规枃浠�
                     SqlCommand myCmd = new SqlCommand(sqlStr, DC.Connection);
 
@@ -84,7 +84,7 @@
                         throw e;
                     }
                     //鍐欏叆鏁版嵁搴�
-                    sqlStr = string.Format(@"USE [ECTEST]  INSERT INTO [dbo].[OA_CorporateClientContract]           ([Keyid]           ,[CorporateClientsid]           ,[CorporateClientsName]           ,[FileName]           ,[PageCode]           ,[FilePath]           ,[Remark]           ,[Creater]           ,[CreateTime]           )     VALUES('{0}'    ,'{1}'       ,'{2}'           ,'{3}'           ,'{4}'           ,'{5}'           ,'{6}'           ,'{7}'           ,'{8}')",Guid.NewGuid().ToString(), Contract.CorporateClientsid.ToString(),"", Contract.FileName, Contract.PageCode, FilePath, Contract.Remark, Contract.Creater,DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"));
+                    sqlStr = string.Format(@"  INSERT INTO [dbo].[OA_CorporateClientContract]           ([Keyid]           ,[CorporateClientsid]           ,[CorporateClientsName]           ,[FileName]           ,[PageCode]           ,[FilePath]           ,[Remark]           ,[Creater]           ,[CreateTime]           )     VALUES('{0}'    ,'{1}'       ,'{2}'           ,'{3}'           ,'{4}'           ,'{5}'           ,'{6}'           ,'{7}'           ,'{8}')",Guid.NewGuid().ToString(), Contract.CorporateClientsid.ToString(),"", Contract.FileName, Contract.PageCode, FilePath, Contract.Remark, Contract.Creater,DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"));
                     try
                     {
                         SqlCommand myCmd = new SqlCommand(sqlStr, DC.Connection);

--
Gitblit v1.9.1