| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652 |
- <template>
- <div class="ele-body">
- <el-card shadow="never" v-loading="loading">
- <div class="ele-border-lighter form-content" v-loading="loading">
- <search-quotation @search="reload"></search-quotation>
- <!-- 数据表格 -->
- <ele-pro-table
- ref="table"
- :columns="columns"
- :datasource="datasource"
- height="calc(100vh - 375px)"
- full-height="calc(100vh - 116px)"
- tool-class="ele-toolbar-form"
- :selection.sync="selection"
- :page-size="20"
- @columns-change="handleColumnChange"
- :cache-key="cacheKeyUrl"
- >
- <!-- 表头工具栏 -->
- <template v-slot:toolbar>
- <el-button
- size="small"
- type="primary"
- icon="el-icon-plus"
- class="ele-btn-icon"
- @click="openEdit('add', {})"
- >
- 新建
- </el-button>
- <el-button
- size="small"
- type="danger"
- el-icon-delete
- class="ele-btn-icon"
- @click="allDelBtn"
- :disabled="selection?.length === 0"
- >
- 批量删除
- </el-button>
- <el-button
- type="primary"
- size="small"
- icon="el-icon-upload2"
- @click="uploadFile"
- >导入</el-button
- >
- <el-button
- type="primary"
- size="small"
- icon="el-icon-download"
- @click="exportRowInfo()"
- :disabled="selection?.length !== 1"
- >导出</el-button
- >
- <el-button
- type="primary"
- size="small"
- @click="updatePrice()"
- :disabled="!canBatchUpdatePrice"
- >批量更新价格</el-button
- >
- </template>
- <!-- 查看详情列 -->
- <template v-slot:contactName="{ row }">
- <el-link type="primary" :underline="false" @click="openDetail(row)">
- {{ row.contactName }}
- </el-link>
- </template>
- <!-- 附件 -->
- <template v-slot:askFile="{ row }">
- <fileMain
- type="view"
- v-model="row.askFile"
- v-if="row.askFile?.length"
- ></fileMain>
- </template>
- <!-- 操作列 -->
- <template v-slot:action="{ row }">
- <el-link
- type="primary"
- :underline="false"
- icon="el-icon-edit"
- @click="openEdit('copy', row)"
- >
- 复制
- </el-link>
- <el-link
- type="primary"
- :underline="false"
- icon="el-icon-edit"
- v-if="
- (isNeed_process_is_close && [0, 3].includes(row.status)) ||
- !isNeed_process_is_close
- "
- @click="openEdit('edit', row)"
- >
- 修改
- </el-link>
- <el-link
- type="primary"
- :underline="false"
- icon="el-icon-plus"
- v-if="isNeed_process_is_close && [0, 3].includes(row.status)"
- @click="quotationSubmit(row)"
- >
- 提交
- </el-link>
- <el-link
- type="primary"
- :underline="false"
- icon="el-icon-plus"
- v-if="[2].includes(row.status) && [1].includes(row.dataStatus)"
- @click="addGenerateContract(row)"
- >
- 生成合同
- </el-link>
- <el-link
- type="danger"
- :underline="false"
- v-if="[2].includes(row.status) && [1].includes(row.dataStatus)"
- @click="setQuoteStatus(row)"
- >
- 终止
- </el-link>
- <el-popconfirm
- class="ele-action"
- title="确定要删除此信息吗?"
- @confirm="remove([row.id])"
- >
- <template v-slot:reference>
- <el-link
- type="danger"
- :underline="false"
- icon="el-icon-delete"
- v-if="
- (isNeed_process_is_close && [0, 3].includes(row.status)) ||
- !isNeed_process_is_close
- "
- >
- 删除
- </el-link>
- </template>
- </el-popconfirm>
- </template>
- </ele-pro-table>
- </div>
- </el-card>
- <add-dialog
- ref="addDialogRef"
- @done="reload"
- :contactData="contactData"
- :businessOpportunityData="businessOpportunityData"
- ></add-dialog>
- <detail-dialog ref="contactDetailDialogRef"></detail-dialog>
- <!-- 多选删除弹窗 -->
- <pop-modal
- :visible.sync="delVisible"
- content="是否确定删除?"
- @done="commitBtn"
- />
- <addContractBookDialog
- ref="addContractBookDialogRef"
- :categoryTreeList="treeList"
- :contactData="contactData"
- :businessOpportunityData="businessOpportunityData"
- ></addContractBookDialog>
- <process-submit-dialog
- api-fun-name="quoteUpdateStatusAPI"
- :processSubmitDialogFlag.sync="processSubmitDialogFlag"
- :isCloseRefresh="false"
- v-if="processSubmitDialogFlag"
- ref="processSubmitDialogRef"
- @reload="reload"
- ></process-submit-dialog>
- <importDialog
- ref="importDialogRef"
- @success="reload"
- :fileUrl="'/eom/quote/downLoadTemplate'"
- :isWeb="false"
- fileName="报价管理导入模板"
- apiUrl="/eom/quote/importFile"
- />
- </div>
- </template>
- <script>
- import searchQuotation from './components/searchQuotation.vue';
- import addDialog from './components/addDialog.vue';
- import detailDialog from './components/detailDialog.vue';
- import popModal from '@/components/pop-modal';
- import { reviewStatus } from '@/enum/dict';
- import addContractBookDialog from '@/views/contractManage/contractBook/components/addDialog.vue';
- import { contactTypeTree, contactDetail } from '@/api/saleManage/contact';
- import importDialog from '@/components/upload/import-dialog.vue';
- // import fileMain from '@/components/addDoc/index.vue';
- import {
- getTableList,
- getDetail,
- deleteInformation,
- submit,
- quoteUpdateStatus,
- exportByPathId,
- updateProductPrice
- } from '@/api/saleManage/quotation';
- import dictMixins from '@/mixins/dictMixins';
- import processSubmitDialog from '@/BIZComponents/processSubmitDialog/processSubmitDialog.vue';
- import tabMixins from '@/mixins/tableColumnsMixin';
- export default {
- mixins: [dictMixins, tabMixins],
- components: {
- processSubmitDialog,
- searchQuotation,
- popModal,
- addDialog,
- detailDialog,
- importDialog,
- addContractBookDialog
- // fileMain
- },
- props: {
- contactData: {
- default: () => {
- return {};
- }
- },
- businessOpportunityData: {
- //商机
- default: () => {
- return {};
- }
- }
- },
- data() {
- return {
- selection: [], //单选中集合
- delVisible: false, //批量删除弹框状态
- loading: false, // 加载状态
- processSubmitDialogFlag: false,
- treeList: [],
- columns: [
- {
- width: 45,
- type: 'selection',
- columnKey: 'selection',
- align: 'center'
- },
- {
- columnKey: 'index',
- label: '序号',
- type: 'index',
- width: 55,
- align: 'center',
- showOverflowTooltip: true,
- fixed: 'left'
- },
- {
- prop: 'code',
- label: '编码',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 200
- },
- {
- prop: 'contactName',
- label: '询价方名称',
- align: 'center',
- slot: 'contactName',
- showOverflowTooltip: true,
- minWidth: 200
- },
- {
- prop: 'contactLinkName',
- label: '询价方联系人',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 140
- },
- {
- prop: 'contactTel',
- label: '询价方联系电话',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 140
- },
- {
- prop: 'productNames',
- label: '产品名称',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 140
- },
- {
- prop: 'type',
- label: '报价类型',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 120,
- formatter: (_row, _column, cellValue) => {
- // 根据type值转换显示文本
- if (_row.type === 1) return '产品销售';
- if (_row.type === 2) return '生产加工';
- return ''; // 其他情况显示空
- }
- },
- {
- prop: 'quoteName',
- label: '报价方名称',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 200
- },
- {
- prop: 'quoteLinkName',
- label: '报价方联系人',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 140
- },
- {
- prop: 'quoteTel',
- label: '报价方联系电话',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 140
- },
- {
- prop: 'deliveryDate',
- label: '交货日期',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 100
- },
- {
- prop: 'settlementModeName',
- label: '付款方式',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 100
- },
- // {
- // prop: 'taxRate',
- // label: '税率',
- // align: 'center',
- // showOverflowTooltip: true,
- // minWidth: 140,
- // formatter: (_row, _column, cellValue) => {
- // return _row.taxRate ? _row.taxRate + '%' : '';
- // }
- // },
- {
- prop: 'totalPrice',
- label: '总金额',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 100
- },
- {
- prop: 'askFile',
- label: '附件',
- align: 'center',
- showOverflowTooltip: true,
- slot: 'askFile',
- minWidth: 130
- },
- {
- prop: 'dataStatus',
- label: '启用状态',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 100,
- formatter: (_row, _column, cellValue) => {
- return _row.dataStatus === 1 ? '正常' : '终止';
- }
- },
- {
- prop: 'status',
- label: '审核状态',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 100,
- formatter: (_row, _column, cellValue) => {
- return reviewStatus[_row.status];
- }
- },
- {
- prop: 'createUserName',
- label: '创建人',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 80
- },
- {
- prop: 'createTime',
- label: '创建时间',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 170,
- formatter: (_row, _column, cellValue) => {
- return this.$util.toDateString(cellValue);
- }
- },
- {
- columnKey: 'action',
- label: '操作',
- width: 230,
- align: 'center',
- resizable: false,
- slot: 'action',
- showOverflowTooltip: true,
- fixed: 'right'
- }
- ],
- cacheKeyUrl: 'eos-5569a1b1-saleManage-quotation'
- };
- },
- created() {
- this.requestDict('客户状态');
- this.getTreeData();
- },
- computed: {
- canBatchUpdatePrice() {
- if (this.selection?.length === 0) {
- return false; // 没有选中项,禁用
- }
- return this.selection.every((row) => [0, 3].includes(row.status));
- }
- },
- methods: {
- quoteUpdateStatus,
- /* 表格数据源 */
- datasource({ page, limit, where, order }) {
- if (this.contactData.id) {
- where['contactId'] = this.contactData.id;
- }
- if (this.businessOpportunityData.id) {
- where['opportunityId'] = this.businessOpportunityData.id;
- }
- return getTableList({
- pageNum: page,
- size: limit,
- ...where
- });
- },
- //导出
- exportRowInfo() {
- const ids = this.selection.map((row) => row.id);
- if (ids.length === 0) {
- this.$message.warning('请选择需要导出的数据');
- return;
- }
- if (ids.length > 1) {
- this.$message.warning('只能选择一条数据进行导出');
- return;
- }
- exportByPathId(ids);
- },
- updatePrice() {
- const ids = this.selection.map((row) => row.id);
- updateProductPrice(ids);
- },
- //获取合同分类
- async getTreeData() {
- try {
- this.treeLoading = true;
- const res = await contactTypeTree({ id: '20' });
- this.treeLoading = false;
- if (res?.code === '0') {
- this.treeList = res.data;
- return this.treeList;
- }
- } catch (error) {}
- this.treeLoading = false;
- },
- /* 刷新表格 */
- reload(where) {
- this.$refs.table.reload({ page: 1, where });
- },
- //导入
- uploadFile() {
- this.$refs.importDialogRef.open();
- },
- //新增编辑
- openEdit(type, row) {
- this.$refs.addDialogRef.open(type, row, row.id);
- this.$refs.addDialogRef.$refs.form &&
- this.$refs.addDialogRef.$refs.form.clearValidate();
- },
- //批量删除
- allDelBtn() {
- if (this.selection.length === 0) return;
- let flag = this.selection.some((item) => [1, 2].includes(item.status));
- if (flag)
- return this.$message.warning('抱歉已审核、审核中的数据不能删除,请检查');
- this.delVisible = true;
- },
- //删除接口
- remove(delData) {
- deleteInformation(delData).then((res) => {
- this.$message.success('删除成功!');
- this.reload();
- });
- },
- //删除弹框确定
- commitBtn() {
- const dataId = this.selection.map((v) => v.id);
- this.remove(dataId);
- },
- async setQuoteStatus(row) {
- await quoteUpdateStatus({ id: row.id, status: 2 });
- this.$message.success('操作成功!');
- this.reload();
- },
- //新增合同
- async addGenerateContract(row) {
- //获取详情
- const data = await getDetail(row.id);
- const contact = await contactDetail(data.contactId);
- let obj = {
- contractVO: {
- categoryId: '',
- categoryName: '',
- contractEndDate: '',
- contractFile: [],
- contractNo: '',
- contractNumber: '',
- contractStartDate: '',
- createDept: '',
- createTime: '',
- createUsername: '',
- discountTotalPrice: '',
- enabled: '',
- id: '',
- opportunityId: '',
- partaAddress: data.contactAddress,
- partaEmail: data.contactEmail,
- partaFax: data.contactFax,
- partaId: data.contactId,
- partaLinkId: data.contactLinkId,
- partaLinkName: data.contactLinkName,
- partaName: data.contactName,
- partaTel: data.contactTel,
- partaUnifiedSocialCreditCode: '',
- partbAddress: data.quoteAddress,
- partbEmail: data.quoteEmail,
- partbFax: data.quoteFax,
- partbId: data.quoteCompanyId,
- partbLinkId: data.quoteLinkId,
- partbLinkName: data.quoteLinkName,
- partbName: data.quoteName,
- partbTel: data.quoteTel,
- partbUnifiedSocialCreditCode: '',
- receiptPaymentType: '',
- reviewerId: '',
- reviewerName: '',
- reviewerTime: '',
- sourceId: row.id,
- sourceType: 1,
- sourceName: data.code,
- status: '',
- totalPrice: data.totalPrice,
- discountTotalPrice: data.totalPrice,
- type: '1',
- typeName: '销售合同',
- updateUsername: '',
- sourceCode: row.code,
- contractName: contact.base.simpleName,
- settlementModeName: data.settlementModeName,
- settlementMode: data.settlementMode
- },
- receiptPaymentList: [],
- productList: data.quoteProductList
- };
- // return;
- this.$refs.addContractBookDialogRef.open('add', obj, true, 'quotation');
- },
- //查看详情
- openDetail(row) {
- this.$refs.contactDetailDialogRef.open(row);
- },
- quotationSubmit(res) {
- this.processSubmitDialogFlag = true;
- this.$nextTick(() => {
- let params = {
- businessId: res.id,
- businessKey: 'quote_approve',
- formCreateUserId: res.createUserId,
- variables: {
- businessCode: res.code,
- businessName: res.contactName,
- businessType: '报价单'
- }
- // callBackMethodType : '1',
- // callBackMethod : 'proTargetPlanApproveApiImpl.updatePlanApprovalStatus',
- // pcHandle : '/bpm/handleTask/components/project-manage/plan-manage/submit.vue',
- // pcView : '/bpm/handleTask/components/project-manage/plan-manage/detailDialog.vue',
- // miniHandle : '',
- // miniView : '',
- };
- this.$refs.processSubmitDialogRef.init(params);
- });
- // submit({
- // businessId: res.id
- // }).then((res) => {
- // this.$message.success('提交成功!');
- // this.reload();
- // });
- }
- }
- };
- </script>
- <style lang="scss" scoped>
- :deep(.el-link--inner) {
- margin-left: 0px !important;
- }
- .sys-organization-list {
- height: calc(100vh - 264px);
- box-sizing: border-box;
- border-width: 1px;
- border-style: solid;
- overflow: auto;
- }
- .sys-organization-list :deep(.el-tree-node__content) {
- height: 40px;
- & > .el-tree-node__expand-icon {
- margin-left: 10px;
- }
- }
- </style>
|