Explorar el Código

Merge branch 'master' of http://192.168.1.222:3000/duhongyu/HeBi12345_API

liyuanyuan %!s(int64=3) %!d(string=hace) años
padre
commit
535c5f0981

+ 26 - 0
.gitignore

@@ -3,3 +3,29 @@
3 3
 ################################################################################
4 4
 
5 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
+

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

@@ -8051,7 +8051,7 @@ namespace CallCenterApi.Interface.Controllers.workorder
8051 8051
             string strworkorderid = HttpUtility.UrlDecode(RequestString.GetQueryString("workorderid"));
8052 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 8055
                     + " from T_Bus_WorkOrder WITH(NOLOCK) where F_WorkOrderId ='" + strworkorderid + "'";
8056 8056
                 var dt = DbHelperSQL.Query(sql).Tables[0];
8057 8057
                 if (dt.Rows.Count > 0)
@@ -21786,7 +21786,7 @@ namespace CallCenterApi.Interface.Controllers.workorder
21786 21786
                 string Dataurl = web.DownloadString(url + "case_material_info" + "?WorkOrderId=" + WorkOrderId + "&file=" + file + "&id=" + id + "&type=" + type);
21787 21787
             }
21788 21788
         }
21789
-        #endregion\
21789
+        #endregion
21790 21790
 
21791 21791
 
21792 21792