seimin 1 year ago
parent
commit
4e6a86edc5
2 changed files with 2 additions and 0 deletions
  1. 1 0
      src/views/IncidentNewList.vue
  2. 1 0
      src/views/incidentList.vue

+ 1 - 0
src/views/IncidentNewList.vue

@@ -434,6 +434,7 @@ export default {
434 434
         .post("service/bpm/bpm/delegateTask/" + this.modelsData.taskId, {
435 435
           assginee: selectUserId,
436 436
           incId: this.modelsData.assignee ? this.modelsData.id : undefined,
437
+          handlerIncidentId: this.modelsData.state.value === 'handler' ? this.modelsData.id : undefined,
437 438
           incidentId: this.modelsData.assignee ? undefined : this.modelsData.id,
438 439
           taskType: this.modelsData.state.value == 'handler' ? 'handlerform' : (this.modelsData.state.value == 'pending' ? 'receiveform' : undefined)
439 440
         })

+ 1 - 0
src/views/incidentList.vue

@@ -397,6 +397,7 @@ export default {
397 397
         .post("service/bpm/bpm/delegateTask/" + this.modelsData.taskId, {
398 398
           assginee: selectUserId,
399 399
           incId: this.modelsData.assignee ? this.modelsData.id : undefined,
400
+          handlerIncidentId: this.modelsData.state.value === 'handler' ? this.modelsData.id : undefined,
400 401
           incidentId: this.modelsData.assignee ? undefined : this.modelsData.id,
401 402
           taskType: this.modelsData.state.value == 'handler' ? 'handlerform' : (this.modelsData.state.value == 'pending' ? 'receiveform' : undefined)
402 403
         })