Kaynağa Gözat

重复投诉表

liuyifan 5 yıl önce
ebeveyn
işleme
67f3c5ed04

+ 18 - 0
CallCenterWeb.UI/.project

105
 				<arguments>1.0-name-matches-false-false-node_modules</arguments>
105
 				<arguments>1.0-name-matches-false-false-node_modules</arguments>
106
 			</matcher>
106
 			</matcher>
107
 		</filter>
107
 		</filter>
108
+		<filter>
109
+			<id>1589250229656</id>
110
+			<name></name>
111
+			<type>26</type>
112
+			<matcher>
113
+				<id>org.eclipse.ui.ide.multiFilter</id>
114
+				<arguments>1.0-name-matches-false-false-node_modules</arguments>
115
+			</matcher>
116
+		</filter>
117
+		<filter>
118
+			<id>1589275565983</id>
119
+			<name></name>
120
+			<type>26</type>
121
+			<matcher>
122
+				<id>org.eclipse.ui.ide.multiFilter</id>
123
+				<arguments>1.0-name-matches-false-false-node_modules</arguments>
124
+			</matcher>
125
+		</filter>
108
 	</filteredResources>
126
 	</filteredResources>
109
 </projectDescription>
127
 </projectDescription>

+ 7 - 2
CallCenterWeb.UI/ReportForm/repeatComplaintForm.html

72
 							<i class="tub fa fa-calendar"></i>
72
 							<i class="tub fa fa-calendar"></i>
73
 							<input class="form-control" type="text" id="startTime" placeholder="请选择时间" style="width: 228px;">
73
 							<input class="form-control" type="text" id="startTime" placeholder="请选择时间" style="width: 228px;">
74
 						</div>
74
 						</div>
75
+						<div class="form-group">
76
+							<input class="form-control" type="text" id="searchKeywords" placeholder="请输入关键字">
77
+						</div>
75
 						<div class="form-group tool_bars pull-right">
78
 						<div class="form-group tool_bars pull-right">
76
 							<button class="btns sear">搜索</button>
79
 							<button class="btns sear">搜索</button>
77
 							<a class="btns export">导出</a>
80
 							<a class="btns export">导出</a>
123
 			});
126
 			});
124
 
127
 
125
 			function dcexcel(obj) {
128
 			function dcexcel(obj) {
126
-				var isExport = 1;
129
+				var isExport = 2;
130
+				var keywords = $("#searchKeywords").val();//关键字
127
 				var url = huayi.config.callcenter_url + "WorkOrder/GetList?token=" + token;
131
 				var url = huayi.config.callcenter_url + "WorkOrder/GetList?token=" + token;
128
-				url += "&starttime=" + stime + "&endtime=" + endtime + "&istime=" + isTime + "&isdc=" + isExport + "&duplicate=" + 1;
132
+				url += "&starttime=" + stime + "&endtime=" + endtime + "&istime=" + isTime + "&isdc=" + isExport + "&duplicate=" + 1 + "&keywords=" + keywords;
129
 				window.location.href = url;
133
 				window.location.href = url;
130
 			}
134
 			}
131
 			//按回车搜索
135
 			//按回车搜索
157
 							token: token,
161
 							token: token,
158
 							duplicate: 1,
162
 							duplicate: 1,
159
 							istime: $("#isTime").val(),
163
 							istime: $("#isTime").val(),
164
+							keywords: $("#searchKeywords").val(),//关键字
160
 							isdc: 0,
165
 							isdc: 0,
161
 						}, 
166
 						}, 
162
 						request: {
167
 						request: {

+ 2 - 4
CallCenterWeb.UI/js/WorkOrder/WorkOrder.js

752
     $("#searchManufacturerDataList").append('<option value="不清"></option>');
752
     $("#searchManufacturerDataList").append('<option value="不清"></option>');
753
     $.getJSON(huayi.config.callcenter_url + "EquipmentNumber/GetList", {
753
     $.getJSON(huayi.config.callcenter_url + "EquipmentNumber/GetList", {
754
         "token": $.cookie("token"),
754
         "token": $.cookie("token"),
755
-        keywords: "",
756
         pageindex: "1",
755
         pageindex: "1",
757
         pagesize: "200",
756
         pagesize: "200",
758
     }, function (data) {
757
     }, function (data) {
1110
 	var code = $("#searchCode").val(); //工单编号
1109
 	var code = $("#searchCode").val(); //工单编号
1111
 	var area = $("#searchRegionId").val(); //大区
1110
 	var area = $("#searchRegionId").val(); //大区
1112
 	var office = $("#searchOfficeId").val(); //办事处
1111
 	var office = $("#searchOfficeId").val(); //办事处
1113
-	// var officeName = $("#searchOfficeName").val(); //办事处
1114
 	var starttime = $('#greetingTimes').val() && $('#greetingTimes').val().split(' ~ ')[0]; //开始时间
1112
 	var starttime = $('#greetingTimes').val() && $('#greetingTimes').val().split(' ~ ')[0]; //开始时间
1115
 	var endtime = $('#greetingTimes').val() && $('#greetingTimes').val().split(' ~ ')[1]; //结束时间
1113
 	var endtime = $('#greetingTimes').val() && $('#greetingTimes').val().split(' ~ ')[1]; //结束时间
1114
+	var keywords = $("#searchKeywords").val();//关键字
1116
 	var productType = $("#searchProductType").val(); //产品代码
1115
 	var productType = $("#searchProductType").val(); //产品代码
1117
 	var productName = $("#searchProductName").val(); //产品名称
1116
 	var productName = $("#searchProductName").val(); //产品名称
1118
 	var productDate = $("#searchProductDate").val(); //生产日期
1117
 	var productDate = $("#searchProductDate").val(); //生产日期
1125
 	var reminder = $("#searchReminder").val(); //是否催单
1124
 	var reminder = $("#searchReminder").val(); //是否催单
1126
 
1125
 
1127
 	var url = huayi.config.callcenter_url + "WorkOrder/GetList?token=" + token;
1126
 	var url = huayi.config.callcenter_url + "WorkOrder/GetList?token=" + token;
1128
-	url += "&state=" + state + "&code=" + code + "&area=" + area + "&office=" + office + "&starttime=" + starttime
1129
-	+ "&endtime=" + endtime + "&productType=" + productType +"&productName=" + productName + "&productDate=" + productDate + "&batchNumber=" + batchNumber
1127
+	url += "&state=" + state + "&code=" + code + "&area=" + area + "&office=" + office + "&starttime=" + starttime + "&endtime=" + endtime + "&keywords=" + keywords + "&productType=" + productType +"&productName=" + productName + "&productDate=" + productDate + "&batchNumber=" + batchNumber
1130
 	+ "&manufacturer=" + manufacturer + "&problemCode=" + problemCode 
1128
 	+ "&manufacturer=" + manufacturer + "&problemCode=" + problemCode 
1131
 	+ "&type=" + type + "&dealTimely=" + dealTimely + "&see=" + see + "&isdc=" + isdc + "&CJ=" + CJ + "&IsReduction=" + reduction + "&reminder=" + reminder;
1129
 	+ "&type=" + type + "&dealTimely=" + dealTimely + "&see=" + see + "&isdc=" + isdc + "&CJ=" + CJ + "&IsReduction=" + reduction + "&reminder=" + reminder;
1132
 	window.location.href = url;
1130
 	window.location.href = url;