From a20f69d522e74d2ca51cc8ea9db47ee8159fd93d Mon Sep 17 00:00:00 2001 From: fengachen <373943794@qq.com> Date: Fri, 9 Dec 2022 11:24:41 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90=E4=BF=AE=E6=94=B9=E3=80=91=20?= =?UTF-8?q?=E5=8E=BB=E9=99=A4=E6=A0=87=E5=8D=8F=E9=A1=B9=E7=9B=AE=E7=9A=84?= =?UTF-8?q?=E5=BC=80=E7=A5=A8=E9=99=90=E5=88=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../arriveAndInvoicing/ArriveAndInvoivingList.vue | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/views/financialManagement/arriveAndInvoicing/ArriveAndInvoivingList.vue b/src/views/financialManagement/arriveAndInvoicing/ArriveAndInvoivingList.vue index 92e803b..3438d68 100644 --- a/src/views/financialManagement/arriveAndInvoicing/ArriveAndInvoivingList.vue +++ b/src/views/financialManagement/arriveAndInvoicing/ArriveAndInvoivingList.vue @@ -411,10 +411,9 @@ export default { * @param record */ invoicing(record) { - // 标协会员项目必须先到账后开票 - if ((Number(record.projectType) === 5 || Number(record.projectType) === 6) && record.paymentStatus !== 'completed') { - this.$message.warn(`标协${Number(record.projectType) === 5 ? '会员' : '证书'}项目必须先审核通过才可开票。`) - return + // 标协会员项目 标协证书项目 可以提前开票 但是只能申请一次 + if(record.projectType === 5 || record.projectType === 6){ + console.log('标协项目开票') } this.mailContactsId = record.mailContactsId this.selectProjectId = record.id