|
@@ -54,6 +54,7 @@ export class OrderManagementComponent implements OnInit {
|
54
|
54
|
allTasktype: any = []; //当前院区任务类型列表
|
55
|
55
|
gdState: number; //选择工单状态
|
56
|
56
|
specialCloseFlag: any; //特殊情况关闭
|
|
57
|
+ workOrderRemark: string = ''; //工单备注
|
57
|
58
|
dateRange: any = []; //发起时间
|
58
|
59
|
gdStates: any; //工单状态列表
|
59
|
60
|
pageIndex: number = 1; //页码
|
|
@@ -103,6 +104,7 @@ export class OrderManagementComponent implements OnInit {
|
103
|
104
|
this.gdcode = "";
|
104
|
105
|
this.gdState = null;
|
105
|
106
|
this.specialCloseFlag = null;
|
|
107
|
+ this.workOrderRemark = '';
|
106
|
108
|
this.dateRange = [];
|
107
|
109
|
this.changeDate();
|
108
|
110
|
this.getList();
|
|
@@ -255,6 +257,7 @@ export class OrderManagementComponent implements OnInit {
|
255
|
257
|
} else if (that.startDate && that.endDate) {
|
256
|
258
|
data.workOrder.startTime1 = that.startDate;
|
257
|
259
|
data.workOrder.endTime1 = that.endDate;
|
|
260
|
+ data.workOrder.workOrderRemark = that.workOrderRemark;
|
258
|
261
|
}
|
259
|
262
|
that.mapOfCheckedId = {};
|
260
|
263
|
that.checkedDepIds = [];
|
|
@@ -435,6 +438,7 @@ export class OrderManagementComponent implements OnInit {
|
435
|
438
|
} else if (that.startDate && that.endDate) {
|
436
|
439
|
postData.workOrder.startTime1 = that.startDate;
|
437
|
440
|
postData.workOrder.endTime1 = that.endDate;
|
|
441
|
+ postData.workOrder.workOrderRemark = that.workOrderRemark;
|
438
|
442
|
}
|
439
|
443
|
this.loading2 = true;
|
440
|
444
|
that.mainService.dataExport("workOrder", postData).subscribe(
|