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.SQLDAL/OA/OA_StaffDAL.cs |   18 +++++++++++++++---
 1 files changed, 15 insertions(+), 3 deletions(-)

diff --git a/CY_ECommercePlatform/CY.SQLDAL/OA/OA_StaffDAL.cs b/CY_ECommercePlatform/CY.SQLDAL/OA/OA_StaffDAL.cs
index 5bf7d7d..1063f94 100644
--- a/CY_ECommercePlatform/CY.SQLDAL/OA/OA_StaffDAL.cs
+++ b/CY_ECommercePlatform/CY.SQLDAL/OA/OA_StaffDAL.cs
@@ -96,7 +96,13 @@
                     new SqlParameter("@ManageProvince", trueModel.ManageProvince) ,            
                     new SqlParameter("@ManageCity", trueModel.ManageCity) ,            
                     new SqlParameter("@ManageCountry", trueModel.ManageCountry) ,            
-                    new SqlParameter("@ManageCountry1", trueModel.ManageCountry1) 
+                    new SqlParameter("@ManageCountry1", trueModel.ManageCountry1) ,
+                    new SqlParameter("@BF_IsDeliverManage", trueModel.BF_IsDeliverManage) ,
+                    new SqlParameter("@BF_IsDriver", trueModel.BF_IsDriver) ,
+                      new SqlParameter("@BF_Isbaoxiaojingli", trueModel.BF_Isbaoxiaojingli) ,
+                         new SqlParameter("@BF_IsBaoxiaozhuguan", trueModel.BF_IsBaoxiaozhuguan) ,
+                            new SqlParameter("@BF_IsGongwen", trueModel.BF_IsGongwen.HasValue?trueModel.BF_IsGongwen.Value:false) ,
+                             new SqlParameter("@BF_IsChangyongziliao", trueModel.BF_IsChangyongziliao.HasValue?trueModel.BF_IsChangyongziliao.Value:false) ,
             };
             try
             {
@@ -186,7 +192,13 @@
                     new SqlParameter("@ManageProvince", trueModel.ManageProvince) ,
                     new SqlParameter("@ManageCity", trueModel.ManageCity) ,            
                     new SqlParameter("@ManageCountry", trueModel.ManageCountry)  ,            
-                    new SqlParameter("@ManageCountry1", trueModel.ManageCountry1) 
+                    new SqlParameter("@ManageCountry1", trueModel.ManageCountry1) ,
+                    new SqlParameter("@BF_IsDeliverManage", trueModel.BF_IsDeliverManage) ,
+                    new SqlParameter("@BF_IsDriver", trueModel.BF_IsDriver) ,
+                         new SqlParameter("@BF_Isbaoxiaojingli", trueModel.BF_Isbaoxiaojingli) ,
+                         new SqlParameter("@BF_IsBaoxiaozhuguan", trueModel.BF_IsBaoxiaozhuguan) ,
+                          new SqlParameter("@BF_IsGongwen", trueModel.BF_IsGongwen.HasValue?trueModel.BF_IsGongwen.Value:false) ,
+                          new SqlParameter("@BF_IsChangyongziliao", trueModel.BF_IsChangyongziliao.HasValue?trueModel.BF_IsChangyongziliao.Value:false) ,
             };
             try
             {
@@ -321,7 +333,7 @@
                 {
                     condition += " and a.DepartmentId = '" + DepartmentId + "'";
                 }
-                return _dataBase.SelectModelPage<Model.OA_Staff>(pagination, " a.*,b.Name as DepartmentName ", " dbo.OA_Staff AS a LEFT JOIN dbo.OA_Department AS b ON a.DepartmentId = b.Keyid ", "a.Status DESC,a.DepartmentId ASC ", " Status DESC,DepartmentId ASC ", condition);
+                return _dataBase.SelectModelPage<Model.OA_Staff>(pagination, " a.*,b.Name as DepartmentName ", " dbo.OA_Staff AS a LEFT JOIN dbo.OA_Department AS b ON a.DepartmentId = b.Keyid ", "a.Status DESC,a.DepartmentId ASC ,a.SM_Post DESC", " Status DESC,DepartmentId ASC,SM_Post DESC ", condition);
             }
             catch (Exception ex)
             {

--
Gitblit v1.9.1