[需求变更] 打包管理-添加打包项目-选择项目弹框、到账开票列表加上企业联系人这一列数据;财务管理-来款:未审核通过的会议项目不允许在这里来款,来款按钮置灰

This commit is contained in:
zhaoxiao
2021-10-28 17:34:15 +08:00
parent 521376b903
commit 96febb9d80
3 changed files with 25 additions and 3 deletions
@@ -103,7 +103,10 @@
</template>
<span slot="action" class="action-span-cell" slot-scope="text, record">
<a @click="incomePayment(record)" v-has="'incomePaymentAndInvoiving:incomePayment'">来款</a>
<!-- 未审核通过的会议项目不允许在这里来款-->
<a @click="incomePayment(record)"
v-has="'incomePaymentAndInvoiving:incomePayment'"
:disabled="record.projectType === 3 && record.registerCheckResult === '0'">来款</a>
<a @click="invoicing(record)" :disabled="record.needInvoice === 0"
v-has="'incomePaymentAndInvoiving:invoicing'">开票</a>
</span>
@@ -214,6 +217,12 @@ export default {
width: 280,
dataIndex: 'chargeCompanyTemporaryName',
scopedSlots: { customRender: 'text' }
}, {
title: '企业联系人',
align: 'center',
width: 280,
dataIndex: 'contactsTemporaryName',
scopedSlots: { customRender: 'text' }
}, {
title: '应收金额',
align: 'center',
+7
View File
@@ -179,6 +179,13 @@ export default {
dataIndex: 'chargeCompanyName',
scopedSlots: { customRender: 'text' }
},
// {
// title: '企业联系人',
// align: 'center',
// width: 300,
// dataIndex: 'principalName',
// scopedSlots: { customRender: 'text' }
// },
{
title: '邮寄联系人',
align: 'center',
@@ -145,10 +145,16 @@ export default {
}, {
title: '项目负责人',
align: 'center',
width: 140,
width: 280,
dataIndex: 'principalName',
scopedSlots: { customRender: 'text' }
}, {
},{
title: '企业联系人',
align: 'center',
width: 280,
dataIndex: 'contactsTemporaryName',
scopedSlots: { customRender: 'text' }
}, {
title: '应收金额',
align: 'center',
width: 120,