Просмотр исходного кода

mod:工单信息简单接口返回工单内容以及忽略文件提交

weieryang лет назад: 3
Родитель
Сommit
7ea6c5b8c2

+ 26 - 0
.gitignore

3
 ################################################################################
3
 ################################################################################
4
 
4
 
5
 /CallCenterApi/CallCenterApi.Interface/CallCenterApi.Interface/Upload/Files/2022/06/22
5
 /CallCenterApi/CallCenterApi.Interface/CallCenterApi.Interface/Upload/Files/2022/06/22
6
+.vs/
7
+CallCenterApi/CallCenterAPI.WechatSDK/bin/
8
+CallCenterApi/CallCenterAPI.WechatSDK/obj/
9
+CallCenterApi/CallCenterApi.BLL/bin/
10
+CallCenterApi/CallCenterApi.BLL/obj/
11
+CallCenterApi/CallCenterApi.Common/bin/
12
+CallCenterApi/CallCenterApi.Common/obj/
13
+CallCenterApi/CallCenterApi.DAL/bin/
14
+CallCenterApi/CallCenterApi.DAL/obj/
15
+CallCenterApi/CallCenterApi.DB/bin/
16
+CallCenterApi/CallCenterApi.DB/obj/
17
+CallCenterApi/CallCenterApi.Interface/CallCenterApi.Interface/CallCenterApi.Interface.csproj.user
18
+CallCenterApi/CallCenterApi.Interface/CallCenterApi.Interface/bin/
19
+CallCenterApi/CallCenterApi.Interface/CallCenterApi.Interface/obj/
20
+CallCenterApi/CallCenterApi.Model/bin/
21
+CallCenterApi/CallCenterApi.Model/obj/
22
+CallCenterCommon/CallCenter.QuartzService/bin/
23
+CallCenterCommon/CallCenter.QuartzService/obj/
24
+CallCenterCommon/CallCenter.Utility/bin/
25
+CallCenterCommon/CallCenter.Utility/obj/
26
+CallCenterCommon/CallCenter.WebChatServer/bin/
27
+CallCenterCommon/CallCenter.WebChatServer/obj/
28
+Push/bin/
29
+Push/obj/
30
+packages/
31
+

+ 1 - 1
CallCenterApi/CallCenterApi.Interface/CallCenterApi.Interface/Controllers/workorder/WorkOrderController.cs

8051
             string strworkorderid = HttpUtility.UrlDecode(RequestString.GetQueryString("workorderid"));
8051
             string strworkorderid = HttpUtility.UrlDecode(RequestString.GetQueryString("workorderid"));
8052
             if (!string.IsNullOrEmpty(strworkorderid))
8052
             if (!string.IsNullOrEmpty(strworkorderid))
8053
             {
8053
             {
8054
-                string sql = "select F_WorkOrderId,F_CreateTime,F_ComTitle,F_Result,dbo.GetDictionaryName(F_InfoSource) as SourceName,dbo.GetDeptName(F_MainDeptId) deptname "
8054
+                string sql = "select F_WorkOrderId,F_CreateTime,F_ComTitle,F_ComContent,F_Result,dbo.GetDictionaryName(F_InfoSource) as SourceName,dbo.GetDeptName(F_MainDeptId) deptname "
8055
                     + " from T_Bus_WorkOrder WITH(NOLOCK) where F_WorkOrderId ='" + strworkorderid + "'";
8055
                     + " from T_Bus_WorkOrder WITH(NOLOCK) where F_WorkOrderId ='" + strworkorderid + "'";
8056
                 var dt = DbHelperSQL.Query(sql).Tables[0];
8056
                 var dt = DbHelperSQL.Query(sql).Tables[0];
8057
                 if (dt.Rows.Count > 0)
8057
                 if (dt.Rows.Count > 0)