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