|
@@ -0,0 +1,406 @@
|
|
|
|
+<template>
|
|
|
|
+ <div class="page">
|
|
|
|
+ <el-form size="small" :inline="true" class="query-form" ref="searchForm" :model="searchForm" @keyup.enter.native="refreshList()" @submit.native.prevent>
|
|
|
|
+ <!-- 搜索框-->
|
|
|
|
+ <el-form-item label="项目编号" prop="projectNumber">
|
|
|
|
+ <el-input size="small" v-model="searchForm.projectNumber" placeholder="请输入项目编号" clearable></el-input>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="项目名称" prop="projectName">
|
|
|
|
+ <el-input size="small" v-model="searchForm.projectName" placeholder="请输入项目名称" clearable></el-input>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="项目经理" prop="projectMaster">
|
|
|
|
+ <el-input size="small" v-model="searchForm.projectMaster" placeholder="请输入项目经理" clearable></el-input>
|
|
|
|
+ </el-form-item>
|
|
|
|
+<!-- <el-form-item label="创建人" prop="createBy">-->
|
|
|
|
+<!-- <el-input size="small" v-model="searchForm.createBy" placeholder="请输入创建人" clearable></el-input>-->
|
|
|
|
+<!-- </el-form-item>-->
|
|
|
|
+ <el-form-item label="创建人" prop="createBy">
|
|
|
|
+ <SelectUserTree
|
|
|
|
+ ref="companyTree"
|
|
|
|
+ :props="{
|
|
|
|
+ value: 'id', // ID字段名
|
|
|
|
+ label: 'name', // 显示名称
|
|
|
|
+ children: 'children' // 子级字段名
|
|
|
|
+ }"
|
|
|
|
+ :url="`/sys/user/treeUserDataAllOffice?type=2`"
|
|
|
|
+ :value="searchForm.createBy"
|
|
|
|
+ :clearable="true"
|
|
|
|
+ :accordion="true"
|
|
|
|
+ @getValue="(value) => {searchForm.createBy=value}"/>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="创建时间" prop="contractDates">
|
|
|
|
+ <el-date-picker
|
|
|
|
+ placement="bottom-start"
|
|
|
|
+ format="yyyy-MM-dd HH:mm:ss"
|
|
|
|
+ value-format="yyyy-MM-dd HH:mm:ss"
|
|
|
|
+ v-model="searchForm.contractDates"
|
|
|
|
+ type="datetimerange"
|
|
|
|
+ range-separator="至"
|
|
|
|
+ start-placeholder="开始日期"
|
|
|
|
+ end-placeholder="结束日期">
|
|
|
|
+ </el-date-picker>
|
|
|
|
+ </el-form-item>
|
|
|
|
+
|
|
|
|
+ <el-form-item>
|
|
|
|
+ <el-button type="primary" @click="refreshList()" size="small" icon="el-icon-search">查询</el-button>
|
|
|
|
+ <el-button @click="resetSearch()" size="small" icon="el-icon-refresh-right">重置</el-button>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ </el-form>
|
|
|
|
+ <div class="bg-white top" style="">
|
|
|
|
+ <vxe-toolbar :refresh="{query: refreshList}" custom>
|
|
|
|
+ <template #buttons>
|
|
|
|
+ <el-button v-if="hasPermission('cw_work_client:info:add')" type="primary" size="small" icon="el-icon-plus" @click="start()">新建</el-button>
|
|
|
|
+ </template>
|
|
|
|
+ </vxe-toolbar>
|
|
|
|
+ <div style="height: calc(100% - 90px)">
|
|
|
|
+ <vxe-table
|
|
|
|
+ :key="tableKey"
|
|
|
|
+ border="inner"
|
|
|
|
+ auto-resize
|
|
|
|
+ resizable
|
|
|
|
+ height="auto"
|
|
|
|
+ :loading="loading"
|
|
|
|
+ size="small"
|
|
|
|
+ ref="clientTable"
|
|
|
|
+ show-header-overflow
|
|
|
|
+ show-overflow
|
|
|
|
+ highlight-hover-row
|
|
|
|
+ :menu-config="{}"
|
|
|
|
+ @sort-change="sortChangeHandle"
|
|
|
|
+ :sort-config="{remote:true}"
|
|
|
|
+ :data="dataList"
|
|
|
|
+ :checkbox-config="{}">
|
|
|
|
+ <vxe-column type="seq" width="60" title="序号"></vxe-column>
|
|
|
|
+ <vxe-column min-width="160" align="center" title="单据编号" field="documentNo">
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
+ <el-link type="primary" :underline="false" v-if="hasPermission('cwProjectReport:list')" @click="view(scope.row.id)">{{scope.row.documentNo}}</el-link>
|
|
|
|
+ <el-link type="primary" :underline="false" v-else-if="hasPermission('cwProjectReport:list')" @click="view(scope.row.id,)">{{scope.row.documentNo}}</el-link>
|
|
|
|
+ <span v-else>{{scope.row.documentNo}}</span>
|
|
|
|
+ </template>
|
|
|
|
+ </vxe-column>
|
|
|
|
+ <vxe-column min-width="160" align="center" title="项目编号" field="projectNumber"></vxe-column>
|
|
|
|
+ <vxe-column min-width="160" align="center" title="项目名称" field="projectName"></vxe-column>
|
|
|
|
+ <vxe-column min-width="160" align="center" title="报告所属部门" field="departmentName"></vxe-column>
|
|
|
|
+ <vxe-column min-width="160" align="center" title="项目经理" field="projectMasterName"></vxe-column>
|
|
|
|
+ <vxe-column min-width="160" align="center" title="报告主办人" field="reportSponsor"></vxe-column>
|
|
|
|
+ <vxe-column min-width="160" align="center" title="创建人" field="userName"></vxe-column>
|
|
|
|
+ <vxe-column min-width="160" align="center" title="创建时间" field="createDate"></vxe-column>
|
|
|
|
+ <vxe-column min-width="150px"align="center" fixed="right" title="状态" field="status" >
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
+ <el-button type="text" @click="detail(scope.row)" effect="dark" size="mini"
|
|
|
|
+ :type="$dictUtils.getDictLabel('cw_status_flag', scope.row.status, '-')">
|
|
|
|
+ {{$dictUtils.getDictLabel("cw_status", scope.row.status, '-')}}
|
|
|
|
+ </el-button>
|
|
|
|
+ </template>
|
|
|
|
+ </vxe-column>
|
|
|
|
+
|
|
|
|
+ <vxe-column title="操作" width="150px" fixed="right" align="center">
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
+ <el-button v-if="hasPermission('cwProjectReport:edit')&&scope.row.createById === $store.state.user.id&&(scope.row.status==='1'||scope.row.status==='3'||scope.row.status==='4')" type="text" icon="el-icon-edit" size="small" @click="push(scope.row)">修改</el-button>
|
|
|
|
+ <el-button v-else-if="hasPermission('cwProjectReport:edit')&&isAdmin&&(scope.row.status==='1'||scope.row.status==='3'||scope.row.status==='4'||scope.row.status==='5')" type="text" icon="el-icon-edit" size="small" @click="edit(scope.row.id)">修改</el-button>
|
|
|
|
+ <el-button v-if="hasPermission('cwProjectReport:edit')&&scope.row.createById === $store.state.user.id&&scope.row.status==='2'" type="text" icon="el-icon-edit" size="small" @click="reback(scope.row)">撤回</el-button>
|
|
|
|
+ <el-button v-if="hasPermission('cwProjectReport:del')&&scope.row.createById === $store.state.user.id&&(scope.row.status==='1'||scope.row.status==='3'||scope.row.status==='4')" type="text" icon="el-icon-delete" size="small" @click="del(scope.row.id)">删除</el-button>
|
|
|
|
+ <el-button v-else-if="hasPermission('cwProjectReport:del')&&isAdmin&&(scope.row.status==='1'||scope.row.status==='3'||scope.row.status==='4'||scope.row.status==='5')" type="text" icon="el-icon-delete" size="small" @click="del(scope.row.id)">删除</el-button>
|
|
|
|
+ </template>
|
|
|
|
+ </vxe-column>
|
|
|
|
+ </vxe-table>
|
|
|
|
+ <vxe-pager
|
|
|
|
+ background
|
|
|
|
+ size="small"
|
|
|
|
+ :current-page="tablePage.currentPage"
|
|
|
|
+ :page-size="tablePage.pageSize"
|
|
|
|
+ :total="tablePage.total"
|
|
|
|
+ :page-sizes="[10, 20, 100, 1000, {label: '全量数据', value: 1000000}]"
|
|
|
|
+ :layouts="['PrevPage', 'JumpNumber', 'NextPage', 'FullJump', 'Sizes', 'Total']"
|
|
|
|
+ @page-change="currentChangeHandle">
|
|
|
|
+ </vxe-pager>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+<!-- <ReportManagementForm ref="reportManagementForm"></ReportManagementForm>-->
|
|
|
|
+ <ReportCancellApplyForm ref="reportCancellApplyForm"></ReportCancellApplyForm>
|
|
|
|
+ </div>
|
|
|
|
+</template>
|
|
|
|
+
|
|
|
|
+<script>
|
|
|
|
+ import WorkClientService from '@/api/cw/workClientInfo/WorkClientService'
|
|
|
|
+ // import ProjectReportService from '@/api/cw/reportManagement/ProjectReportService'
|
|
|
|
+ import ReportCancellApplyService from '@/api/cw/reportCancellApply/ReportCancellApplyService'
|
|
|
|
+ import TaskService from '@/api/flowable/TaskService'
|
|
|
|
+ import ProcessService from '@/api/flowable/ProcessService'
|
|
|
|
+ // import ReportManagementForm from '../reportManagement/ReportManagementForm'
|
|
|
|
+ import ReportCancellApplyForm from './ReportCancellApplyForm'
|
|
|
|
+ import pick from 'lodash.pick'
|
|
|
|
+ import UserService from '@/api/sys/UserService'
|
|
|
|
+ import SelectUserTree from '@/views/modules/utils/treeUserSelect'
|
|
|
|
+ export default {
|
|
|
|
+ data () {
|
|
|
|
+ return {
|
|
|
|
+ searchForm: {
|
|
|
|
+ projectNumber: '',
|
|
|
|
+ projectName: '',
|
|
|
|
+ projectMaster: '',
|
|
|
|
+ createBy: '',
|
|
|
|
+ contractDates: []
|
|
|
|
+ },
|
|
|
|
+ dataList: [],
|
|
|
|
+ tablePage: {
|
|
|
|
+ total: 0,
|
|
|
|
+ currentPage: 1,
|
|
|
|
+ pageSize: 10,
|
|
|
|
+ orders: []
|
|
|
|
+ },
|
|
|
|
+ tableKey: '',
|
|
|
|
+ loading: false,
|
|
|
|
+ processDefinitionAuditId: '',
|
|
|
|
+ procDefAuditKey: '',
|
|
|
|
+ isAdmin: false,
|
|
|
|
+ create: ''
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ workClientService: null,
|
|
|
|
+ // projectReportService: null,
|
|
|
|
+ reportCancellApplyService: null,
|
|
|
|
+ taskService: null,
|
|
|
|
+ processService: null,
|
|
|
|
+ userService: null,
|
|
|
|
+ created () {
|
|
|
|
+ this.workClientService = new WorkClientService()
|
|
|
|
+ // this.projectReportService = new ProjectReportService()
|
|
|
|
+ this.reportCancellApplyService = new ReportCancellApplyService()
|
|
|
|
+ this.taskService = new TaskService()
|
|
|
|
+ this.processService = new ProcessService()
|
|
|
|
+ this.userService = new UserService()
|
|
|
|
+ },
|
|
|
|
+ components: {
|
|
|
|
+ // ReportManagementForm
|
|
|
|
+ ReportCancellApplyForm,
|
|
|
|
+ SelectUserTree
|
|
|
|
+ },
|
|
|
|
+ computed: {
|
|
|
|
+ userName () {
|
|
|
|
+ return JSON.parse(localStorage.getItem('user')).name
|
|
|
|
+ },
|
|
|
|
+ user () {
|
|
|
|
+ this.createName = JSON.parse(localStorage.getItem('user')).name
|
|
|
|
+ return JSON.parse(localStorage.getItem('user'))
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ mounted () {
|
|
|
|
+ this.refreshList()
|
|
|
|
+ },
|
|
|
|
+ activated () {
|
|
|
|
+ this.refreshList()
|
|
|
|
+ },
|
|
|
|
+ methods: {
|
|
|
|
+ // 新增
|
|
|
|
+ add () {
|
|
|
|
+ // this.$refs.reportManagementForm.init('add', '')
|
|
|
|
+ this.$refs.reportCancellApplyForm.init('add', '')
|
|
|
|
+ },
|
|
|
|
+ // 修改
|
|
|
|
+ edit (id) {
|
|
|
|
+ id = id || this.$refs.clientTable.getCheckboxRecords().map(item => {
|
|
|
|
+ return item.id
|
|
|
|
+ })[0]
|
|
|
|
+ // this.$refs.reportManagementForm.init('edit', id)
|
|
|
|
+ this.$refs.reportCancellApplyForm.init('edit', id)
|
|
|
|
+ },
|
|
|
|
+ // 查看
|
|
|
|
+ view (id) {
|
|
|
|
+ // this.$refs.reportManagementForm.init('view', id)
|
|
|
|
+ this.$refs.reportCancellApplyForm.init('view', id)
|
|
|
|
+ },
|
|
|
|
+ // 查询当前用户是否是管理员用户
|
|
|
|
+ checkIsAdmin () {
|
|
|
|
+ this.userService.is().then(({data}) => {
|
|
|
|
+ this.isAdmin = data
|
|
|
|
+ })
|
|
|
|
+ },
|
|
|
|
+ // 获取数据列表
|
|
|
|
+ refreshList () {
|
|
|
|
+ this.loading = true
|
|
|
|
+ this.reportCancellApplyService.findList({
|
|
|
|
+ 'current': this.tablePage.currentPage,
|
|
|
|
+ 'size': this.tablePage.pageSize,
|
|
|
|
+ 'orders': this.tablePage.orders,
|
|
|
|
+ ...this.searchForm
|
|
|
|
+ }).then(({data}) => {
|
|
|
|
+ this.dataList = data.records
|
|
|
|
+ this.tablePage.total = data.total
|
|
|
|
+ this.tableKey = Math.random()
|
|
|
|
+ this.loading = false
|
|
|
|
+ })
|
|
|
|
+ // this.projectReportService.list({
|
|
|
|
+ // 'current': this.tablePage.currentPage,
|
|
|
|
+ // 'size': this.tablePage.pageSize,
|
|
|
|
+ // 'orders': this.tablePage.orders,
|
|
|
|
+ // ...this.searchForm
|
|
|
|
+ // }).then(({data}) => {
|
|
|
|
+ // this.dataList = data.records
|
|
|
|
+ // this.tablePage.total = data.total
|
|
|
|
+ // this.tableKey = Math.random()
|
|
|
|
+ // this.loading = false
|
|
|
|
+ // })
|
|
|
|
+ this.checkIsAdmin()
|
|
|
|
+ this.processService.getByName('财务-报告作废申请').then(({data}) => {
|
|
|
|
+ if (!this.commonJS.isEmpty(data.id)) {
|
|
|
|
+ this.processDefinitionAuditId = data.id
|
|
|
|
+ this.procDefAuditKey = data.key
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ },
|
|
|
|
+ // 当前页
|
|
|
|
+ currentChangeHandle ({ currentPage, pageSize }) {
|
|
|
|
+ this.tablePage.currentPage = currentPage
|
|
|
|
+ this.tablePage.pageSize = pageSize
|
|
|
|
+ this.refreshList()
|
|
|
|
+ },
|
|
|
|
+ // 排序
|
|
|
|
+ sortChangeHandle (column) {
|
|
|
|
+ this.tablePage.orders = []
|
|
|
|
+ if (column.order != null) {
|
|
|
|
+ this.tablePage.orders.push({column: this.$utils.toLine(column.property), asc: column.order === 'asc'})
|
|
|
|
+ }
|
|
|
|
+ this.refreshList()
|
|
|
|
+ },
|
|
|
|
+ // 删除
|
|
|
|
+ del (id) {
|
|
|
|
+ let ids = id || this.$refs.clientTable.getCheckboxRecords().map(item => {
|
|
|
|
+ return item.id
|
|
|
|
+ }).join(',')
|
|
|
|
+ this.$confirm(`确定删除所选项吗?`, '提示', {
|
|
|
|
+ confirmButtonText: '确定',
|
|
|
|
+ cancelButtonText: '取消',
|
|
|
|
+ type: 'warning'
|
|
|
|
+ }).then(() => {
|
|
|
|
+ this.loading = true
|
|
|
|
+ this.reportCancellApplyService.delete(ids).then(({data}) => {
|
|
|
|
+ this.$message.success(data)
|
|
|
|
+ this.refreshList()
|
|
|
|
+ this.loading = false
|
|
|
|
+ })
|
|
|
|
+ // this.projectReportService.delete(ids).then(({data}) => {
|
|
|
|
+ // this.$message.success(data)
|
|
|
|
+ // this.refreshList()
|
|
|
|
+ // this.loading = false
|
|
|
|
+ // })
|
|
|
|
+ })
|
|
|
|
+ },
|
|
|
|
+ resetSearch () {
|
|
|
|
+ this.$refs.searchForm.resetFields()
|
|
|
|
+ this.refreshList()
|
|
|
|
+ },
|
|
|
|
+ start () {
|
|
|
|
+ // 读取流程表单
|
|
|
|
+ let tabTitle = `发起流程【报告作废申请】`
|
|
|
|
+ let processTitle = `${this.userName} 在 ${this.moment(new Date()).format('YYYY-MM-DD HH:mm')} 发起了 [报告作废申请]`
|
|
|
|
+ this.taskService.getTaskDef({ procDefId: this.processDefinitionAuditId,
|
|
|
|
+ status: 'startAndHold'}).then((data) => {
|
|
|
|
+ this.$router.push({
|
|
|
|
+ path: '/flowable/task/TaskForm',
|
|
|
|
+ query: {
|
|
|
|
+ procDefId: this.processDefinitionAuditId,
|
|
|
|
+ procDefKey: this.procDefAuditKey,
|
|
|
|
+ status: 'startAndHold',
|
|
|
|
+ title: tabTitle,
|
|
|
|
+ formType: data.data.formType,
|
|
|
|
+ formUrl: data.data.formUrl,
|
|
|
|
+ formTitle: processTitle,
|
|
|
|
+ businessId: 'false',
|
|
|
|
+ isShow: false,
|
|
|
|
+ routePath: '/cw/reportCancellApply/ReportCancellApplyList'
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ })
|
|
|
|
+ },
|
|
|
|
+ // 发起客户登记
|
|
|
|
+ push (row) {
|
|
|
|
+ // 读取流程表单
|
|
|
|
+ let title = `发起流程【报告作废申请】`
|
|
|
|
+ let processTitle = `${this.userName} 在 ${this.moment(new Date()).format('YYYY-MM-DD HH:mm')} 发起了[报告作废申请]`
|
|
|
|
+ let status = 'startAndHold'
|
|
|
|
+ if (row.status === '3' || row.status === '4') {
|
|
|
|
+ status = 'startAndClose'
|
|
|
|
+ }
|
|
|
|
+ this.taskService.getTaskDef({ procDefId: this.processDefinitionAuditId,
|
|
|
|
+ businessId: row.id,
|
|
|
|
+ businessTable: 'cw_project_report_cancell_apply'}).then((data) => {
|
|
|
|
+ this.$router.push({
|
|
|
|
+ path: '/flowable/task/TaskForm',
|
|
|
|
+ query: {
|
|
|
|
+ procDefId: this.processDefinitionAuditId,
|
|
|
|
+ procDefKey: this.procDefAuditKey,
|
|
|
|
+ title: title,
|
|
|
|
+ formType: data.data.formType,
|
|
|
|
+ formUrl: data.data.formUrl,
|
|
|
|
+ formTitle: processTitle,
|
|
|
|
+ businessTable: 'cw_project_report_cancell_apply',
|
|
|
|
+ businessId: row.id,
|
|
|
|
+ isShow: 'false',
|
|
|
|
+ status: status,
|
|
|
|
+ routePath: '/cw/reportCancellApply/ReportCancellApplyList'
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ })
|
|
|
|
+ },
|
|
|
|
+ // 查看客户登记流程结果
|
|
|
|
+ detail (row) {
|
|
|
|
+ if (row.status !== '0' && row.status !== '1') {
|
|
|
|
+ // eslint-disable-next-line eqeqeq
|
|
|
|
+ this.taskService.getTaskDef({
|
|
|
|
+ procInsId: row.procInsId,
|
|
|
|
+ procDefId: this.processDefinitionAuditId
|
|
|
|
+ }).then(({data}) => {
|
|
|
|
+ this.$router.push({
|
|
|
|
+ path: '/flowable/task/TaskFormDetail',
|
|
|
|
+ query: {
|
|
|
|
+ isShow: 'false',
|
|
|
|
+ readOnly: true,
|
|
|
|
+ title: '质控管理' + '流程详情',
|
|
|
|
+ formTitle: '质控管理' + '流程详情',
|
|
|
|
+ businessId: row.id,
|
|
|
|
+ status: 'reback',
|
|
|
|
+ ...pick(data, 'formType', 'formUrl', 'procDefKey', 'taskDefKey', 'procInsId', 'procDefId', 'taskId', 'title', 'businessId')
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ })
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ // 撤回报告流程
|
|
|
|
+ reback (row) {
|
|
|
|
+ this.$confirm(`确定要撤回该申请吗?`, '提示', {
|
|
|
|
+ confirmButtonText: '确定',
|
|
|
|
+ cancelButtonText: '取消',
|
|
|
|
+ type: 'warning'
|
|
|
|
+ }).then(async () => {
|
|
|
|
+ await this.reportCancellApplyService.queryById(row.id).then(({data}) => {
|
|
|
|
+ if (data.status !== '2') { // status的值不等于“审核中”,就弹出提示
|
|
|
|
+ this.$message.error('数据已发生改变或不存在,请刷新数据')
|
|
|
|
+ this.refreshList()
|
|
|
|
+ } else {
|
|
|
|
+ this.processService.revokeProcIns(row.procInsId).then(({data}) => {
|
|
|
|
+ let form = {status: '3', id: row.id}
|
|
|
|
+ this.reportCancellApplyService.updateStatusById(form)
|
|
|
|
+ this.$message.success(data)
|
|
|
|
+ this.refreshList()
|
|
|
|
+ })
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ // await this.projectReportService.queryById(row.id).then(({data}) => {
|
|
|
|
+ // if (data.status !== '2') { // status的值不等于“审核中”,就弹出提示
|
|
|
|
+ // this.$message.error('数据已发生改变或不存在,请刷新数据')
|
|
|
|
+ // this.refreshList()
|
|
|
|
+ // } else {
|
|
|
|
+ // this.processService.revokeProcIns(row.procInsId).then(({data}) => {
|
|
|
|
+ // let form = {status: '3', id: row.id}
|
|
|
|
+ // this.projectReportService.updateStatusById(form)
|
|
|
|
+ // this.$message.success(data)
|
|
|
|
+ // this.refreshList()
|
|
|
|
+ // })
|
|
|
|
+ // }
|
|
|
|
+ // })
|
|
|
|
+ })
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+</script>
|