From 426dbf67176e663180c63b8e3b803e8cceccf32f Mon Sep 17 00:00:00 2001
From: lideqin <694785430@qq.com>
Date: Fri, 8 Mar 2024 13:58:43 +0800
Subject: [PATCH] =?UTF-8?q?[update]=20=E5=88=B0=E8=B4=A6=E5=BC=80=E7=A5=A8?=
=?UTF-8?q?=E6=9D=A5=E6=AC=BE=E6=A0=87=E5=8D=8F=E4=BC=9A=E5=91=98=E9=A1=B9?=
=?UTF-8?q?=E7=9B=AE=E5=8F=AA=E8=83=BD=E6=9D=A5=E6=AC=BE=E4=B8=80=E6=AC=A1?=
=?UTF-8?q?=E7=9A=84=E9=99=90=E5=88=B6=E5=8E=BB=E6=8E=89=EF=BC=8C=E5=BC=80?=
=?UTF-8?q?=E7=A5=A8=E6=8C=89=E9=92=AE=E7=9A=84=E9=99=90=E5=88=B6=E5=8E=BB?=
=?UTF-8?q?=E6=8E=89?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../arriveAndInvoicing/ArriveAndInvoivingList.vue | 3 ++-
.../arriveAndInvoicing/modules/ArriveStageModule.vue | 4 +++-
2 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/src/views/financialManagement/arriveAndInvoicing/ArriveAndInvoivingList.vue b/src/views/financialManagement/arriveAndInvoicing/ArriveAndInvoivingList.vue
index 68f33ee..3da0bd6 100644
--- a/src/views/financialManagement/arriveAndInvoicing/ArriveAndInvoivingList.vue
+++ b/src/views/financialManagement/arriveAndInvoicing/ArriveAndInvoivingList.vue
@@ -167,7 +167,8 @@
来款
-
+ 开票
确认收入
diff --git a/src/views/financialManagement/arriveAndInvoicing/modules/ArriveStageModule.vue b/src/views/financialManagement/arriveAndInvoicing/modules/ArriveStageModule.vue
index a7df90c..77fc40e 100644
--- a/src/views/financialManagement/arriveAndInvoicing/modules/ArriveStageModule.vue
+++ b/src/views/financialManagement/arriveAndInvoicing/modules/ArriveStageModule.vue
@@ -130,7 +130,9 @@ export default {
computed: {
canAddStageFlag() {
// 标协会员项目和证书项目 需要判断 当前的阶段是否有值,这两类项目只能来款一次
- if(Number(this.projectType) === ProjectTypeEnums.STANDARD_CERTIFICATE_PRO.value || Number(this.projectType) === ProjectTypeEnums.STANDARD_MEMBER_PRO.value) {
+ // if(Number(this.projectType) === ProjectTypeEnums.STANDARD_CERTIFICATE_PRO.value || Number(this.projectType) === ProjectTypeEnums.STANDARD_MEMBER_PRO.value) {
+ // 2024年2月变更,标协会员项目取消只能来款一次
+ if(Number(this.projectType) === ProjectTypeEnums.STANDARD_CERTIFICATE_PRO.value) {
return this.stageList.length === 0 && this.canAddStage
} else {
return this.canAddStage