|
@@ -0,0 +1,802 @@
|
|
|
+<template xmlns:v-slot="http://www.w3.org/1999/XSL/Transform">
|
|
|
+ <div>
|
|
|
+ <el-dialog
|
|
|
+ :title="title"
|
|
|
+ :close-on-click-modal="false"
|
|
|
+ draggable
|
|
|
+ width="1200px"
|
|
|
+ height="500px"
|
|
|
+ @close="close"
|
|
|
+ v-model="visible">
|
|
|
+ <el-row>
|
|
|
+ <el-col :span="24">
|
|
|
+
|
|
|
+ <el-form :model="inputForm" ref="inputForm" v-loading="loading" :class="method==='view'?'readonly':''" :disabled="method === 'view'"
|
|
|
+ label-width="110px" @submit.native.prevent>
|
|
|
+ <el-row :gutter="15">
|
|
|
+<!-- <el-col :span="12">-->
|
|
|
+<!-- <el-form-item label="档案名称" prop="name"-->
|
|
|
+<!-- :rules="[-->
|
|
|
+<!-- {required: true, message:'档案名称不能为空', trigger:'blur'}-->
|
|
|
+<!-- ]">-->
|
|
|
+<!-- <el-input v-model="inputForm.name" placeholder="请填写档案名称" clearable></el-input>-->
|
|
|
+<!-- </el-form-item>-->
|
|
|
+<!-- </el-col>-->
|
|
|
+ <el-col :span="12">
|
|
|
+ <el-form-item label="档案号" prop="fileNumber"
|
|
|
+ :rules="[
|
|
|
+ ]">
|
|
|
+ <el-input :disabled="true" v-model="inputForm.fileNumber" placeholder="请填写档案号" clearable></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="12">
|
|
|
+ <el-form-item label="项目名称" prop="cwProjectRecordsDTO.projectName"
|
|
|
+ :rules="[
|
|
|
+ ]">
|
|
|
+ <el-input :disabled="true" v-model="inputForm.cwProjectRecordsDTO.projectName" placeholder="请填写项目名称" clearable>
|
|
|
+<!-- <el-button slot="append" :disabled="method === 'view'" @click="openChooseProject" icon="el-icon-search"></el-button>-->
|
|
|
+ </el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="12">
|
|
|
+ <el-form-item label="项目编号" prop="cwProjectRecordsDTO.projectNumber"
|
|
|
+ :rules="[
|
|
|
+ ]">
|
|
|
+ <el-input :disabled="true" v-model="inputForm.cwProjectRecordsDTO.projectNumber" placeholder="请填写项目编号" clearable></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="12">
|
|
|
+ <el-form-item label="项目经理1" prop="cwProjectRecordsDTO.projectMasterName"
|
|
|
+ :rules="[
|
|
|
+ ]">
|
|
|
+ <el-input :disabled="true" v-model="inputForm.cwProjectRecordsDTO.projectMasterName" placeholder="请填写项目经理1"></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="12">
|
|
|
+ <el-form-item label="项目经理2" prop="cwProjectRecordsDTO.realHeaderName"
|
|
|
+ :rules="[
|
|
|
+ ]">
|
|
|
+ <el-input :disabled="true" v-model="inputForm.cwProjectRecordsDTO.realHeaderName" placeholder="请填写项目经理2"></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="12">
|
|
|
+ <el-form-item label="被审计单位" prop="auditedUnitsName"
|
|
|
+ :rules="[
|
|
|
+ {required: true, message:'被审计单位不能为空', trigger:'blur'},
|
|
|
+ {required: true, message:'被审计单位不能为空', trigger:'change'}
|
|
|
+ ]">
|
|
|
+ <el-input :disabled="true" :readonly="true" v-model="inputForm.auditedUnitsName" @focus="openChooseClient" placeholder="请填写被审计单位" clearable>
|
|
|
+ <el-button slot="append" :disabled="method === 'view'" @click="openChooseClient" icon="el-icon-search"></el-button>
|
|
|
+ </el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="12">
|
|
|
+ <el-form-item label="报告册数" prop="reportNum"
|
|
|
+ :rules="[
|
|
|
+ {required: true, message:'报告册数不能为空', trigger:'blur'}
|
|
|
+ ]">
|
|
|
+ <el-input-number
|
|
|
+ v-model="inputForm.reportNum"
|
|
|
+ controls-position="right"
|
|
|
+ style="width:100%"
|
|
|
+ :precision="0"
|
|
|
+ :max="9999999999"
|
|
|
+ :step="1"
|
|
|
+ :min="0"
|
|
|
+ :disabled="true"
|
|
|
+ placeholder="请填写报告册数"
|
|
|
+ :controls="false"
|
|
|
+ clearable>
|
|
|
+ </el-input-number>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="12">
|
|
|
+ <el-form-item label="底稿册数" prop="papersNum"
|
|
|
+ :rules="[
|
|
|
+ {required: true, message:'底稿册数不能为空', trigger:'blur'}
|
|
|
+ ]">
|
|
|
+ <el-input-number
|
|
|
+ v-model="inputForm.papersNum"
|
|
|
+ controls-position="right"
|
|
|
+ style="width:100%"
|
|
|
+ :precision="0"
|
|
|
+ :max="9999999999"
|
|
|
+ :step="1"
|
|
|
+ :min="0"
|
|
|
+ :disabled="true"
|
|
|
+ placeholder="请填写底稿册数"
|
|
|
+ :controls="false"
|
|
|
+ clearable>
|
|
|
+ </el-input-number>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="12">
|
|
|
+ <el-form-item
|
|
|
+ label="审计收费(元)"
|
|
|
+ prop="auditMoney"
|
|
|
+ :rules="[
|
|
|
+ {required: true, message:'请输入审计收费(元)', trigger:'blur'}
|
|
|
+ ]">
|
|
|
+ <el-input-number
|
|
|
+ @input="fixedAccount"
|
|
|
+ :precision="2"
|
|
|
+ v-model="inputForm.auditMoney"
|
|
|
+ controls-position="right"
|
|
|
+ :controls="false"
|
|
|
+ style="width:100%;"
|
|
|
+ :min="0.00"
|
|
|
+ :disabled="true"
|
|
|
+ :max="9999999999999999"
|
|
|
+ :step="0.01"
|
|
|
+ placeholder="请输入审计收费(元)"
|
|
|
+ clearable>
|
|
|
+ </el-input-number>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+
|
|
|
+ <el-col :span="12" v-if="isShow">
|
|
|
+ <el-form-item label="关联报告" prop="connectReport"
|
|
|
+ :rules="[
|
|
|
+ {required: true, message:'关联报告不能为空', trigger:'blur'},
|
|
|
+ {required: true, message:'关联报告不能为空', trigger:'change'}
|
|
|
+ ]">
|
|
|
+ <el-input :readonly="true" v-model="inputForm.connectReport" placeholder="请填写关联报告" clearable>
|
|
|
+ </el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="12">
|
|
|
+ <el-form-item label="档案年度" prop="year"
|
|
|
+ :rules="[
|
|
|
+ {required: true, message:'档案年度不能为空', trigger:'blur'}
|
|
|
+ ]">
|
|
|
+ <el-date-picker
|
|
|
+ v-model="inputForm.year"
|
|
|
+ type="year"
|
|
|
+ value-format="YYYY"
|
|
|
+ placeholder="选择档案年度"
|
|
|
+ style="width:100%"
|
|
|
+ placement="bottom-start"
|
|
|
+ :clearable="false">
|
|
|
+ </el-date-picker>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col v-if="status !== 'audit'" :span="12">
|
|
|
+ <el-form-item label="案卷号" prop="number"
|
|
|
+ :rules="[
|
|
|
+ ]">
|
|
|
+ <el-input v-model="inputForm.number" placeholder="请填写案卷号" clearable></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col v-if="status !== 'audit'" :span="12">
|
|
|
+ <el-form-item label="确认案卷号" prop="isNumber"
|
|
|
+ :rules="[
|
|
|
+ ]">
|
|
|
+ <el-input v-model="inputForm.isNumber" placeholder="请填写确认案卷号" clearable></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-form v-if="status === 'audit'" :model="inputForm" ref="inputForm" v-loading="loading" :class="method==='view'?'readonly':''"
|
|
|
+ label-width="135px" @submit.native.prevent>
|
|
|
+ <el-col :span="12">
|
|
|
+ <el-form-item label="案卷号" prop="number"
|
|
|
+ :rules="[
|
|
|
+ {required: true, message:'案卷号不能为空', trigger:'blur'}
|
|
|
+ ]">
|
|
|
+ <el-input :disabled="false" v-model="inputForm.number" placeholder="请填写案卷号" clearable></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="12">
|
|
|
+ <el-form-item label="确认案卷号" prop="isNumber"
|
|
|
+ :rules="[
|
|
|
+ {required: true, message:'确认案卷号不能为空', trigger:'blur'}
|
|
|
+ ]">
|
|
|
+ <el-input :disabled="false" v-model="inputForm.isNumber" placeholder="请填写确认案卷号" clearable></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ </el-form>
|
|
|
+ <el-col :span="12">
|
|
|
+ <el-form-item label="归档时间" prop="auditDate"
|
|
|
+ :rules="[
|
|
|
+ ]">
|
|
|
+<!-- <el-input v-model="inputForm.auditDate" placeholder="请填写归档时间" clearable></el-input>-->
|
|
|
+ <el-date-picker
|
|
|
+ v-model="inputForm.auditDate"
|
|
|
+ type="datetime"
|
|
|
+ value-format="YYYY-MM-DD HH:mm:ss"
|
|
|
+ placeholder="选择归档时间"
|
|
|
+ style="width:100%"
|
|
|
+ size="default"
|
|
|
+ placement="bottom-start"
|
|
|
+ clearable>
|
|
|
+ </el-date-picker>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="24">
|
|
|
+ <el-form-item label="备注" prop="remarks"
|
|
|
+ :rules="[
|
|
|
+ ]">
|
|
|
+ <el-input :disabled="true" type="textarea" style="width:100%" maxlength="1000" v-model="inputForm.remarks" placeholder="请填写备注" show-word-limit></el-input>
|
|
|
+
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="12">
|
|
|
+ <el-form-item label="申请人" prop="createBy.name"
|
|
|
+ :rules="[
|
|
|
+ ]">
|
|
|
+ <el-input :disabled="true" v-model="inputForm.createBy.name" placeholder="请填写创建人" clearable></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="12">
|
|
|
+ <el-form-item label="申请时间" prop="createDate"
|
|
|
+ :rules="[
|
|
|
+ ]">
|
|
|
+ <el-input :disabled="true" v-model="inputForm.createDate" placeholder="请填写创建时间" clearable></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ </el-row>
|
|
|
+ <el-divider content-position="left"><i class="el-icon-document"></i> 审计报告</el-divider>
|
|
|
+ <el-row :gutter="15">
|
|
|
+ <el-col :span="12">
|
|
|
+ <el-form-item label="报告文号" prop="reportNo"
|
|
|
+ :rules="[
|
|
|
+ ]">
|
|
|
+ <el-input :disabled="true" v-model="inputForm.reportNo" placeholder="请填写报告文号" clearable>
|
|
|
+<!-- <el-button slot="append" :disabled="formReadOnly" @click="openReportChoose" icon="el-icon-search"></el-button>-->
|
|
|
+ </el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="12">
|
|
|
+ <el-form-item label="报告日期" prop="reportDate"
|
|
|
+ :rules="[
|
|
|
+ ]">
|
|
|
+ <el-input :disabled="true" v-model="inputForm.reportDate" placeholder="请填写报告日期" clearable></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="12">
|
|
|
+ <el-form-item label="签字注师1" prop="signatureAnnotator1Name"
|
|
|
+ :rules="[
|
|
|
+ ]">
|
|
|
+ <el-input :disabled="true" v-model="inputForm.signatureAnnotator1Name" placeholder="请填写签字注师1" clearable></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="12">
|
|
|
+ <el-form-item label="签字注师2" prop="signatureAnnotator2Name"
|
|
|
+ :rules="[
|
|
|
+ ]">
|
|
|
+ <el-input :disabled="true" v-model="inputForm.signatureAnnotator2Name" placeholder="请填写签字注师2" clearable></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="12">
|
|
|
+ <el-form-item label="报告主办人" prop="reportCreateName"
|
|
|
+ :rules="[
|
|
|
+ ]">
|
|
|
+ <el-input :disabled="true" v-model="inputForm.reportCreateName" placeholder="请填写报告主办人" clearable></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-form :model="inputForm" ref="inputForm" v-loading="loading" :class="method==='view'?'readonly':''" :disabled="status !== 'audit'"
|
|
|
+ label-width="110px" @submit.native.prevent>
|
|
|
+ <el-col :span="24">
|
|
|
+ <el-form-item label="审计意见" prop="reportRemarks"
|
|
|
+ :rules="[
|
|
|
+ ]">
|
|
|
+ <el-input type="textarea" style="width:100%" maxlength="225" v-model="inputForm.reportRemarks" placeholder="请填写审计意见" show-word-limit></el-input>
|
|
|
+
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ </el-form>
|
|
|
+ </el-row>
|
|
|
+ </el-form>
|
|
|
+ <el-tabs v-model="activeName" type="border-card" @tab-click="tabHandleClick">
|
|
|
+ <el-tab-pane label="附件" name="files">
|
|
|
+ <!-- 附件-->
|
|
|
+ <UpLoadComponent ref="uploadComponent"></UpLoadComponent>
|
|
|
+ </el-tab-pane>
|
|
|
+
|
|
|
+ </el-tabs>
|
|
|
+ </el-col>
|
|
|
+ </el-row>
|
|
|
+ <template #footer>
|
|
|
+ <span class="dialog-footer">
|
|
|
+ <el-button @click="close()" icon="el-icon-circle-close">关闭</el-button>
|
|
|
+ <el-button v-if="method === 'edit'" type="primary" icon="el-icon-circle-check" @click="doSubmit('save')">确定</el-button>
|
|
|
+ </span>
|
|
|
+ </template>
|
|
|
+ <ProjectRecordsChooseCom ref="projectRecordsChooseCom" @getProject="getProject"></ProjectRecordsChooseCom>
|
|
|
+ <WorkClientChooseByProjectCom ref="workClientChooseByProjectCom" @getClient="getClient"></WorkClientChooseByProjectCom>
|
|
|
+ <ReportChooseByProjectCom ref="reportChooseByProjectCom" @getReport="getReport"></ReportChooseByProjectCom>
|
|
|
+ </el-dialog>
|
|
|
+
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+ import UpLoadComponent from '@/views/common/UpLoadComponentV3.1'
|
|
|
+ import ProjectReportArchiveService from '@/api/cw/projectRecords/ProjectReportArchiveService'
|
|
|
+ import ProjectRecordsChooseCom from '@/views/cw/projectRecords/ProjectRecordsChooseCom'
|
|
|
+ import WorkClientChooseByProjectCom from '@/views/cw/projectReportArchive/WorkClientChooseByProjectCom'
|
|
|
+ import ReportChooseByProjectCom from '@/views/cw/projectReportArchive/ReportChooseByProjectCom'
|
|
|
+ export default {
|
|
|
+ props: {
|
|
|
+ businessId: {
|
|
|
+ type: String,
|
|
|
+ default: ''
|
|
|
+ },
|
|
|
+ formReadOnly: {
|
|
|
+ type: Boolean,
|
|
|
+ default: false
|
|
|
+ },
|
|
|
+ status: {
|
|
|
+ type: String,
|
|
|
+ default: ''
|
|
|
+ }
|
|
|
+ },
|
|
|
+ data () {
|
|
|
+ return {
|
|
|
+ title: '',
|
|
|
+ method: '',
|
|
|
+ loading: false,
|
|
|
+ dialogVisible:false,
|
|
|
+ inputForm: {
|
|
|
+ id: '',
|
|
|
+ createDate: '',
|
|
|
+ createBy: {
|
|
|
+ id: '',
|
|
|
+ name: ''
|
|
|
+ },
|
|
|
+ remarks: '',
|
|
|
+ projectId: '',
|
|
|
+ name: '',
|
|
|
+ auditedUnits: '',
|
|
|
+ reportNum: '',
|
|
|
+ papersNum: '',
|
|
|
+ auditMoney:'',
|
|
|
+ connectReport:'',
|
|
|
+ year: '',
|
|
|
+ number: '',
|
|
|
+ isNumber: '',
|
|
|
+ auditDate: '',
|
|
|
+ procInsId: '',
|
|
|
+ processDefinitionId: '',
|
|
|
+ status: '',
|
|
|
+ workAttachmentDtoList: [],
|
|
|
+ cwProjectReportArchiveReportDTOList: [],
|
|
|
+ cwProjectRecordsDTO: {
|
|
|
+ remarks: '',
|
|
|
+ projectNumber: '',
|
|
|
+ projectName: '',
|
|
|
+ officeId: '',
|
|
|
+ projectMoney: '',
|
|
|
+ auditYear: '',
|
|
|
+ planStartDate: '',
|
|
|
+ planEndDate: '',
|
|
|
+ projectMasterId: '',
|
|
|
+ projectLeaderId: '',
|
|
|
+ procInsId: '',
|
|
|
+ processDefinitionId: '',
|
|
|
+ status: '',
|
|
|
+ contractId: ''
|
|
|
+ },
|
|
|
+ auditedUnitsName: '',
|
|
|
+ fileNumber: '',
|
|
|
+ reportDate: '',
|
|
|
+ reportNo: '',
|
|
|
+ signatureAnnotator1: '',
|
|
|
+ signatureAnnotator1Name: '',
|
|
|
+ signatureAnnotator2: '',
|
|
|
+ signatureAnnotator2Name: '',
|
|
|
+ reportCreateName: '',
|
|
|
+ reportId: '',
|
|
|
+ reportRemarks: ''
|
|
|
+ },
|
|
|
+ keyWatch: '',
|
|
|
+ activeName: 'files',
|
|
|
+ tableKeyReport: '',
|
|
|
+ isShow:false,
|
|
|
+ visible: false
|
|
|
+ }
|
|
|
+ },
|
|
|
+ projectReportArchiveService: null,
|
|
|
+ created () {
|
|
|
+ this.projectReportArchiveService = new ProjectReportArchiveService()
|
|
|
+ },
|
|
|
+ computed: {
|
|
|
+ bus: {
|
|
|
+ get () {
|
|
|
+ this.$refs.uploadComponent.setDividerName('附件', false)
|
|
|
+ return this.businessId
|
|
|
+ },
|
|
|
+ set (val) {
|
|
|
+ this.businessId = val
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ watch: {
|
|
|
+ 'keyWatch': {
|
|
|
+ handler (newVal) {
|
|
|
+ if (this.commonJS.isNotEmpty(this.bus)) {
|
|
|
+ this.init('', this.bus)
|
|
|
+ } else {
|
|
|
+ this.$nextTick(() => {
|
|
|
+ this.$refs.inputForm.resetFields()
|
|
|
+ })
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ components: {
|
|
|
+ UpLoadComponent,
|
|
|
+ ProjectRecordsChooseCom,
|
|
|
+ WorkClientChooseByProjectCom,
|
|
|
+ ReportChooseByProjectCom
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ getKeyWatch (keyWatch) {
|
|
|
+ this.keyWatch = keyWatch
|
|
|
+ },
|
|
|
+ init (method, id) {
|
|
|
+ this.visible = true
|
|
|
+ if (method === 'edit') {
|
|
|
+ this.title = '项目报告归档修改'
|
|
|
+ this.method = method
|
|
|
+ } else {
|
|
|
+ this.title = '项目报告归档详情'
|
|
|
+ this.method = 'view'
|
|
|
+ }
|
|
|
+ this.activeName = 'files'
|
|
|
+ this.projectReportArchiveService = new ProjectReportArchiveService()
|
|
|
+ this.inputForm = {
|
|
|
+ id: '',
|
|
|
+ createDate: '',
|
|
|
+ createBy: {
|
|
|
+ id: '',
|
|
|
+ name: this.$store.state.user.name
|
|
|
+ },
|
|
|
+ remarks: '',
|
|
|
+ projectId: '',
|
|
|
+ name: '',
|
|
|
+ auditedUnits: '',
|
|
|
+ reportNum: '',
|
|
|
+ papersNum: '',
|
|
|
+ auditMoney:'',
|
|
|
+ connectReport:'',
|
|
|
+ year: '',
|
|
|
+ number: '',
|
|
|
+ isNumber: '',
|
|
|
+ auditDate: '',
|
|
|
+ procInsId: '',
|
|
|
+ processDefinitionId: '',
|
|
|
+ status: '',
|
|
|
+ workAttachmentDtoList: [],
|
|
|
+ cwProjectReportArchiveReportDTOList: [],
|
|
|
+ cwProjectRecordsDTO: {
|
|
|
+ remarks: '',
|
|
|
+ projectNumber: '',
|
|
|
+ projectName: '',
|
|
|
+ officeId: '',
|
|
|
+ projectMoney: '',
|
|
|
+ auditYear: '',
|
|
|
+ planStartDate: '',
|
|
|
+ planEndDate: '',
|
|
|
+ projectMasterId: '',
|
|
|
+ projectLeaderId: '',
|
|
|
+ procInsId: '',
|
|
|
+ processDefinitionId: '',
|
|
|
+ status: '',
|
|
|
+ contractId: ''
|
|
|
+ },
|
|
|
+ auditedUnitsName: '',
|
|
|
+ fileNumber: '',
|
|
|
+ reportDate: '',
|
|
|
+ reportNo: '',
|
|
|
+ signatureAnnotator1: '',
|
|
|
+ signatureAnnotator1Name: '',
|
|
|
+ signatureAnnotator2: '',
|
|
|
+ signatureAnnotator2Name: '',
|
|
|
+ reportCreateName: '',
|
|
|
+ reportId: '',
|
|
|
+ reportRemarks: ''
|
|
|
+ }
|
|
|
+ this.inputForm.id = id
|
|
|
+ this.loading = false
|
|
|
+ this.$nextTick(() => {
|
|
|
+ this.$refs.inputForm.resetFields()
|
|
|
+ this.loading = true
|
|
|
+ this.projectReportArchiveService.queryById(this.inputForm.id).then((data) => {
|
|
|
+ this.isShow = false
|
|
|
+ this.$refs.uploadComponent.clearUpload()
|
|
|
+ this.inputForm = this.recover(this.inputForm, data)
|
|
|
+ this.inputForm = JSON.parse(JSON.stringify(this.inputForm))
|
|
|
+ if (this.commonJS.isEmpty(this.inputForm.workAttachmentDtoList)) {
|
|
|
+ this.inputForm.workAttachmentDtoList = []
|
|
|
+ }
|
|
|
+ if (this.commonJS.isEmpty(this.inputForm.createDate)) {
|
|
|
+ this.inputForm.createDate = data.createTime
|
|
|
+ }
|
|
|
+ if (this.commonJS.isEmpty(this.inputForm.createBy.name)) {
|
|
|
+ this.inputForm.createBy.name = this.$store.state.user.name
|
|
|
+ }
|
|
|
+ if (this.commonJS.isEmpty(this.inputForm.officeId)) {
|
|
|
+ this.inputForm.officeId = this.$store.state.user.office.id
|
|
|
+ }
|
|
|
+ if (this.commonJS.isEmpty(this.inputForm.papersNum)) {
|
|
|
+ this.inputForm.papersNum = 0
|
|
|
+ }
|
|
|
+ if (this.commonJS.isEmpty(this.inputForm.reportNum)) {
|
|
|
+ this.inputForm.reportNum = 0
|
|
|
+ }
|
|
|
+ if (this.formReadOnly) {
|
|
|
+ this.method = 'view'
|
|
|
+ }
|
|
|
+ if (this.inputForm.auditMoney === '0' || this.inputForm.auditMoney === '0.00') {
|
|
|
+ this.isShow = true
|
|
|
+ }
|
|
|
+ this.$refs.uploadComponent.newUpload('view', this.inputForm.workAttachmentDtoList, 'cw_project_archive', null, null, null, null, false)
|
|
|
+ this.loading = false
|
|
|
+ })
|
|
|
+ })
|
|
|
+ },
|
|
|
+ saveForm (callback) {
|
|
|
+ this.doSubmit('save', callback)
|
|
|
+ },
|
|
|
+ startForm (callback) {
|
|
|
+ this.doSubmit('start', callback)
|
|
|
+ },
|
|
|
+ async agreeForm (callback) {
|
|
|
+ await this.projectReportArchiveService.queryById(this.inputForm.id).then((data) => {
|
|
|
+ if (data.status !== '2') { // 审核状态不是“待审核”,就弹出提示
|
|
|
+ this.$message.error('任务数据已发生改变或不存在,请在待办任务中确认此任务是否存在')
|
|
|
+ throw new Error()
|
|
|
+ } else {
|
|
|
+ this.doSubmit('agree', callback)
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
+ // 表单提交
|
|
|
+ async doSubmit (status, callback) {
|
|
|
+ if (status === 'save') {
|
|
|
+ // 暂存
|
|
|
+ // this.inputForm.status = '1'
|
|
|
+ this.loading = true
|
|
|
+ if (this.$refs.uploadComponent.checkProgress()) {
|
|
|
+ this.loading = false
|
|
|
+ return
|
|
|
+ }
|
|
|
+ await this.$refs.uploadComponent.getDataList().then((list) => {
|
|
|
+ console.log('list', list)
|
|
|
+ // list为返回数据
|
|
|
+ this.inputForm.workAttachmentDtoList = list
|
|
|
+ })
|
|
|
+ console.log('this.inputForm.workAttachmentDtoList', this.inputForm.workAttachmentDtoList)
|
|
|
+ // this.inputForm.createDate = this.moment(new Date()).format('YYYY-MM-DD HH:mm:ss')
|
|
|
+ this.projectReportArchiveService.saveForm(this.inputForm).then((data) => {
|
|
|
+ // callback(data.businessTable, data.businessId, this.inputForm)
|
|
|
+ this.close()
|
|
|
+ this.$emit('refreshList')
|
|
|
+ this.loading = false
|
|
|
+ }).catch(() => {
|
|
|
+ this.loading = false
|
|
|
+ })
|
|
|
+ return
|
|
|
+ } else if (status === 'start') {
|
|
|
+ // 送审 待审核
|
|
|
+ this.inputForm.status = '2'
|
|
|
+ }
|
|
|
+ this.$refs['inputForm'].validate((valid) => {
|
|
|
+ if (valid) {
|
|
|
+ this.loading = true
|
|
|
+ if (this.$refs.uploadComponent.checkProgress()) {
|
|
|
+ this.loading = false
|
|
|
+ throw new Error()
|
|
|
+ } else {
|
|
|
+ let _this = this
|
|
|
+ const wait = function () {
|
|
|
+ return new Promise((resolve, reject) => {
|
|
|
+ if (status === 'agree') {
|
|
|
+ // 审核同意
|
|
|
+ _this.inputForm.auditDate = _this.moment(new Date()).format('YYYY-MM-DD HH:mm:ss')
|
|
|
+ // this.inputForm.agreeUserId = this.$store.state.user.id
|
|
|
+ _this.inputForm.status = '5'
|
|
|
+ if (_this.inputForm.isNumber !== _this.inputForm.number) {
|
|
|
+ _this.$message.error('“案卷号”与“确认案卷号”不一致,请重新填写')
|
|
|
+ _this.loading = false
|
|
|
+ throw new Error('“案卷号”与“确认案卷号”不一致,请重新填写')
|
|
|
+ }
|
|
|
+ }
|
|
|
+ _this.$refs.uploadComponent.getDataList().then((list) => {
|
|
|
+ // list为返回数据
|
|
|
+ _this.inputForm.workAttachmentDtoList = list
|
|
|
+ list.forEach(item => {
|
|
|
+ if (_this.commonJS.isEmpty(item.fileType)) {
|
|
|
+ _this.$message.error('附件中的文件类型不可以为空')
|
|
|
+ throw new Error()
|
|
|
+ }
|
|
|
+ })
|
|
|
+ })
|
|
|
+ if (_this.commonJS.isEmpty(_this.inputForm.createDate)) {
|
|
|
+ _this.inputForm.createDate = _this.moment(new Date()).format('YYYY-MM-DD HH:mm:ss')
|
|
|
+ }
|
|
|
+ resolve()
|
|
|
+ })
|
|
|
+ }
|
|
|
+ wait().then(() => {
|
|
|
+ this.projectReportArchiveService.saveForm(this.inputForm).then((data) => {
|
|
|
+ callback(data.businessTable, data.businessId, this.inputForm)
|
|
|
+ this.loading = false
|
|
|
+ }).catch(() => {
|
|
|
+ this.loading = false
|
|
|
+ })
|
|
|
+ })
|
|
|
+ }
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
+ async updateStatusById (type) {
|
|
|
+ if (type === 'reject' || type === 'reback') {
|
|
|
+ if (await this.$refs.uploadComponent.checkProgress()) {
|
|
|
+ this.loading = false
|
|
|
+ throw new Error()
|
|
|
+ }
|
|
|
+ await this.projectReportArchiveService.queryById(this.inputForm.id).then((data) => {
|
|
|
+ if (data.status !== '2') { // status的值不等于“审核中”就弹出提示
|
|
|
+ this.$message.error('任务数据已发生改变或不存在,请在待办任务中确认此任务是否存在')
|
|
|
+ throw new Error()
|
|
|
+ } else {
|
|
|
+ if (type === 'reject') {
|
|
|
+ // 驳回
|
|
|
+ this.inputForm.status = '4'
|
|
|
+ let param = {status: '4', id: this.inputForm.id}
|
|
|
+ this.projectReportArchiveService.updateStatusById(param)
|
|
|
+ }
|
|
|
+ if (type === 'reback') {
|
|
|
+ // 撤回
|
|
|
+ let param = {status: '3', id: this.inputForm.id}
|
|
|
+ this.projectReportArchiveService.updateStatusById(param)
|
|
|
+ }
|
|
|
+ }
|
|
|
+ })
|
|
|
+ }
|
|
|
+ },
|
|
|
+ close () {
|
|
|
+ this.inputForm = {
|
|
|
+ id: '',
|
|
|
+ createDate: '',
|
|
|
+ createBy: {
|
|
|
+ id: '',
|
|
|
+ name: ''
|
|
|
+ },
|
|
|
+ remarks: '',
|
|
|
+ projectId: '',
|
|
|
+ name: '',
|
|
|
+ auditedUnits: '',
|
|
|
+ reportNum: '',
|
|
|
+ papersNum: '',
|
|
|
+ auditMoney:'',
|
|
|
+ connectReport:'',
|
|
|
+ year: '',
|
|
|
+ number: '',
|
|
|
+ isNumber: '',
|
|
|
+ auditDate: '',
|
|
|
+ procInsId: '',
|
|
|
+ processDefinitionId: '',
|
|
|
+ status: '',
|
|
|
+ workAttachmentDtoList: [],
|
|
|
+ cwProjectReportArchiveReportDTOList: [],
|
|
|
+ cwProjectRecordsDTO: {
|
|
|
+ remarks: '',
|
|
|
+ projectNumber: '',
|
|
|
+ projectName: '',
|
|
|
+ officeId: '',
|
|
|
+ projectMoney: '',
|
|
|
+ auditYear: '',
|
|
|
+ planStartDate: '',
|
|
|
+ planEndDate: '',
|
|
|
+ projectMasterId: '',
|
|
|
+ projectLeaderId: '',
|
|
|
+ procInsId: '',
|
|
|
+ processDefinitionId: '',
|
|
|
+ status: '',
|
|
|
+ contractId: ''
|
|
|
+ },
|
|
|
+ auditedUnitsName: '',
|
|
|
+ fileNumber: '',
|
|
|
+ reportDate: '',
|
|
|
+ reportNo: '',
|
|
|
+ signatureAnnotator1: '',
|
|
|
+ signatureAnnotator1Name: '',
|
|
|
+ signatureAnnotator2: '',
|
|
|
+ signatureAnnotator2Name: '',
|
|
|
+ reportCreateName: '',
|
|
|
+ reportId: '',
|
|
|
+ reportRemarks: ''
|
|
|
+ }
|
|
|
+ this.$refs.uploadComponent.clearUpload()
|
|
|
+ this.$refs.inputForm.resetFields()
|
|
|
+ this.inputForm.reportId = ''
|
|
|
+ this.inputForm.projectId = ''
|
|
|
+ this.visible = false
|
|
|
+ },
|
|
|
+ tabHandleClick (event) {
|
|
|
+ // console.log(event)
|
|
|
+ },
|
|
|
+ // 新增
|
|
|
+ // eslint-disable-next-line no-dupe-keys
|
|
|
+ insertEvent (type) {
|
|
|
+ },
|
|
|
+ // 删除
|
|
|
+ removeEvent (row, rowIndex, type) {
|
|
|
+ if (type === 'report') {
|
|
|
+ this.$refs.reportTable.remove(row)
|
|
|
+ this.inputForm.cwProjectReportArchiveReportDTOList.splice(rowIndex, 1)
|
|
|
+ }
|
|
|
+ },
|
|
|
+ // 打开项目选择组件
|
|
|
+ openChooseProject (event) {
|
|
|
+ if (this.commonJS.isNotEmpty(this.inputForm.auditedUnitsName) || this.commonJS.isNotEmpty(this.inputForm.auditedUnits) || this.commonJS.isNotEmpty(this.inputForm.cwProjectReportArchiveReportDTOList)) {
|
|
|
+ this.$confirm(`重新选择项目会清空"被审计单位"以及"审计报告"的数据,是否继续?`, '提示', {
|
|
|
+ confirmButtonText: '确定',
|
|
|
+ cancelButtonText: '取消',
|
|
|
+ type: 'warning'
|
|
|
+ }).then(() => {
|
|
|
+ this.$refs.projectRecordsChooseCom.init()
|
|
|
+ }).catch(() => {
|
|
|
+ })
|
|
|
+ } else {
|
|
|
+ this.$refs.projectRecordsChooseCom.init()
|
|
|
+ }
|
|
|
+ },
|
|
|
+ // 项目选择结果获取
|
|
|
+ getProject (row) {
|
|
|
+ this.inputForm.projectId = row.id
|
|
|
+ this.inputForm.cwProjectRecordsDTO.projectName = row.projectName
|
|
|
+ this.inputForm.cwProjectRecordsDTO.projectNumber = row.projectNumber
|
|
|
+ this.inputForm.cwProjectRecordsDTO.projectMasterId = row.projectMasterId
|
|
|
+ this.inputForm.auditedUnitsName = ''
|
|
|
+ this.inputForm.auditedUnits = ''
|
|
|
+ this.inputForm.cwProjectReportArchiveReportDTOList = []
|
|
|
+ },
|
|
|
+ // 打开被审计单位选择组件
|
|
|
+ openChooseClient () {
|
|
|
+ this.$refs.workClientChooseByProjectCom.init(this.inputForm.projectId)
|
|
|
+ },
|
|
|
+ // 被审计单位选择结果获取
|
|
|
+ getClient (row) {
|
|
|
+ this.inputForm.auditedUnitsName = row.name
|
|
|
+ this.inputForm.auditedUnits = row.id
|
|
|
+ },
|
|
|
+ // 打开审计报告选择组件
|
|
|
+ openReportChoose () {
|
|
|
+ this.$refs.reportChooseByProjectCom.init(this.inputForm.projectId, this.inputForm.id)
|
|
|
+ },
|
|
|
+ // 审计报告选择结果获取
|
|
|
+ getReport (row) {
|
|
|
+ if (this.commonJS.isNotEmpty(row)) {
|
|
|
+ if (this.commonJS.isNotEmpty(row.reportId)) {
|
|
|
+ this.projectReportArchiveService.findReportUse(row.reportId).then((data) => {
|
|
|
+ if (data === false) {
|
|
|
+ this.inputForm.reportDate = row.reportDate
|
|
|
+ this.inputForm.reportNo = row.reportNo
|
|
|
+ this.inputForm.signatureAnnotator1 = row.signatureAnnotator1
|
|
|
+ this.inputForm.signatureAnnotator1Name = row.signatureAnnotator1Name
|
|
|
+ this.inputForm.signatureAnnotator2 = row.signatureAnnotator2
|
|
|
+ this.inputForm.signatureAnnotator2Name = row.signatureAnnotator2Name
|
|
|
+ this.inputForm.reportCreateName = row.createName
|
|
|
+ this.inputForm.reportId = row.reportId
|
|
|
+ } else {
|
|
|
+ this.$message.error('此报告正在归档中或已归档,请重新选择')
|
|
|
+ }
|
|
|
+ })
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ //打开开票列表页面
|
|
|
+ openInvoice(){
|
|
|
+ this.dialogVisible=true
|
|
|
+ },
|
|
|
+
|
|
|
+ }
|
|
|
+ }
|
|
|
+</script>
|
|
|
+<style scoped>
|
|
|
+ /deep/ .el-input-number .el-input__inner {
|
|
|
+ text-align: left;
|
|
|
+ }
|
|
|
+</style>
|