【fix-bug74255】-垫付判断的修改

This commit is contained in:
fengchenchen
2023-07-28 12:02:52 +08:00
parent 1f6d47d809
commit 8bd7af2eb6
+3 -1
View File
@@ -410,7 +410,9 @@ export default {
computed: {
// 是否是第三方代付
hasOtherCompany() {
return this.isInvoicing && this.otherCompanyInfo.headerName && (this.otherCompanyInfo.headerName !== this.basicInfo.companyName)
// 去掉未审核 去判断的企业是否是标协会企业
let companyName = this.basicInfo.companyName.replaceAll('(未审核)','')
return this.isInvoicing && this.otherCompanyInfo.headerName && (this.otherCompanyInfo.headerName !== companyName)
}
},
components: {