Selaa lähdekoodia

1.来电弹屏调用的接口写入log日志 2.分页存储过程 增加字段长度 3全部工单 页面中去掉已办结的搜索条件 审批页面去掉无用的搜索项

liyuanyuan 4 vuotta sitten
vanhempi
commit
35e5af635d

+ 3 - 3
web/BaseCallCenter.DBUtility/DbHelperSQL.cs

@@ -1339,10 +1339,10 @@ namespace YTSoft.DBUtility
1339 1339
             }
1340 1340
             SqlParameter[] Paras =
1341 1341
             {
1342
-                new SqlParameter("@SqlTable",SqlDbType.VarChar,1000),
1342
+                new SqlParameter("@SqlTable",SqlDbType.VarChar,3000),
1343 1343
                 new SqlParameter("@SqlPK",SqlDbType.VarChar,50),
1344
-                new SqlParameter("@SqlField",SqlDbType.VarChar,1000),
1345
-                new SqlParameter("@SqlWhere",SqlDbType.VarChar,1000),
1344
+                new SqlParameter("@SqlField",SqlDbType.VarChar,3000),
1345
+                new SqlParameter("@SqlWhere",SqlDbType.VarChar,3000),
1346 1346
                 new SqlParameter("@SqlOrder",SqlDbType.VarChar,200),
1347 1347
                 new SqlParameter("@PageSize",SqlDbType.Int),
1348 1348
                 new SqlParameter("@PageIndex",SqlDbType.Int),

+ 21 - 0
web/YTSoft.BaseCallCenter.MVCWeb/Content/js/callSocket.js

@@ -403,6 +403,27 @@ function Form_callCommingCaller (data) {
403 403
   
404 404
 
405 405
 
406
+
407
+
408
+ 
409
+    $.ajax({
410
+
411
+        url: "/OCXOpt/writelog",
412
+        type: "post",
413
+        async: false,//同步请求
414
+
415
+        dataType: "json",
416
+        cache: false,
417
+        data: { message: opturl },
418
+        success: function (res) {
419
+        }
420
+    });
421
+
422
+
423
+
424
+
425
+
426
+
406 427
   $.ajax({
407 428
     type: 'get',
408 429
     url: opturl,

+ 6 - 0
web/YTSoft.BaseCallCenter.MVCWeb/Controllers/OCXOptController.cs

@@ -767,6 +767,12 @@ namespace YTSoft.BaseCallCenter.MVCWeb.Controllers
767 767
             return res;
768 768
         }
769 769
 
770
+
771
+        public void writelog(string message) {
772
+
773
+            LogHelper.Default.WriteError(message);
774
+        }
775
+
770 776
         #endregion
771 777
 
772 778
     }

File diff suppressed because it is too large
+ 41 - 13
web/YTSoft.BaseCallCenter.MVCWeb/Controllers/Order/OrderController.cs


+ 1 - 1
web/YTSoft.BaseCallCenter.MVCWeb/Views/Order/OverOrderView.cshtml

@@ -116,7 +116,7 @@
116 116
                 <option value=""></option>
117 117
                 <option value="0">未处理</option>
118 118
                 <option value="1">处理中</option>
119
-                <option value="2">已办结</option>
119
+                @*<option value="2">已办结</option>*@
120 120
                 <option value="3">待回访</option>
121 121
                 <option value="4">待定责</option>
122 122
                 <option value="5">已处理</option>

+ 12 - 8
web/YTSoft.BaseCallCenter.MVCWeb/Views/Order/WorkOrderShenPiList.cshtml

@@ -114,10 +114,17 @@
114 114
               <input id="userInfo" type="text" name="title" autocomplete="off" class="layui-input">
115 115
             </div>
116 116
           </div>
117
+
118
+                 <div class="layui-input-inline">
119
+            <label class="layui-form-label">内容</label>
120
+            <div class="layui-input-block">
121
+              <input id="Content" type="text" name="title" autocomplete="off" class="layui-input">
122
+            </div>
123
+          </div>
117 124
           
118 125
         </div>
119 126
 
120
-        <div class="layui-form-item">
127
+        @*<div class="layui-form-item">
121 128
 
122 129
           
123 130
 
@@ -131,13 +138,10 @@
131 138
             </div>
132 139
           </div>
133 140
 
134
-          <div class="layui-input-inline">
135
-            <label class="layui-form-label">内容</label>
136
-            <div class="layui-input-block">
137
-              <input id="Content" type="text" name="title" autocomplete="off" class="layui-input">
138
-            </div>
139
-          </div>
140
-        </div>
141
+     
142
+
143
+
144
+        </div>*@
141 145
 
142 146
       </form>
143 147
 

BIN
地铁1021更新的代码包.rar