|
|
@@ -1102,7 +1102,7 @@ document.onkeydown = function (e) {
|
|
1102
|
1102
|
}
|
|
1103
|
1103
|
|
|
1104
|
1104
|
// 导出
|
|
1105
|
|
-function dcexcel(state, isdc, CJ, reduction) {
|
|
|
1105
|
+function dcexcel(state, isdc, CJ, reduction, isreductions) {
|
|
1106
|
1106
|
|
|
1107
|
1107
|
if (isdc === 3) {
|
|
1108
|
1108
|
var isdc = 3;
|
|
|
@@ -1119,6 +1119,11 @@ function dcexcel(state, isdc, CJ, reduction) {
|
|
1119
|
1119
|
} else {
|
|
1120
|
1120
|
var reduction = reduction;
|
|
1121
|
1121
|
}
|
|
|
1122
|
+ if (isreductions == undefined) {
|
|
|
1123
|
+ var isreductions = "";
|
|
|
1124
|
+ } else if(isreductions == 1) {
|
|
|
1125
|
+ var isreductions = isreductions;
|
|
|
1126
|
+ }
|
|
1122
|
1127
|
// if(state === )
|
|
1123
|
1128
|
var token = $.cookie("token");
|
|
1124
|
1129
|
var code = $("#searchCode").val(); //工单编号
|
|
|
@@ -1143,6 +1148,6 @@ function dcexcel(state, isdc, CJ, reduction) {
|
|
1143
|
1148
|
var url = huayi.config.callcenter_url + "WorkOrder/GetList?token=" + token;
|
|
1144
|
1149
|
url += "&state=" + state + "&code=" + code + "&area=" + area + "&office=" + office + "&starttime=" + starttime + "&endtime=" + endtime + "&keywords=" + keywords + "&productType=" + productType +"&productName=" + productName + "&productDate=" + productDate + "&batchNumber=" + batchNumber
|
|
1145
|
1150
|
+ "&manufacturer=" + manufacturer + "&problemCode=" + problemCode
|
|
1146
|
|
- + "&type=" + type + "&dealTimely=" + dealTimely + "&see=" + see + "&isdc=" + isdc + "&CJ=" + CJ + "&IsReduction=" + reduction + "&reminder=" + reminder + "&incomplete=" + complete + "&isdealfile=" + isdealfile;
|
|
|
1151
|
+ + "&type=" + type + "&dealTimely=" + dealTimely + "&see=" + see + "&isdc=" + isdc + "&CJ=" + CJ + "&IsReduction=" + reduction + "&reminder=" + reminder + "&incomplete=" + complete + "&isdealfile=" + isdealfile + "&isreductions=" + isreductions;
|
|
1147
|
1152
|
window.location.href = url;
|
|
1148
|
1153
|
}
|