Browse Source

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

liyuanyuan 4 years ago
parent
commit
35e5af635d

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

1339
             }
1339
             }
1340
             SqlParameter[] Paras =
1340
             SqlParameter[] Paras =
1341
             {
1341
             {
1342
-                new SqlParameter("@SqlTable",SqlDbType.VarChar,1000),
1342
+                new SqlParameter("@SqlTable",SqlDbType.VarChar,3000),
1343
                 new SqlParameter("@SqlPK",SqlDbType.VarChar,50),
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
                 new SqlParameter("@SqlOrder",SqlDbType.VarChar,200),
1346
                 new SqlParameter("@SqlOrder",SqlDbType.VarChar,200),
1347
                 new SqlParameter("@PageSize",SqlDbType.Int),
1347
                 new SqlParameter("@PageSize",SqlDbType.Int),
1348
                 new SqlParameter("@PageIndex",SqlDbType.Int),
1348
                 new SqlParameter("@PageIndex",SqlDbType.Int),

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

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
   $.ajax({
427
   $.ajax({
407
     type: 'get',
428
     type: 'get',
408
     url: opturl,
429
     url: opturl,

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

767
             return res;
767
             return res;
768
         }
768
         }
769
 
769
 
770
+
771
+        public void writelog(string message) {
772
+
773
+            LogHelper.Default.WriteError(message);
774
+        }
775
+
770
         #endregion
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
                 <option value=""></option>
116
                 <option value=""></option>
117
                 <option value="0">未处理</option>
117
                 <option value="0">未处理</option>
118
                 <option value="1">处理中</option>
118
                 <option value="1">处理中</option>
119
-                <option value="2">已办结</option>
119
+                @*<option value="2">已办结</option>*@
120
                 <option value="3">待回访</option>
120
                 <option value="3">待回访</option>
121
                 <option value="4">待定责</option>
121
                 <option value="4">待定责</option>
122
                 <option value="5">已处理</option>
122
                 <option value="5">已处理</option>

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

114
               <input id="userInfo" type="text" name="title" autocomplete="off" class="layui-input">
114
               <input id="userInfo" type="text" name="title" autocomplete="off" class="layui-input">
115
             </div>
115
             </div>
116
           </div>
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
         </div>
125
         </div>
119
 
126
 
120
-        <div class="layui-form-item">
127
+        @*<div class="layui-form-item">
121
 
128
 
122
           
129
           
123
 
130
 
131
             </div>
138
             </div>
132
           </div>
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
       </form>
146
       </form>
143
 
147
 

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