认证清单-发布时校验截止日期
This commit is contained in:
@@ -1438,7 +1438,7 @@ module.exports = {
|
|||||||
onlyDataSelected:'Only data with process status of task to be confirmed, result to be submitted and review to be returned can be selected',
|
onlyDataSelected:'Only data with process status of task to be confirmed, result to be submitted and review to be returned can be selected',
|
||||||
youCannotStatusListToBeReleasedAndApproved:'You cannot select data whose process status is list to be released and approved',
|
youCannotStatusListToBeReleasedAndApproved:'You cannot select data whose process status is list to be released and approved',
|
||||||
batchmodify:'Whether to batch modify',
|
batchmodify:'Whether to batch modify',
|
||||||
onlyDataListReleasedAndCertificationReturnCanSelected:'Only data with the process status of list to be released and certification return can be selected',
|
onlyDataListReleasedAndCertificationReturnCanSelected:'Only data with the process status of list to be released and certification return can be selected And the deadline cannot be empty',
|
||||||
type:'type',
|
type:'type',
|
||||||
select:'select',
|
select:'select',
|
||||||
onlyDataWithProcessStatusDeleted:'Only data with process status of list to be released and approved can be deleted',
|
onlyDataWithProcessStatusDeleted:'Only data with process status of list to be released and approved can be deleted',
|
||||||
|
|||||||
@@ -1540,7 +1540,7 @@ module.exports = {
|
|||||||
onlyDataSelected:'只能选择流程状态为任务待确认、结果待提交、审查退回的数据',
|
onlyDataSelected:'只能选择流程状态为任务待确认、结果待提交、审查退回的数据',
|
||||||
youCannotStatusListToBeReleasedAndApproved:'不能选择流程状态为清单待发布、审查通过的数据',
|
youCannotStatusListToBeReleasedAndApproved:'不能选择流程状态为清单待发布、审查通过的数据',
|
||||||
batchmodify:'是否批量修改',
|
batchmodify:'是否批量修改',
|
||||||
onlyDataListReleasedAndCertificationReturnCanSelected:'只能选择流程状态为清单待发布和认证退回的数据',
|
onlyDataListReleasedAndCertificationReturnCanSelected:'只能选择流程状态为清单待发布和认证退回的数据,并且截止时间不能为空',
|
||||||
type:'类型',
|
type:'类型',
|
||||||
select:'选择',
|
select:'选择',
|
||||||
onlyDataWithProcessStatusDeleted:'只能删除流程状态为清单待发布和审查通过的数据',
|
onlyDataWithProcessStatusDeleted:'只能删除流程状态为清单待发布和审查通过的数据',
|
||||||
|
|||||||
+4
@@ -798,6 +798,10 @@
|
|||||||
this.engineeringInterfacePersonList = res.result.engineeringInterfacePersonList || [] //工程接口人
|
this.engineeringInterfacePersonList = res.result.engineeringInterfacePersonList || [] //工程接口人
|
||||||
if (res.result.engineeringInterfacePersonList && res.result.engineeringInterfacePersonList.length == 1) {
|
if (res.result.engineeringInterfacePersonList && res.result.engineeringInterfacePersonList.length == 1) {
|
||||||
this.formInline.sdt = res.result.engineeringInterfacePersonList[0].value
|
this.formInline.sdt = res.result.engineeringInterfacePersonList[0].value
|
||||||
|
if (!this.formInline.dutyPersonName) {
|
||||||
|
this.formInline.dutyPersonName = res.result.engineeringInterfacePersonList[0].name
|
||||||
|
this.formInline.dutyPerson = res.result.engineeringInterfacePersonList[0].value
|
||||||
|
}
|
||||||
} else if (this.engineeringInterfacePersonList.length == 0) {
|
} else if (this.engineeringInterfacePersonList.length == 0) {
|
||||||
this.formInline.sdt = undefined
|
this.formInline.sdt = undefined
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1012,8 +1012,10 @@
|
|||||||
let ids = []
|
let ids = []
|
||||||
let notConditions = []
|
let notConditions = []
|
||||||
for (let i = 0; i < this.selectedRowKeysList.length; i++) {
|
for (let i = 0; i < this.selectedRowKeysList.length; i++) {
|
||||||
if (this.selectedRowKeysList[i].flowStatus == 'List to be released' ||
|
if ((this.selectedRowKeysList[i].flowStatus == 'List to be released' &&
|
||||||
this.selectedRowKeysList[i].flowStatus == 'Certification returned') {
|
this.selectedRowKeysList[i].endTime) ||
|
||||||
|
(this.selectedRowKeysList[i].flowStatus == 'Certification returned' &&
|
||||||
|
this.selectedRowKeysList[i].endTime)) {
|
||||||
ids.push(this.selectedRowKeysList[i].id)
|
ids.push(this.selectedRowKeysList[i].id)
|
||||||
} else {
|
} else {
|
||||||
notConditions.push(this.selectedRowKeysList[i].inspectionItem)
|
notConditions.push(this.selectedRowKeysList[i].inspectionItem)
|
||||||
|
|||||||
Reference in New Issue
Block a user