|
@@ -475,7 +475,7 @@ export default {
|
|
|
this.commonApi.getTaskNameByProcInsId(this.inputForm.procInsId).then(name => {
|
|
|
this.currentNodeName = name
|
|
|
|
|
|
- if (name == "综合管理部主任审核" && this.status != "taskFormDetail") {
|
|
|
+ if ((name == "综合管理部主任审批" || name == "综合管理部主任审核") && this.status != "taskFormDetail") {
|
|
|
this.isConfirm = 1
|
|
|
} else {
|
|
|
this.isConfirm = 2
|
|
@@ -1070,7 +1070,7 @@ export default {
|
|
|
// this.loading = false
|
|
|
// return
|
|
|
// }
|
|
|
- if (this.currentNodeName == "综合管理部主任审核") {
|
|
|
+ if (this.currentNodeName == "综合管理部主任审核" || this.currentNodeName == "综合管理部主任审批") {
|
|
|
let confirmFlag = this.inputForm.invoiceReimbursementFiles.every(item => item.confirmStatus == 1)
|
|
|
if (!confirmFlag) {
|
|
|
this.$message.warning('数电发票未全部确认,请全部确认后再提交')
|
|
@@ -1117,7 +1117,7 @@ export default {
|
|
|
this.reimbursementService.save(this.inputForm).then((data) => {
|
|
|
callback(data.businessTable, data.businessId, this.inputForm)
|
|
|
// this.currentNodeName == "财务审核"
|
|
|
- if (this.currentNodeName == "综合管理部主任审核") {
|
|
|
+ if (this.currentNodeName == "综合管理部主任审核" || this.currentNodeName == "综合管理部主任审批") {
|
|
|
this.changeStatusApi()
|
|
|
}
|
|
|
this.loading = false
|