| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531 |
- <template>
- <div class="ele-body">
- <el-card shadow="never" v-loading="loading">
- <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 - 405px)"
- 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="handleAddOrEditAccount('add', {})"
- >
- 新建
- </el-button>
- <el-button
- size="small"
- type="danger"
- el-icon-delete
- class="ele-btn-icon"
- @click="allDelBtn"
- :disabled="selection?.length === 0"
- >
- 批量删除
- </el-button>
- </template>
- <!-- 查看详情列 -->
- <template v-slot:statementNo="{ row }">
- <el-link
- type="primary"
- :underline="false"
- @click="openorderDetail(row, 'statementNo')"
- >
- {{ row.statementNo }}
- </el-link>
- </template>
- <template v-slot:orderNo="{ row }">
- <el-link
- type="primary"
- :underline="false"
- @click="openorderDetail(row, 'orderNo')"
- >
- {{ row.orderNo }}
- </el-link>
- </template>
- <!-- 操作列 -->
- <template v-slot:action="{ row }">
- <el-link
- type="primary"
- :underline="false"
- icon="el-icon-edit"
- @click="handleAddOrEditAccount('edit', row)"
- v-if="
- (isNeed_process_is_close &&
- [0, 3].includes(row.reviewStatus)) ||
- !isNeed_process_is_close
- "
- >
- 修改
- </el-link>
- <el-link
- type="primary"
- :underline="false"
- icon="el-icon-plus"
- @click="accountstatementSubmit(row)"
- v-if="
- isNeed_process_is_close && [0, 3].includes(row.reviewStatus)
- "
- >
- 提交
- </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.reviewStatus)) ||
- !isNeed_process_is_close
- "
- >
- 删除
- </el-link>
- </template>
- </el-popconfirm>
- <el-link
- size="small"
- type="primary"
- :underline="false"
- icon="el-icon-plus"
- class="ele-btn-icon"
- v-if="[2].includes(row.reviewStatus)"
- @click="handleAddInvoice(row)"
- >
- 新增发票
- </el-link>
- </template>
- </ele-pro-table>
- </div>
- </el-card>
- <order-detail-dialog ref="orderDetailDialogRef"></order-detail-dialog>
- <add-account-dialog
- v-if="addAccountDialogFlag"
- :addAccountDialogFlag.sync="addAccountDialogFlag"
- ref="accountDialogRef"
- @done="reload"
- ></add-account-dialog>
- <!--对账单详情 -->
- <detail-dialog
- :detailDialogFlag.sync="detailDialogFlag"
- ref="detailDialogRef"
- ></detail-dialog>
- <add-return-goods-dialog
- ref="addReturnGoodsRef"
- @done="reload"
- ></add-return-goods-dialog>
- <!-- 多选删除弹窗 -->
- <pop-modal
- :visible.sync="delVisible"
- content="是否确定删除?"
- @done="commitBtn"
- />
- <!-- 创建发票选择采购对账单信息 对账明细 -->
- <accountInfoDialog
- ref="accountInfoDialogRef"
- v-if="accountInfoDialogFlag"
- :account-info-dialog-flag.sync="accountInfoDialogFlag"
- @getAccountInfo="getAccountInfo"
- ></accountInfoDialog>
- <!-- 新增发票-->
- <add-invoice-dialog
- :add-or-edit-dialog-flag.sync="addInvoiceDialogFlag"
- ref="addInvoiceDialogRef"
- v-if="addInvoiceDialogFlag"
- @reload="reload"
- ></add-invoice-dialog>
- <process-submit-dialog
- :processSubmitDialogFlag.sync="processSubmitDialogFlag"
- v-if="processSubmitDialogFlag"
- ref="processSubmitDialogRef"
- @reload="reload"
- ></process-submit-dialog>
- </div>
- </template>
- <script>
- import searchTable from './components/searchTable.vue';
- import addAccountDialog from './components/addAccountDialog.vue';
- import detailDialog from './components/detailDialog.vue';
- import popModal from '@/components/pop-modal';
- import { reviewStatus } from '@/enum/dict';
- import orderDetailDialog from '@/views/purchasingManage/purchaseOrder/components/detailDialog.vue';
- import addReturnGoodsDialog from '@/views/saleManage/saleOrder/returnGoods/components/addReturnGoodsDialog';
- import {
- getAccountstatementList,
- deletetAccountstatement,
- submitAccountStatementApproveAPI,
- accountStatementExportAPI
- } from '@/api/saleManage/accountstatement';
- import dictMixins from '@/mixins/dictMixins';
- import 'file-saver';
- import AccountInfoDialog from '@/views/financialManage/invoiceManage/components/accountInfoDialog.vue';
- import addInvoiceDialog from '@/views/financialManage/invoiceManage/components/addOrEditDialog.vue';
- import processSubmitDialog from '@/BIZComponents/processSubmitDialog/processSubmitDialog.vue';
- import tabMixins from '@/mixins/tableColumnsMixin';
- export default {
- mixins: [dictMixins, tabMixins],
- components: {
- processSubmitDialog,
- addInvoiceDialog,
- AccountInfoDialog,
- searchTable,
- popModal,
- addReturnGoodsDialog,
- orderDetailDialog,
- addAccountDialog,
- detailDialog
- },
- provide() {
- return {
- invoiceType: () => '2'
- };
- },
- data() {
- return {
- activeComp: 'saleorder',
- addAccountDialogFlag: false,
- detailDialogFlag: false,
- processSubmitDialogFlag: false,
- addInvoiceDialogFlag: false,
- accountInfoDialogFlag: false,
- currentRow: {},
- selection: [], //单选中集合
- delVisible: false, //批量删除弹框状态
- loading: false, // 加载状态
- columns: [
- {
- width: 45,
- type: 'selection',
- columnKey: 'selection',
- align: 'center'
- },
- {
- columnKey: 'index',
- label: '序号',
- type: 'index',
- width: 55,
- align: 'center',
- showOverflowTooltip: true,
- fixed: 'left'
- },
- {
- prop: 'statementNo',
- label: '对账单编码',
- align: 'center',
- slot: 'statementNo',
- sortable: true,
- showOverflowTooltip: true,
- minWidth: 200
- },
- {
- prop: 'contactName',
- label: '供应商名称',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 180
- },
- {
- prop: 'dateType',
- label: '对账方式',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 150,
- formatter: (_row, _column, cellValue) => {
- return cellValue == 1
- ? '按年度'
- : cellValue == 2
- ? '按季度'
- : cellValue == 3
- ? '按月度'
- : '按时间段';
- }
- },
- {
- prop: 'startDate',
- label: '对账开始日期',
- align: 'center',
- slot: 'startDate',
- showOverflowTooltip: true,
- minWidth: 200
- },
- {
- prop: 'endDate',
- label: '对账结束日期',
- align: 'center',
- slot: 'endDate',
- showOverflowTooltip: true,
- minWidth: 200
- },
- {
- prop: 'amountTotalPrice',
- label: '总金额',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 130
- },
- {
- prop: 'amountReceivablePrice',
- label: '应收金额',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 130
- },
- {
- prop: 'amountPayablePrice',
- label: '应付金额',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 130
- },
- {
- prop: 'reviewStatus',
- label: '状态',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 200,
- formatter: (_row, _column, cellValue) => {
- return reviewStatus[_row.reviewStatus];
- }
- },
- {
- prop: 'replied',
- label: '是否回执',
- align: 'center',
- slot: 'replied',
- showOverflowTooltip: true,
- minWidth: 200,
- formatter: (_row, _column, cellValue) => {
- return _row.replied ? '是' : '否';
- }
- },
- {
- prop: 'createTime',
- label: '创建时间',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 170
- },
- {
- columnKey: 'action',
- label: '操作',
- width: 230,
- align: 'center',
- resizable: false,
- slot: 'action',
- showOverflowTooltip: true,
- fixed: 'right'
- }
- ],
- cacheKeyUrl: 'eos-5c3f156d-purchaseOrder-accountstatement'
- };
- },
- computed: {},
- methods: {
- /* 表格数据源 */
- datasource({ page, limit, where, order }) {
- return getAccountstatementList({
- pageNum: page,
- size: limit,
- type: 2,
- ...where
- });
- },
- /* 刷新表格 */
- reload(where) {
- this.$refs.table.reload({ page: 1, where });
- this.$emit('getToDoReminder')
- },
- /*新增发票*/
- handleAddInvoice(row) {
- this.currentRow = row;
- this.accountInfoDialogFlag = true;
- this.$nextTick(() => {
- this.$refs.accountInfoDialogRef.createInvoice(
- row,
- 'add',
- 'purchaseOrder'
- );
- });
- },
- /*新增发票选择对账单信息回调*/
- getAccountInfo(row) {
- this.currentRow.children = row;
- setTimeout(() => {
- this.addInvoiceDialogFlag = true;
- this.$nextTick(() => {
- this.$refs.addInvoiceDialogRef.createInvoice(
- {},
- 1,
- this.currentRow
- );
- });
- }, 400);
- },
- //新增编辑
- handleAddOrEditAccount(type, row) {
- this.addAccountDialogFlag = true;
- this.$nextTick(() => {
- this.$refs.accountDialogRef.open(type, row, '2');
- });
- },
- accountstatementSubmit(res) {
- this.processSubmitDialogFlag = true;
- this.$nextTick(() => {
- let params = {
- businessId: res.id,
- businessKey: 'purchase_account_statement_approve',
- formCreateUserId: res.createUserId,
- variables: {
- businessCode: res.statementNo,
- type: '2',
- 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);
- });
- // submitAccountStatementApproveAPI({
- // businessId: res.id,
- // type: '2'
- // }).then((res) => {
- // this.$message.success('提交成功!');
- // this.reload();
- // });
- },
- //导出
- async handleExport(row) {
- let data = await accountStatementExportAPI(row.id);
- saveAs(data.data, '应付对账单');
- },
- //批量删除
- allDelBtn() {
- if (this.selection.length === 0) return;
- let flag = this.selection.some((item) =>
- [1, 2].includes(item.reviewStatus)
- );
- if (flag)
- return this.$message.warning(
- '抱歉已审核、审核中的数据不能删除,请检查'
- );
- this.delVisible = true;
- },
- //删除接口
- remove(delData) {
- deletetAccountstatement(delData).then((res) => {
- this.$message.success('删除成功!');
- this.reload();
- });
- },
- //删除弹框确定
- commitBtn() {
- const dataId = this.selection.map((v) => v.id);
- this.remove(dataId);
- },
- //查看详情
- openorderDetail(row, type) {
- if (type === 'statementNo') {
- this.detailDialogFlag = true;
- this.$nextTick(() => {
- this.$refs.detailDialogRef.open('view', row, '2');
- });
- }
- if (type === 'orderNo') {
- this.$refs.orderDetailDialogRef.open({ id: row.orderId });
- }
- }
- }
- };
- </script>
- <style lang="scss" scoped>
- .ele-body {
- padding-top: 0;
- padding-bottom: 0;
- }
- :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;
- }
- </style>
|