[需求变更] 打包管理-添加打包项目-选择项目弹框、到账开票列表加上企业联系人这一列数据;财务管理-来款:未审核通过的会议项目不允许在这里来款,来款按钮置灰
This commit is contained in:
@@ -103,7 +103,10 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<span slot="action" class="action-span-cell" slot-scope="text, record">
|
<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"
|
<a @click="invoicing(record)" :disabled="record.needInvoice === 0"
|
||||||
v-has="'incomePaymentAndInvoiving:invoicing'">开票</a>
|
v-has="'incomePaymentAndInvoiving:invoicing'">开票</a>
|
||||||
</span>
|
</span>
|
||||||
@@ -214,6 +217,12 @@ export default {
|
|||||||
width: 280,
|
width: 280,
|
||||||
dataIndex: 'chargeCompanyTemporaryName',
|
dataIndex: 'chargeCompanyTemporaryName',
|
||||||
scopedSlots: { customRender: 'text' }
|
scopedSlots: { customRender: 'text' }
|
||||||
|
}, {
|
||||||
|
title: '企业联系人',
|
||||||
|
align: 'center',
|
||||||
|
width: 280,
|
||||||
|
dataIndex: 'contactsTemporaryName',
|
||||||
|
scopedSlots: { customRender: 'text' }
|
||||||
}, {
|
}, {
|
||||||
title: '应收金额',
|
title: '应收金额',
|
||||||
align: 'center',
|
align: 'center',
|
||||||
|
|||||||
@@ -179,6 +179,13 @@ export default {
|
|||||||
dataIndex: 'chargeCompanyName',
|
dataIndex: 'chargeCompanyName',
|
||||||
scopedSlots: { customRender: 'text' }
|
scopedSlots: { customRender: 'text' }
|
||||||
},
|
},
|
||||||
|
// {
|
||||||
|
// title: '企业联系人',
|
||||||
|
// align: 'center',
|
||||||
|
// width: 300,
|
||||||
|
// dataIndex: 'principalName',
|
||||||
|
// scopedSlots: { customRender: 'text' }
|
||||||
|
// },
|
||||||
{
|
{
|
||||||
title: '邮寄联系人',
|
title: '邮寄联系人',
|
||||||
align: 'center',
|
align: 'center',
|
||||||
|
|||||||
@@ -145,10 +145,16 @@ export default {
|
|||||||
}, {
|
}, {
|
||||||
title: '项目负责人',
|
title: '项目负责人',
|
||||||
align: 'center',
|
align: 'center',
|
||||||
width: 140,
|
width: 280,
|
||||||
dataIndex: 'principalName',
|
dataIndex: 'principalName',
|
||||||
scopedSlots: { customRender: 'text' }
|
scopedSlots: { customRender: 'text' }
|
||||||
}, {
|
},{
|
||||||
|
title: '企业联系人',
|
||||||
|
align: 'center',
|
||||||
|
width: 280,
|
||||||
|
dataIndex: 'contactsTemporaryName',
|
||||||
|
scopedSlots: { customRender: 'text' }
|
||||||
|
}, {
|
||||||
title: '应收金额',
|
title: '应收金额',
|
||||||
align: 'center',
|
align: 'center',
|
||||||
width: 120,
|
width: 120,
|
||||||
|
|||||||
Reference in New Issue
Block a user