Merge remote-tracking branch 'origin/fix_uat_20230719' into fix_uat_20230719
This commit is contained in:
+4
@@ -401,6 +401,7 @@
|
||||
position: absolute;
|
||||
right: 330px;
|
||||
top: 50%;
|
||||
font-size: 14px;
|
||||
transform: translate-Y(-50%);
|
||||
}
|
||||
|
||||
@@ -411,12 +412,14 @@
|
||||
position: absolute;
|
||||
right: 450px;
|
||||
top: 50%;
|
||||
font-size: 14px;
|
||||
transform: translate-Y(-50%);
|
||||
}
|
||||
|
||||
.text-text-right-text-One {
|
||||
width: 120px;
|
||||
height: 100%;
|
||||
font-size: 14px;
|
||||
text-align: center;
|
||||
position: absolute;
|
||||
right: 210px;
|
||||
@@ -427,6 +430,7 @@
|
||||
.text-text-right-text {
|
||||
width: 210px;
|
||||
height: 100%;
|
||||
font-size: 14px;
|
||||
text-align: center;
|
||||
position: absolute;
|
||||
right: 0;
|
||||
|
||||
@@ -2026,7 +2026,7 @@
|
||||
contentList[i].verifyFlowStatus == 'Duty Person Rejected' ||
|
||||
contentList[i].designFlowStatus == 'Duty Person Rejected') {
|
||||
idList.push(contentList[i].id)
|
||||
}else if(contentList[i].designFlowStatus == 'NA' || contentList[i].verifyFlowStatus == 'NA'){
|
||||
} else if (contentList[i].designFlowStatus == 'NA' || contentList[i].verifyFlowStatus == 'NA') {
|
||||
detailedWarningList.push(
|
||||
< div > { contentList[i].serialNumber + this.$t('pleaseSelectTheDataverificationVerified') } < /div>)
|
||||
} else {
|
||||
@@ -2382,15 +2382,19 @@
|
||||
for (let i = 0; i < selectedRowKeysList.length; i++) {
|
||||
if (
|
||||
(selectedRowKeysList[i].verifyFlowStatus == 'List to be released' ||
|
||||
selectedRowKeysList[i].verifyFlowStatus == 'List to be checked' ||
|
||||
selectedRowKeysList[i].verifyFlowStatus == 'Regulatory engineer returns' ||
|
||||
selectedRowKeysList[i].verifyFlowStatus == 'Duty Person Rejected' ||
|
||||
selectedRowKeysList[i].verifyFlowStatus == 'Termination of task' ||
|
||||
selectedRowKeysList[i].verifyFlowStatus == 'Compliance' ||
|
||||
selectedRowKeysList[i].verifyFlowStatus == 'Non-Compliance' ||
|
||||
selectedRowKeysList[i].verifyFlowStatus == 'To be tracked' ||
|
||||
selectedRowKeysList[i].verifyFlowStatus == 'NA')
|
||||
&&
|
||||
(selectedRowKeysList[i].designFlowStatus == 'List to be released' ||
|
||||
selectedRowKeysList[i].designFlowStatus == 'List to be checked' ||
|
||||
selectedRowKeysList[i].designFlowStatus == 'Regulatory engineer returns' ||
|
||||
selectedRowKeysList[i].designFlowStatus == 'Duty Person Rejected' ||
|
||||
selectedRowKeysList[i].designFlowStatus == 'Termination of task' ||
|
||||
selectedRowKeysList[i].designFlowStatus == 'Compliance' ||
|
||||
selectedRowKeysList[i].designFlowStatus == 'Non-Compliance' ||
|
||||
selectedRowKeysList[i].designFlowStatus == 'To be tracked' ||
|
||||
selectedRowKeysList[i].designFlowStatus == 'NA')) {
|
||||
isTrue = true
|
||||
} else {
|
||||
@@ -2456,14 +2460,18 @@
|
||||
deleteLib(val) {
|
||||
let _this = this
|
||||
if ((val.verifyFlowStatus == 'List to be released' ||
|
||||
val.verifyFlowStatus == 'List to be checked' ||
|
||||
val.verifyFlowStatus == 'Regulatory engineer returns' ||
|
||||
val.verifyFlowStatus == 'Duty Person Rejected' ||
|
||||
val.verifyFlowStatus == 'Termination of task' ||
|
||||
val.verifyFlowStatus == 'Compliance' ||
|
||||
val.verifyFlowStatus == 'Non-Compliance' ||
|
||||
val.verifyFlowStatus == 'To be tracked' ||
|
||||
val.verifyFlowStatus == 'NA') &&
|
||||
(val.designFlowStatus == 'List to be released' ||
|
||||
val.designFlowStatus == 'List to be checked' ||
|
||||
val.designFlowStatus == 'Regulatory engineer returns' ||
|
||||
val.designFlowStatus == 'Duty Person Rejected' ||
|
||||
val.designFlowStatus == 'Termination of task' ||
|
||||
val.designFlowStatus == 'Compliance' ||
|
||||
val.designFlowStatus == 'Non-Compliance' ||
|
||||
val.designFlowStatus == 'To be tracked' ||
|
||||
val.designFlowStatus == 'NA')) {
|
||||
this.$confirm({
|
||||
content: _this.$t('ConfirmDelete'),
|
||||
@@ -2950,7 +2958,7 @@
|
||||
dataSource[i].designFlowStatus == 'Duty Person Rejected') {
|
||||
idList.push(dataSource[i].id)
|
||||
this.rowKeysSuccessList.push(dataSource[i])
|
||||
} else if(dataSource[i].designFlowStatus == 'NA' || dataSource[i].verifyFlowStatus == 'NA'){
|
||||
} else if (dataSource[i].designFlowStatus == 'NA' || dataSource[i].verifyFlowStatus == 'NA') {
|
||||
this.detailedWarningList.push(
|
||||
< div > { dataSource[i].serialNumber + this.$t('pleaseSelectTheDataverificationVerified') } < /div>)
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user