211 lines
8.5 KiB
Vue
211 lines
8.5 KiB
Vue
<template>
|
|
<div class="detail-popup">
|
|
<popup ref="popupRef" title="开票申请详情" :async="true" width="80%" @confirm="handleSubmit" @close="handleClose">
|
|
<el-form ref="formRef" :model="formData" label-width="160px">
|
|
<el-descriptions :column="3" title="基本信息" border>
|
|
<el-descriptions-item label="合同名称" label-align="left" align="left" label-class-name="my-label">{{
|
|
formData.contract_name }}</el-descriptions-item>
|
|
<el-descriptions-item label="合同编号" label-align="left" align="left" label-class-name="my-label"> {{
|
|
formData.contract_code }}</el-descriptions-item>
|
|
<el-descriptions-item label="项目名称" label-align="left" align="left" label-class-name="my-label">{{
|
|
formData.project_name }}</el-descriptions-item>
|
|
<el-descriptions-item label="项目编码" label-align="left" align="left" label-class-name="my-label"> {{
|
|
formData.project_code }}</el-descriptions-item>
|
|
<el-descriptions-item label="客户名称" label-align="left" align="left" label-class-name="my-label"> {{
|
|
formData.custom_name }}</el-descriptions-item>
|
|
<el-descriptions-item label="合同金额" label-align="left" align="left" label-class-name="my-label">
|
|
{{ formData.contract_amount }}
|
|
</el-descriptions-item>
|
|
<el-descriptions-item label="期次" label-align="left" align="left" label-class-name="my-label"> {{
|
|
formData.period_text }}</el-descriptions-item>
|
|
<el-descriptions-item label="税率(%)" label-align="left" align="left" label-class-name="my-label"> {{
|
|
formData.tax_rate_text }}</el-descriptions-item>
|
|
<el-descriptions-item label="发票类型" label-align="left" align="left" label-class-name="my-label"> {{
|
|
formData.invoice_type_text }}</el-descriptions-item>
|
|
<el-descriptions-item label="开票金额(含税)" label-align="left" align="left" label-class-name="my-label">
|
|
{{
|
|
formData.amount_including_tax }}</el-descriptions-item>
|
|
<!-- <el-descriptions-item label="开票金额(税额)" label-align="left" align="left" label-class-name="my-label"> {{ formData.industry_text }}</el-descriptions-item> -->
|
|
<el-descriptions-item label="开票内容" label-align="left" align="left" label-class-name="my-label"> {{
|
|
formData.content }}</el-descriptions-item>
|
|
<el-descriptions-item label="发票编号" label-align="left" align="left" label-class-name="my-label"> {{
|
|
formData.invoice_no }}</el-descriptions-item>
|
|
|
|
|
|
|
|
|
|
|
|
<el-descriptions-item label="附件" label-align="left" align="left" label-class-name="my-label">
|
|
<div v-if="formData.annex && formData.annex.length > 0">
|
|
<div v-for="(item, index) in formData.annex" style="margin-left: 5px;display: block;">
|
|
<a style="margin-left: 10px; color: #4a5dff; align-self: flex-start" :href="item.uri"
|
|
target="_blank">文件{{ index + 1 }} 查看</a>
|
|
</div>
|
|
</div>
|
|
<div v-else>
|
|
暂无文件
|
|
</div>
|
|
</el-descriptions-item>
|
|
|
|
|
|
</el-descriptions>
|
|
<el-descriptions :column="3" title="客户开票信息" border style="margin: 20px 0;">
|
|
<el-descriptions-item label="开票公司名称" label-align="left" align="left" label-class-name="my-label">{{
|
|
formData.invoicing_company_name }}</el-descriptions-item>
|
|
<el-descriptions-item label="纳税人识别号" label-align="left" align="left" label-class-name="my-label"> {{
|
|
formData.taxpayer_identification_number }}</el-descriptions-item>
|
|
<el-descriptions-item label="开户银行" label-align="left" align="left" label-class-name="my-label">{{
|
|
formData.deposit_bank }}</el-descriptions-item>
|
|
<el-descriptions-item label="账号" label-align="left" align="left" label-class-name="my-label"> {{
|
|
formData.bank_accnout }}</el-descriptions-item>
|
|
|
|
<el-descriptions-item label="开户地址及电话" label-align="left" align="left" label-class-name="my-label">
|
|
{{ formData.address_phone }}
|
|
</el-descriptions-item>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</el-descriptions>
|
|
<el-descriptions :column="3" title="发票邮寄信息" border style="margin: 20px 0;">
|
|
<el-descriptions-item label="收票地址" label-align="left" align="left" label-class-name="my-label">{{
|
|
formData.receiving_address }}</el-descriptions-item>
|
|
<el-descriptions-item label="联系人" label-align="left" align="left" label-class-name="my-label"> {{
|
|
formData.contacts }}</el-descriptions-item>
|
|
<el-descriptions-item label="联系电话" label-align="left" align="left" label-class-name="my-label">{{
|
|
formData.phone }}</el-descriptions-item>
|
|
<el-descriptions-item label="邮寄时间" label-align="left" align="left" label-class-name="my-label"> {{
|
|
formData.mailing_type }}</el-descriptions-item>
|
|
<el-descriptions-item label="邮寄方式" label-align="left" align="left" label-class-name="my-label"> {{
|
|
formData.mailing_type }}</el-descriptions-item>
|
|
<el-descriptions-item label="邮寄单号" label-align="left" align="left" label-class-name="my-label">
|
|
{{ formData.mailing_no }}
|
|
</el-descriptions-item>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</el-descriptions>
|
|
<flowProcess v-if="!formData?.approve_id || formData.approve_check_status == 4" :flows="flows"
|
|
:submitApi="apiInvoicingRequestsApprove" :id="formData?.id" @off="handleClose">
|
|
</flowProcess>
|
|
<flowDetail v-else :approve_id="formData?.approve_id" @off="handleClose" />
|
|
<!-- import { apiInvoicingRequestsApprove, apiInvoicingRequestsFlows } from '@/api/flowSet.ts'
|
|
// 获取审批流程
|
|
const flows = ref([])
|
|
const getbidDocumentExaminationFlows = async () => {
|
|
if (formData?.approve_id) return
|
|
let res = await apisubcontracting_contract_negotiationFlows()
|
|
flows.value = res
|
|
} -->
|
|
|
|
</el-form>
|
|
</popup>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup name="customdetail">
|
|
|
|
import type { FormInstance } from 'element-plus'
|
|
import Popup from '@/components/popup/index.vue'
|
|
import { apiCustomDetail } from '@/api/custom'
|
|
import { apiInvoicingRequestsApprove, apiInvoicingRequestsFlows } from '@/api/flowSet.ts'
|
|
import type { PropType } from 'vue'
|
|
defineProps({
|
|
dictData: {
|
|
type: Object as PropType<Record<string, any[]>>,
|
|
default: () => ({})
|
|
}
|
|
})
|
|
const emit = defineEmits(['success', 'close'])
|
|
const formRef = shallowRef<FormInstance>()
|
|
const popupRef = shallowRef<InstanceType<typeof Popup>>()
|
|
const formDataannex = reactive([])
|
|
|
|
|
|
|
|
// 表单数据
|
|
const formData = reactive({
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
// 获取详情
|
|
const setFormData = async (data: Record<any, any>) => {
|
|
if (data.annex && data.annex.length > 0) {
|
|
const arry1 = data.annex.map((item: any, index: any) => {
|
|
return {
|
|
name: `文件${index + 1}`,
|
|
uri: item
|
|
};
|
|
});
|
|
Object.assign(formDataannex, arry1)
|
|
}
|
|
Object.assign(formData, data)
|
|
getbidDocumentExaminationFlows()
|
|
|
|
}
|
|
|
|
const getDetail = async (row: Record<string, any>) => {
|
|
const data = await apiCustomDetail({
|
|
id: formData.id
|
|
})
|
|
setFormData(data)
|
|
}
|
|
|
|
|
|
// 提交按钮
|
|
const handleSubmit = async () => {
|
|
popupRef.value?.close()
|
|
|
|
}
|
|
|
|
//打开弹窗
|
|
const open = () => {
|
|
popupRef.value?.open()
|
|
}
|
|
|
|
// 关闭回调
|
|
const handleClose = () => {
|
|
emit('close')
|
|
}
|
|
|
|
|
|
// 获取审批流程
|
|
const flows = ref([])
|
|
const getbidDocumentExaminationFlows = async () => {
|
|
if (formData?.approve_id) return
|
|
let res = await apiInvoicingRequestsFlows()
|
|
flows.value = res
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
defineExpose({
|
|
open,
|
|
setFormData,
|
|
getDetail
|
|
})
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.tit {
|
|
font-size: 1.2em;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
:deep(.my-label) {
|
|
width: 150px;
|
|
}
|
|
</style>
|