Browse Source

指派转派请求参数修改

seimin 5 months ago
parent
commit
ed08946eb8

+ 3 - 0
src/app/components/incidentManagement/incident-substitution/incident-substitution.component.ts

@@ -139,6 +139,8 @@ export class IncidentSubstitutionComponent implements OnInit {
139
         delete postData.incident.assignee;
139
         delete postData.incident.assignee;
140
       }
140
       }
141
 
141
 
142
+      postData.incident.candidateGroupId = this.assign.validateForm.value.groupId;
143
+
142
       this.mainService
144
       this.mainService
143
       .flowPost("incident/task/redeploy", postData)
145
       .flowPost("incident/task/redeploy", postData)
144
       .subscribe((result) => {
146
       .subscribe((result) => {
@@ -179,6 +181,7 @@ export class IncidentSubstitutionComponent implements OnInit {
179
         delete postData.incident.assignee;
181
         delete postData.incident.assignee;
180
       }
182
       }
181
 
183
 
184
+      postData.incident.candidateGroupId = this.assign.validateForm.value.groupId;
182
       postData.incident.duty = { id: this.assign.validateForm.value.dutyId };
185
       postData.incident.duty = { id: this.assign.validateForm.value.dutyId };
183
 
186
 
184
       this.mainService
187
       this.mainService