diff --git a/jero-web/src/views/processCenter/components/engineeringConfirmation.vue b/jero-web/src/views/processCenter/components/engineeringConfirmation.vue index f298ae329..0d5b330b6 100644 --- a/jero-web/src/views/processCenter/components/engineeringConfirmation.vue +++ b/jero-web/src/views/processCenter/components/engineeringConfirmation.vue @@ -504,6 +504,7 @@ for (let j = 0; j < this.distributionEngineerList.length; j++) { if (this.dataSourceTable[i].userId == this.distributionEngineerList[j].userId) { this.distributionEngineerList[j].isSend = '1' + this.distributionEngineerList[j].id = this.dataSourceTable[i].id } } } @@ -687,7 +688,15 @@ userId: this.formInline[value].split(',')[index] }) }) + for (let i = 0; i < this.dataSourceTable.length; i++) { + for (let j = 0; j < this.distributionEngineerList.length; j++) { + if (this.dataSourceTable[i].userId == this.distributionEngineerList[j].userId) { + this.distributionEngineerList[j].deliveryInstructions = this.dataSourceTable[i].deliveryInstructions + } + } + } } + this.distributionEngineerList = [...this.distributionEngineerList] this.formInline = { ...this.formInline } }, deleteText(num) {