【修改】修改是否到账条件 嘉宾不展示到账金额

This commit is contained in:
fengachen
2022-11-11 14:10:22 +08:00
parent 3a00acb447
commit c121353180
@@ -54,7 +54,7 @@
</a-col>
</a-row>
<!-- 只有编辑的时候显示 应收金额 税率 税额 等信息 -->
<template v-if="!!$route.query.id">
<template v-if="!!$route.query.id && identifyType === 2">
<!-- 到账后 应收金额 税率不能编辑 -->
<a-row :gutter="24">
@@ -397,7 +397,7 @@ export default {
this.isEditBool = false
this.needInvoiceBool = record.needInvoice === 0
// 是否已经到账
this.isCheckInBool = record.checkResult === 1
this.isCheckInBool = record.inAccount === 1
// 回显邮寄联系人
this.selectPostPerson = {
id: record.postContactTemporaryId,