| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836 |
- <template>
- <div class="ele-body">
- <el-card shadow="never" v-loading="loading">
- <div class="switch">
- <div class="switch_left">
- <ul>
- <li
- v-for="item in tabOptions"
- :key="item.key"
- :class="{ active: activeComp == item.key }"
- @click="activeComp = item.key"
- style="height: 42px; line-height: 38px"
- >
- <el-badge :value="toDoReminder[item.reminder] || 0" class="item">
- {{ item.name }}
- </el-badge>
- </li>
- </ul>
- </div>
- </div>
- <div class="main" style="padding: 0 10px">
- <div v-if="activeComp == 'saleorder'">
- <div class="ele-border-lighter form-content" v-loading="loading">
- <search-table @search="reload"></search-table>
- <!-- 数据表格 -->
- <ele-pro-table
- ref="table"
- :columns="columns"
- :datasource="datasource"
- height="calc(100vh - 365px)"
- style="margin-bottom: 10px"
- 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
- >
- <exportButton
- fileName="采购订单"
- apiUrl="/eom/purchaseorder/export"
- :params="params"
- ></exportButton>
- <el-dropdown
- trigger="click"
- :disabled="selection?.length === 0"
- >
- <el-button
- type="primary"
- class="el-icon-printer"
- size="small"
- >
- 打印<i class="el-icon-arrow-down el-icon--right"></i>
- </el-button>
- <el-dropdown-menu slot="dropdown">
- <el-dropdown-item
- @click.native="handlePrint('printPurchaseOrderRef')"
- >采购订单</el-dropdown-item
- >
- </el-dropdown-menu>
- </el-dropdown>
- </template>
- <!-- 查看详情列 -->
- <template v-slot:relationName="{ row }">
- <el-link
- type="primary"
- :underline="false"
- @click="opencontractDetail(row)"
- >
- {{ row.relationName }}
- </el-link>
- </template>
- <template v-slot:orderNo="{ row }">
- <el-link
- type="primary"
- :underline="false"
- @click="openorderDetail(row)"
- >
- {{ row.orderNo }}
- </el-link>
- </template>
- <!-- 操作列 -->
- <template v-slot:action="{ row }">
- <el-link
- type="primary"
- :underline="false"
- icon="el-icon-edit"
- v-if="
- (isNeed_process_is_close &&
- [0, 3].includes(row.orderStatus)) ||
- !isNeed_process_is_close
- "
- @click="openEdit('edit', row)"
- >
- 修改
- </el-link>
- <el-link
- type="primary"
- :underline="false"
- icon="el-icon-plus"
- @click="saleOrderSubmit(row)"
- v-if="
- isNeed_process_is_close && [0, 3].includes(row.orderStatus)
- "
- >
- 提交
- </el-link>
- <el-popconfirm
- class="ele-action"
- title="确定要删除此信息吗?"
- v-if="
- (isNeed_process_is_close &&
- [0, 3].includes(row.orderStatus)) ||
- !isNeed_process_is_close
- "
- @confirm="remove([row.id])"
- >
- <template v-slot:reference>
- <el-link
- type="danger"
- :underline="false"
- icon="el-icon-delete"
- >
- 删除
- </el-link>
- </template>
- </el-popconfirm>
- <el-link
- type="primary"
- :underline="false"
- icon="el-icon-plus"
- @click="handleCommand('outsourceSend', row)"
- v-if="
- ['3', '4', '5', '6'].includes(row.sourceType) &&
- [2].includes(row.orderStatus) &&
- row.progress < 200
- "
- >
- 创建委外发货单
- </el-link>
- <el-link
- type="primary"
- :underline="false"
- icon="el-icon-plus"
- @click="handleCommand('invoice', row)"
- v-if="
- !['3', '4', '5', '6'].includes(row.sourceType) &&
- [2].includes(row.orderStatus) &&
- row.progress < 200
- "
- >
- 创建收货单
- </el-link>
- <el-link
- type="primary"
- :underline="false"
- icon="el-icon-plus"
- @click="handleCommand('invoiceManage', row)"
- v-if="!row.hasInvoiceApply && [2].includes(row.orderStatus)"
- >
- 新增发票
- </el-link>
- <el-link
- v-if="$hasPermission('eom:purchaseorder:rowExport')"
- type="primary"
- :underline="false"
- icon="el-icon-download"
- @click="exportRowInfo(row)"
- >
- 导出
- </el-link>
- </template>
- </ele-pro-table>
- </div>
- </div>
- <div v-if="activeComp == 'outsourceSend'">
- <outSourceSend @getToDoReminder="getToDoReminder"></outSourceSend>
- </div>
- <div v-if="activeComp == 'invoice'">
- <invoice @getToDoReminder="getToDoReminder"></invoice>
- </div>
- <div v-if="activeComp == 'invoiceConfirm'">
- <invoiceConfirm @getToDoReminder="getToDoReminder"></invoiceConfirm>
- </div>
- <div v-if="activeComp == 'returnorder'" class="returnorder">
- <return-goods @getToDoReminder="getToDoReminder"></return-goods>
- </div>
- <div v-if="activeComp == 'exceptionList'">
- <exceptionList :relationType="'2'" @getToDoReminder="getToDoReminder">
- </exceptionList>
- </div>
- <div v-if="activeComp == 'accountstatement'">
- <accountstatement
- @getToDoReminder="getToDoReminder"
- ></accountstatement>
- </div>
- </div>
- </el-card>
- <add-dialog
- ref="addDialogRef"
- @done="reload"
- :isRequired="isRequired"
- ></add-dialog>
- <add-invoice-dialog
- ref="invoiceDialogRef"
- @done="reload"
- ></add-invoice-dialog>
- <add-return-goods-dialog
- ref="addReturnGoodsRef"
- @done="reload"
- ></add-return-goods-dialog>
- <contractr-detail ref="contractDetailRef"></contractr-detail>
- <detail-dialog ref="contactDetailDialogRef"></detail-dialog>
- <purchasingDetail ref="purchasingDetailRef"></purchasingDetail>
- <purchasePlanDetail ref="purchasePlanDetailRef"></purchasePlanDetail>
- <inquiryDetail ref="inquiryDetailRef"></inquiryDetail>
- <addOutSourceSend
- ref="addOrEditDialogRef"
- :add-or-edit-dialog-flag.sync="addOrEditDialogFlag"
- v-if="addOrEditDialogFlag"
- @done="reload"
- ></addOutSourceSend>
- <!-- 多选删除弹窗 -->
- <pop-modal
- :visible.sync="delVisible"
- content="是否确定删除?"
- @done="commitBtn"
- />
- <process-submit-dialog
- :isNotNeedProcess="false"
- :isCloseRefresh="false"
- :processSubmitDialogFlag.sync="processSubmitDialogFlag"
- v-if="processSubmitDialogFlag"
- ref="processSubmitDialogRef"
- @reload="reload"
- ></process-submit-dialog>
- <addInvoiceManage
- :add-or-edit-dialog-flag.sync="addOrEditDialogFlag1"
- ref="addOrEditDialogRef"
- v-if="addOrEditDialogFlag1"
- @reload="reload"
- ></addInvoiceManage>
- <importDialog
- ref="importDialogRef"
- @success="reload"
- :fileUrl="'/eom/purchaseorder/importTemplate'"
- :isWeb="false"
- fileName="采购订单导入模板"
- apiUrl="/eom/purchaseorder/importFile"
- />
- <printPurchaseOrder
- ref="printPurchaseOrderRef"
- :groupName="groupName"
- ></printPurchaseOrder>
- </div>
- </template>
- <script>
- import searchTable from './components/searchTable.vue';
- import addDialog from './components/addDialog.vue';
- import invoice from './invoice/index.vue';
- import invoiceConfirm from './invoiceConfirm/index.vue';
- import detailDialog from './components/detailDialog.vue';
- import contractrDetail from '@/views/contractManage/contractBook/components/detailDialog.vue';
- import purchasingDetail from '@/views/purchasingManage/purchaseNeedManage/components/detailDialog.vue';
- import purchasePlanDetail from '@/views/purchasingManage/purchasePlanManage/components/detailDialog.vue';
- import inquiryDetail from '@/views/purchasingManage/inquiryManage/components/detailDialog.vue';
- import addInvoiceDialog from '@/views/purchasingManage/purchaseOrder/invoice/components/addInvoiceDialog';
- import addReturnGoodsDialog from '@/views/purchasingManage/purchaseOrder/returnGoods/components/addReturnGoodsDialog';
- import addOutSourceSend from '@/views/purchasingManage/purchaseOrder/outSourceSend/components/addOrEditDialog';
- import popModal from '@/components/pop-modal';
- import accountstatement from './accountstatement/index.vue';
- import returnGoods from './returnGoods/index.vue';
- import addInvoiceManage from '@/views/financialManage/invoiceManage/components/addOrEditDialog.vue';
- import outSourceSend from './outSourceSend/index';
- import {
- getTableList,
- deleteInformation,
- getExport
- } from '@/api/purchasingManage/purchaseOrder';
- import dictMixins from '@/mixins/dictMixins';
- import { purchaseOrderProgressStatusEnum, reviewStatus } from '@/enum/dict';
- import processSubmitDialog from '@/BIZComponents/processSubmitDialog/processSubmitDialog.vue';
- import tabMixins from '@/mixins/tableColumnsMixin';
- import importDialog from '@/components/upload/import-dialog.vue';
- import exportButton from '@/components/upload/exportButton.vue';
- import { parameterGetByCode } from '@/api/main/index.js';
- import exceptionList from '@/views/saleManage/saleOrder/exceptionManagement/exceptionList/index.vue';
- import { getToDoReminder } from '@/api/common/index';
- import { exportTable } from '@/api/system/file/index.js';
- import printPurchaseOrder from '@/views/purchasingManage/purchaseOrder/invoice/components/print-PurchaseOrder.vue';
- import { enterprisePage } from '@/api/contractManage/contractBook';
- export default {
- mixins: [dictMixins, tabMixins],
- components: {
- processSubmitDialog,
- exportButton,
- searchTable,
- returnGoods,
- accountstatement,
- popModal,
- contractrDetail,
- addReturnGoodsDialog,
- addInvoiceDialog,
- invoice,
- addDialog,
- detailDialog,
- outSourceSend,
- addOutSourceSend,
- addInvoiceManage,
- importDialog,
- invoiceConfirm,
- exceptionList,
- purchasingDetail,
- purchasePlanDetail,
- inquiryDetail,
- printPurchaseOrder
- },
- data() {
- return {
- activeComp: 'saleorder',
- tabOptions: [
- { key: 'saleorder', name: '采购订单', reminder: 'purchaseOrderNum' },
- {
- key: 'outsourceSend',
- name: '委外发货单',
- reminder: 'outsourcingDeliveryNoteNum'
- },
- { key: 'invoice', name: '收货单', reminder: 'receiptNum' },
- {
- key: 'invoiceConfirm',
- name: '收货确认单',
- reminder: 'receiptConfirmationFormNum'
- },
- {
- key: 'exceptionList',
- name: '异常列表',
- reminder: 'purchaseExceptionListNum'
- },
- {
- key: 'returnorder',
- name: '退货单',
- reminder: 'purchaseReturnOrderNum'
- },
- {
- key: 'accountstatement',
- name: '对账单',
- reminder: 'purchaseStatementAccountNum'
- }
- ],
- selection: [], //单选中集合
- delVisible: false, //批量删除弹框状态
- loading: false, // 加载状态
- processSubmitDialogFlag: false,
- addOrEditDialogFlag: false,
- addOrEditDialogFlag1: false,
- params: {},
- groupName: '',
- columns: [
- {
- width: 45,
- type: 'selection',
- columnKey: 'selection',
- align: 'center'
- },
- {
- columnKey: 'index',
- label: '序号',
- type: 'index',
- width: 55,
- align: 'center',
- showOverflowTooltip: true,
- fixed: 'left'
- },
- {
- prop: 'orderNo',
- label: '订单编码',
- align: 'center',
- sortable: true,
- slot: 'orderNo',
- showOverflowTooltip: true,
- minWidth: 200,
- fixed: 'left'
- },
- {
- prop: 'sourceTypeName',
- label: '订单类型',
- align: 'center',
- sortable: true,
- showOverflowTooltip: true,
- minWidth: 200,
- fixed: 'left'
- },
- {
- prop: 'progress',
- label: '订单进度',
- align: 'center',
- showOverflowTooltip: true,
- formatter: (_row, _column, cellValue) => {
- return purchaseOrderProgressStatusEnum.find(
- (val) => val.value == _row.progress
- )?.label;
- },
- minWidth: 120
- },
- {
- prop: 'relationType',
- label: '来源单据类型',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 150,
- formatter: (_row, _column, cellValue) => {
- return _row.relationType == 1
- ? '采购需求单'
- : _row.relationType == 2
- ? '采购计划单'
- : _row.relationType == 3
- ? '采购核价单'
- : _row.relationType == 4
- ? '采购合同'
- : '';
- }
- },
- {
- prop: 'relationName',
- label: '来源单据',
- align: 'center',
- slot: 'relationName',
- showOverflowTooltip: true,
- minWidth: 250
- },
- // {
- // prop: 'deliveryDate',
- // label: '交货日期',
- // align: 'center',
- // showOverflowTooltip: true,
- // minWidth: 200
- // },
- // {
- // prop: 'purchaseTypeName',
- // label: '采购订单类型',
- // align: 'center',
- // showOverflowTooltip: true,
- // minWidth: 140
- // },
- {
- prop: 'partaName',
- label: '采购方名称',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 200
- },
- {
- prop: 'partaLinkName',
- label: '采购方联系人',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 130
- },
- {
- prop: 'partaTel',
- label: '采购方联系电话',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 130
- },
- {
- prop: 'productNames',
- label: '名称',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 200
- },
- {
- prop: 'productCodes',
- label: '编码',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 140
- },
- {
- prop: 'batchNos',
- label: '批次号',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 140
- },
- {
- prop: 'productCount',
- label: '数量',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 140
- },
- {
- prop: 'inboundCount',
- label: '收货数量',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 140
- },
- {
- prop: 'partbName',
- label: '供应商名称',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 250
- },
- {
- prop: 'partbLinkName',
- label: '供应商联系人',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 120
- },
- {
- prop: 'partbTel',
- label: '供应商联系电话',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 130
- },
- {
- prop: 'isInspection',
- label: '是否来料检',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 130,
- formatter: (_row, _column, cellValue) => {
- return cellValue == 1 ? '是' : '否';
- }
- },
- {
- prop: 'payAmount',
- label: '金额(元)',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 140
- },
- {
- prop: 'createUserName',
- label: '创建人',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 170
- },
- {
- prop: 'createTime',
- label: '创建时间',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 170
- },
- {
- prop: 'orderStatus',
- label: '审核状态',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 100,
- formatter: (_row, _column, cellValue) => {
- return reviewStatus[_row.orderStatus];
- }
- },
- {
- columnKey: 'action',
- label: '操作',
- width: 260,
- align: 'center',
- resizable: false,
- slot: 'action',
- showOverflowTooltip: true,
- fixed: 'right'
- }
- ],
- cacheKeyUrl: 'eos-5f2ac512-purchaseOrder-saleorder',
- isRequired: true,
- timeR: null,
- toDoReminder: {}
- };
- },
- computed: {},
- created() {
- this.requestDict('客户状态');
- parameterGetByCode({
- code: 'order_person_info'
- }).then((res) => {
- if (res.value) {
- this.isRequired = res.value === '1';
- }
- });
- this.getToDoReminder();
- this.timeR = setInterval(() => {
- this.getToDoReminder();
- }, 60000);
- },
- beforeDestroy() {
- clearInterval(this.timeR);
- },
- methods: {
- getToDoReminder() {
- getToDoReminder().then((res) => {
- this.toDoReminder = res;
- });
- },
- //更多菜单
- handleCommand(command, row) {
- console.log(command, row);
- if (command === 'invoice') {
- this.$refs.invoiceDialogRef.open('add', {}, row.id);
- }
- if (command === 'returnOrder') {
- this.$refs.addReturnGoodsRef.open('add', {});
- }
- if (command === 'outsourceSend') {
- this.addOrEditDialogFlag = true;
- this.$nextTick(() => {
- this.$refs.addOrEditDialogRef.open('add', {}, row.id);
- });
- }
- if (command === 'invoiceManage') {
- this.addOrEditDialogFlag1 = true;
- this.$nextTick(() => {
- this.$refs.addOrEditDialogRef.createInvoice1(row, 2, 3);
- });
- }
- },
- //点击左边分类
- handleNodeClick(data, node) {
- // this.curNodeData = data;
- this.reload({ categoryId: data.id });
- },
- /* 表格数据源 */
- datasource({ page, limit, where, order }) {
- this.params = {
- pageNum: page,
- size: limit,
- ...where
- };
- return getTableList(this.params);
- },
- /* 刷新表格 */
- reload(where) {
- this.$refs.table.reload({ page: 1, where });
- },
- //新增编辑
- openEdit(type, row) {
- this.$refs.addDialogRef.open(type, row, row.id);
- this.$refs.addDialogRef.$refs.form &&
- this.$refs.addDialogRef.$refs.form.clearValidate();
- },
- uploadFile() {
- this.$refs.importDialogRef.open();
- },
- //打印采购订单
- handlePrint(ref) {
- if (this.selection.length > 1)
- return this.$message.warning('暂不支持批量打印,请选择一条');
- // let flag = this.selection.some((item) => [2].includes(item.reviewStatus));
- // if (!flag)
- // return this.$message.warning('抱歉需要已审核的发货单才能打印,请检查');
- enterprisePage({
- pageNum: 1,
- size: 200
- }).then((res) => {
- console.log(res.list);
- if (res.list?.length > 0) {
- this.groupName = res.list[0].name;
- }
- });
- this.$refs[ref].open(this.selection[0].id);
- },
- //批量删除
- allDelBtn() {
- if (this.selection.length === 0) return;
- let flag = this.selection.some((item) =>
- [1, 2].includes(item.orderStatus)
- );
- 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);
- },
- //查看详情
- openorderDetail(row) {
- this.$refs.contactDetailDialogRef.open(row);
- },
- saleOrderSubmit(res) {
- this.processSubmitDialogFlag = true;
- this.$nextTick(() => {
- let params = {
- businessId: res.id,
- businessKey: 'purchase_order_approve',
- formCreateUserId: res.createUserId,
- variables: {
- businessCode: res.orderNo,
- businessName: res.partaName,
- businessType: res.sourceTypeName
- }
- };
- this.$refs.processSubmitDialogRef.init(params);
- });
- },
- //查看合同详情
- opencontractDetail(row) {
- let data = {
- id: row.relationId
- };
- if (row.relationType == 1) {
- this.$refs.purchasingDetailRef.open(data);
- }
- if (row.relationType == 2) {
- this.$refs.purchasePlanDetailRef.open(data);
- }
- if (row.relationType == 3) {
- this.$refs.inquiryDetailRef.open(data);
- }
- if (row.relationType == 4) {
- this.$refs.contractDetailRef.open(data);
- }
- },
- // 导出
- exportRowInfo(row) {
- console.log(row);
- getExport(row.id);
- }
- }
- };
- </script>
- <style lang="scss" scoped>
- :deep .el-card__body {
- padding: 0;
- }
- :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;
- }
- }
- .switch_left ul .active {
- border-top: 4px solid var(--color-primary);
- color: var(--color-primary-5);
- }
- .switch {
- padding-bottom: 20px;
- }
- .el-dropdown-link {
- cursor: pointer;
- color: var(--color-primary-5);
- }
- .el-icon-arrow-down {
- font-size: 12px;
- }
- :deep(.el-badge__content.is-fixed) {
- top: 4px;
- }
- </style>
|