【update】-工作组 去掉待确收金额相关数据
This commit is contained in:
@@ -344,7 +344,7 @@
|
||||
批量设置资料状态
|
||||
</a-button>
|
||||
<!--20240703 只有工作组和起草组会议列表页上方新增一个‘批量审核’按钮-->
|
||||
<a-button type="primary" @click="batchAuditSignUpFlag" v-if="meetingTypeValue + '' === MeetingTypeEnums.workGroup.value || meetingTypeValue + '' === MeetingTypeEnums.draftGroup.value" v-has:[authorCode.auditSignUpInfo]="'attendance:auditSignUp'">
|
||||
<a-button type="primary" @click="batchAuditSignUpFlag" v-if="meetingTypeValue + '' === MeetingTypeEnums.workGroup.value || meetingTypeValue + '' === MeetingTypeEnums.draftGroup.value" v-has:[authorCode.batchAuditSignUpInfo]="'attendance:batchAuditSignUpInfo'">
|
||||
批量审核报名信息
|
||||
</a-button>
|
||||
<!--当会议费用为0不需要合并开票 -->
|
||||
@@ -730,6 +730,7 @@ export default {
|
||||
delete: 'workGroupMeetingSituation:delete',
|
||||
auditRecord: 'workGroupMeetingSituation:auditCredentials',
|
||||
auditSignUpInfo: 'workGroupMeetingSituation:auditSignUp',
|
||||
batchAuditSignUpInfo: 'workGroupMeetingSituation:batchAuditSignUp', // 批量审核报名信息
|
||||
guestsUploadFileFlag: 'workGroupMeetingSituation:guestsUploadFileFlag'
|
||||
},
|
||||
// 国际研讨会的参会情况的权限编码
|
||||
@@ -778,6 +779,7 @@ export default {
|
||||
delete: 'draftGroupMeetingSituation:delete',
|
||||
auditRecord: 'draftGroupMeetingSituation:auditCredentials',
|
||||
auditSignUpInfo: 'draftGroupMeetingSituation:auditSignUp',
|
||||
batchAuditSignUpInfo: 'draftGroupMeetingSituation:batchAuditSignUp', // 批量审核报名信息
|
||||
guestsUploadFileFlag: 'draftGroupMeetingSituation:guestsUploadFileFlag'
|
||||
},
|
||||
// 海外会议的参会情况的权限编码
|
||||
|
||||
@@ -209,7 +209,7 @@
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
</a-row>
|
||||
<template v-if="chargeWayType === 1 || chargeWayType === 2">
|
||||
<!--2024-07-03 去掉待确收金额相关数据--><!--<template v-if="chargeWayType === 1 || chargeWayType === 2">
|
||||
<a-row>
|
||||
<a-col :xl="12" :sm="24">
|
||||
<a-form-item label="待确收金额" :labelCol="labelCol" :wrapperCol="wrapperCol">
|
||||
@@ -269,7 +269,8 @@
|
||||
</a-col>
|
||||
</a-row>
|
||||
|
||||
</template>
|
||||
</template>-->
|
||||
|
||||
<a-row>
|
||||
<a-col :xl="12" :sm="24">
|
||||
<a-form-item label="预估到账日期" :labelCol="labelCol" :wrapperCol="wrapperCol">
|
||||
@@ -279,6 +280,12 @@
|
||||
:trigger-change="true"
|
||||
date-format="YYYY-MM"
|
||||
/>
|
||||
<j-date placeholder="请选择预估到账日期"
|
||||
style="width: 100%;"
|
||||
v-decorator="['estimatedArrivalDate', validatorRules.estimatedArrivalDate]"
|
||||
:trigger-change="true"
|
||||
date-format="YYYY-MM-DD"
|
||||
/>
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<a-col :xl="12" :sm="24" v-if="chargeWayType === 2">
|
||||
@@ -436,11 +443,12 @@ import SelectRevenueContract from '../../../components/tools/SelectRevenueContra
|
||||
import JDictSelectTag from '@comp/dict/JDictSelectTag'
|
||||
import { CalcAmountMixin } from '@/mixins/CalcAmountMixin'
|
||||
import JMonthDate from '@/components/tools/JMonthDate'
|
||||
import JDate from '@/components/tools/JDate'
|
||||
import {getAllWorkProjects} from '@api/incomeMeetingApi'
|
||||
|
||||
export default {
|
||||
name: 'WorkingGroupMemberUnitModule',
|
||||
components: { JUpload, JMonthDate, CompanySelect, SelectContacts, SelectRevenueContract, JDictSelectTag },
|
||||
components: { JUpload, JDate, JMonthDate, CompanySelect, SelectContacts, SelectRevenueContract, JDictSelectTag },
|
||||
mixins: [CalcAmountMixin],
|
||||
props: {
|
||||
// 默认来款方式(收入合同新增工作组项目,来款方式默认为2--合同)
|
||||
|
||||
Reference in New Issue
Block a user