| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762 |
- <template>
- <div class="ele-body" style="width: 100%">
- <el-card shadow="never" v-loading="loading" style="width: 100%">
- <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 - 410px)"
- 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', {})"
- v-if="
- !saleOrderData.id ||
- (saleOrderData.id && saleOrderData.orderStatus == 2)
- "
- >
- 新建
- </el-button>
- <el-button
- size="small"
- type="danger"
- class="el-icon-delete"
- @click="allDelBtn"
- :disabled="selection?.length === 0"
- >
- 批量删除
- </el-button>
- <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('printTemplateByRef')"
- v-if="$hasPermission('eom:print-invoice1')"
- >发货单</el-dropdown-item
- >
- <el-dropdown-item
- v-if="$hasPermission('eom:print-invoice2')"
- @click.native="handlePrint('printTemplateJsRef')"
- >器械出库单</el-dropdown-item
- >
- <el-dropdown-item
- v-if="$hasPermission('eom:print-invoice3')"
- @click.native="handlePrint('printTemplateJsYpRef')"
- >药品出库单</el-dropdown-item
- >
- <el-dropdown-item
- v-if="$hasPermission('eom:print-invoice4')"
- @click.native="handlePrint('printTemplateWlRef')"
- >送货单模板</el-dropdown-item
- >
- <el-dropdown-item
- v-if="$hasPermission('eom:print-invoice5')"
- @click.native="handlePrint('printTemplateBSRef')"
- >送货单模板</el-dropdown-item
- >
- <el-dropdown-item
- v-if="$hasPermission('eom:print-invoice6')"
- @click.native="handlePrint('printTemplateHtRef')"
- >货物签收单</el-dropdown-item
- >
- <el-dropdown-item
- v-if="$hasPermission('eom:print-invoice7')"
- @click.native="handlePrint('printTemplateJrRef')"
- >发货单</el-dropdown-item
- >
- <el-dropdown-item
- v-if="$hasPermission('eom:print-invoice8')"
- @click.native="handlePrint('printTemplateTrRef')"
- >送货单打印</el-dropdown-item
- >
- <el-dropdown-item
- v-if="$hasPermission('eom:print-invoice9')"
- @click.native="handlePrint('printTemplateHt1Ref')"
- >出库单</el-dropdown-item
- >
- </el-dropdown-menu>
- </el-dropdown>
- <exportButton
- btnName="列表导出"
- fileName="销售发货单"
- apiUrl="/eom/saleordersendrecord/export"
- :params="params"
- ></exportButton>
- </template>
- <!-- 查看详情列 -->
- <template v-slot:docNo="{ row }">
- <el-link
- type="primary"
- :underline="false"
- @click="openorderDetail(row, 'docNo')"
- >
- {{ row.docNo }}
- </el-link>
- </template>
- <template v-slot:orderNo="{ row }">
- <el-link
- type="primary"
- :underline="false"
- v-for="(v, j) in row.orderNo.split(',')"
- :key="v"
- @click="openorderDetail(row, 'orderNo', j)"
- >
- {{ v }}
- <span v-if="j != row.orderNo.split(',').length - 1">,</span>
- </el-link>
- </template>
- <!-- 操作列 -->
- <template v-slot:action="{ row }">
- <template v-if="row.suspendReviewStatus == 0 || row.suspendReviewStatus == 3 || row.isSuspend != 1">
- <el-link
- type="primary"
- :underline="false"
- icon="el-icon-edit"
- @click="openEdit('edit', row)"
- v-if="
- ([0, 3].includes(row.reviewStatus) &&
- isNeed_process_is_close) ||
- !isNeed_process_is_close
- "
- >
- 修改
- </el-link>
- <el-link
- type="primary"
- :underline="false"
- icon="el-icon-plus"
- @click="sendSubmit(row)"
- v-if="
- isNeed_process_is_close && [0, 3].includes(row.reviewStatus)
- "
- >
- 提交
- </el-link>
- <el-popconfirm
- class="ele-action"
- title="确定要删除此信息吗?"
- @confirm="remove([row.id])"
- v-if="
- (isNeed_process_is_close &&
- [0, 3].includes(row.reviewStatus)) ||
- !isNeed_process_is_close
- "
- >
- <template v-slot:reference>
- <el-link type="danger" :underline="false" icon="el-icon-delete">
- 删除
- </el-link>
- </template>
- </el-popconfirm>
- </template>
- <el-link
- type="primary"
- :underline="false"
- icon="el-icon-plus"
- @click="exportFile(row)"
- v-if="[2].includes(row.reviewStatus)"
- >
- 导出
- </el-link>
- <el-link
- type="primary"
- :underline="false"
- icon="el-icon-edit"
- @click="creatInvoiceConfirm(row)"
- v-if="[2].includes(row.reviewStatus) && row.isSuspend != 1"
- >
- 创建发货确认单
- </el-link>
- <el-link
- type="primary"
- :underline="false"
- icon="el-icon-edit"
- @click="creatReturnGoods('add', row)"
- v-if="[2].includes(row.reviewStatus) && row.isSuspend != 1"
- >
- 创建退货单
- </el-link>
- </template>
- </ele-pro-table>
- </div>
- </el-card>
- <order-detail-dialog ref="orderDetailDialogRef"></order-detail-dialog>
- <add-invoice-dialog
- ref="invoiceDialogRef"
- @done="reload"
- :contactData="contactData"
- :saleOrderData="saleOrderData"
- ></add-invoice-dialog>
- <detail-dialog ref="DetailDialogRef"></detail-dialog>
- <add-return-goods-dialog
- ref="addReturnGoodsRef"
- @done="reload"
- :contactData="contactData"
- ></add-return-goods-dialog>
- <!-- 多选删除弹窗 -->
- <pop-modal
- :visible.sync="delVisible"
- content="是否确定删除?"
- @done="commitBtn"
- />
- <printTemplateBy
- ref="printTemplateByRef"
- :groupName="groupName"
- ></printTemplateBy>
- <printTemplateJs
- ref="printTemplateJsRef"
- :groupName="groupName"
- ></printTemplateJs>
- <printTemplateJsYp
- ref="printTemplateJsYpRef"
- :groupName="groupName"
- ></printTemplateJsYp>
- <printTemplateWl
- ref="printTemplateWlRef"
- :groupName="groupName"
- ></printTemplateWl>
- <printTemplateJr
- ref="printTemplateJrRef"
- :groupName="groupName"
- ></printTemplateJr>
- <printTemplateBs
- ref="printTemplateBSRef"
- :groupName="groupName"
- ></printTemplateBs>
- <printTemplateHt
- ref="printTemplateHtRef"
- :groupName="groupName"
- ></printTemplateHt>
- <printTemplateHt1
- ref="printTemplateHt1Ref"
- :groupName="groupName"
- ></printTemplateHt1>
- <printTemplateTr
- ref="printTemplateTrRef"
- :groupName="groupName"
- :companyInfo="companyInfo"
- ></printTemplateTr>
- <process-submit-dialog
- :isNotNeedProcess="false"
- :isCloseRefresh="false"
- :processSubmitDialogFlag.sync="processSubmitDialogFlag"
- v-if="processSubmitDialogFlag"
- ref="processSubmitDialogRef"
- @reload="reload"
- ></process-submit-dialog>
- <addInvoiceConfirm
- ref="addInvoiceConfirmRef"
- @done="reload"
- :contactData="contactData"
- :saleOrderData="saleOrderData"
- ></addInvoiceConfirm>
- </div>
- </template>
- <script>
- import searchTable from './components/searchTable.vue';
- import addInvoiceDialog from './components/addInvoiceDialog.vue';
- import addInvoiceConfirm from '@/views/saleManage/saleOrder/invoiceConfirm/components/addInvoiceDialog.vue';
- import detailDialog from './components/detailDialog.vue';
- import popModal from '@/components/pop-modal';
- import { reviewStatus } from '@/enum/dict';
- import orderDetailDialog from '@/views/saleManage/saleOrder/components/detailDialog.vue';
- import addReturnGoodsDialog from '@/views/saleManage/saleOrder/returnGoods/components/addReturnGoodsDialog';
- import printTemplateBy from '@/views/saleManage/saleOrder/invoice/components/print-template-by.vue';
- import printTemplateJs from '@/views/saleManage/saleOrder/invoice/components/print-template-js.vue';
- import printTemplateJsYp from '@/views/saleManage/saleOrder/invoice/components/print-template-jsyp.vue';
- import printTemplateWl from '@/views/saleManage/saleOrder/invoice/components/print-template-wl.vue';
- import printTemplateBs from '@/views/saleManage/saleOrder/invoice/components/print-template-bs.vue';
- import printTemplateJr from '@/views/saleManage/saleOrder/invoice/components/print-template-jr.vue';
- import printTemplateHt from '@/views/saleManage/saleOrder/invoice/components/print-template-ht.vue';
- import printTemplateHt1 from '@/views/saleManage/saleOrder/invoice/components/print-template-ht-1.vue';
- import printTemplateTr from '@/views/saleManage/saleOrder/invoice/components/print-template-tr.vue';
- import {
- deleteSendInformation,
- getSendTableList,
- submit
- } from '@/api/saleManage/saleordersendrecord';
- import dictMixins from '@/mixins/dictMixins';
- import processSubmitDialog from '@/BIZComponents/processSubmitDialog/processSubmitDialog.vue';
- import tabMixins from '@/mixins/tableColumnsMixin';
- import { enterprisePage } from '@/api/contractManage/contractBook';
- import { getSendSaleOrderrecordDetailSplit } from '@/api/saleManage/saleordersendrecord';
- import { getWarehouseListByIds } from '@/api/purchasingManage/returnGoods';
- import exportButton from '@/components/upload/exportButton.vue';
- import { downLoadTemplate } from '@/api/system/file/index.js';
- import { parameterGetByCode } from '@/api/main/index.js';
- export default {
- mixins: [dictMixins, tabMixins],
- components: {
- processSubmitDialog,
- printTemplateBy,
- searchTable,
- popModal,
- addReturnGoodsDialog,
- orderDetailDialog,
- addInvoiceDialog,
- detailDialog,
- addInvoiceConfirm,
- printTemplateJs,
- printTemplateJsYp,
- printTemplateWl,
- printTemplateBs,
- printTemplateJr,
- exportButton,
- printTemplateHt,
- printTemplateTr,
- printTemplateHt1
- },
- //客户管理数据
- props: {
- contactData: {
- type: Object,
- default: () => {
- return {};
- }
- },
- saleOrderData: {
- type: Object,
- default: () => {
- return {};
- }
- }
- },
- data() {
- return {
- params: {},
- activeComp: 'saleorder',
- companyInfo: {},
- tabOptions: [
- { key: 'saleorder', name: '销售订单' },
- { key: 'invoice', name: '发货单' },
- { key: 'returnorder', name: '退货单' }
- ],
- groupName: '',
- selection: [], //单选中集合
- delVisible: false, //批量删除弹框状态
- loading: false, // 加载状态
- processSubmitDialogFlag: false,
- columns: [
- {
- width: 45,
- type: 'selection',
- columnKey: 'selection',
- align: 'center'
- },
- {
- columnKey: 'index',
- label: '序号',
- type: 'index',
- width: 55,
- align: 'center',
- showOverflowTooltip: true,
- fixed: 'left'
- },
- {
- prop: 'docNo',
- label: '发货单编码',
- align: 'center',
- sortable: true,
- slot: 'docNo',
- showOverflowTooltip: true,
- minWidth: 200
- },
- {
- prop: 'orderNo',
- label: '销售订单编码',
- align: 'center',
- sortable: true,
- slot: 'orderNo',
- showOverflowTooltip: true,
- minWidth: 200
- },
- {
- prop: 'productNames',
- label: '产品名称',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 140
- },
- {
- prop: 'productCodes',
- label: '产品编码',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 160
- },
- {
- minWidth: 160,
- prop: 'productionCodes',
- label: '生产编号',
- align: 'center'
- },
- {
- prop: 'batchNos',
- label: '批次号',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 140
- },
- {
- prop: 'orderTotalCount',
- label: '订单数量',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 140
- },
- {
- prop: 'sendTotalCount',
- label: '发货数量',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 140
- },
- {
- prop: 'sendTotalAmount',
- label: '发货金额',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 140
- },
- {
- prop: 'projectName',
- label: '项目名称',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 180
- },
- {
- prop: 'contactName',
- label: '客户名称',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 180
- },
- {
- prop: 'replied',
- label: '是否回执',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 120,
- formatter: (_row, _column, cellValue) => {
- return _row.replied == 1 ? '是' : '否';
- }
- },
- {
- prop: 'reviewStatus',
- label: '状态',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 100,
- formatter: (_row, _column, cellValue) => {
- return reviewStatus[_row.reviewStatus];
- }
- },
- {
- prop: 'reconciliationStatus',
- label: '对账状态',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 120,
- formatter: (_row, _column, cellValue) => {
- let options = [
- { value: 0, label: '未对账' },
- { value: 1, label: '部分对账' },
- { value: 2, label: '全部对账' }
- ];
- return options.find(item => item.value == cellValue)?.label || '';
- }
- },
- {
- prop: 'createUserName',
- label: '创建人',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 80
- },
- {
- prop: 'createTime',
- label: '创建时间',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 170
- },
- {
- columnKey: 'action',
- label: '操作',
- width: 280,
- align: 'center',
- resizable: false,
- slot: 'action',
- showOverflowTooltip: true,
- fixed: 'right'
- }
- ],
- cacheKeyUrl: 'eos-bfe3d5ea-saleManage-invoice',
- isReview: false
- };
- },
- computed: {},
- created() {
- //打印是否需要审核//0否 1是
- parameterGetByCode({
- code: 'eom_invoice_print_need_review'
- }).then((res) => {
- this.isReview = res.value;
- });
- enterprisePage({
- pageNum: 1,
- size: 200
- }).then((res) => {
- if (res.list?.length > 0) {
- this.groupName = res.list[0].name;
- this.companyInfo = res.list[0];
- }
- });
- console.log('this.saleOrderData',this.saleOrderData.id)
- },
- watch: {
- saleOrderData: {
- handler(newVal, oldVal) {
- if (newVal.id) {
- this.reload();
- }
- },
- deep: true
- }
- },
- methods: {
- /* 表格数据源 */
- datasource({ page, limit, where, order }) {
- if (this.saleOrderData.id) {
- //订单详情进入
- where['orderId'] = this.saleOrderData.id;
- }
- if (this.contactData.id) {
- where['contactId'] = this.contactData.id;
- }
- this.params = {
- pageNum: page,
- size: limit,
- ...where
- };
- return getSendTableList({
- pageNum: page,
- size: limit,
- ...where
- });
- },
- exportFile(row) {
- downLoadTemplate(
- `/eom/saleordersendrecord/export/${row.id}`,
- '货物签收单'
- );
- },
- //创建退货单
- creatReturnGoods(type, row) {
- this.$refs.addReturnGoodsRef.open(type, {}, row.id);
- },
- /* 刷新表格 */
- reload(where) {
- this.$refs.table.reload({ page: 1, where });
- this.$emit('getToDoReminder');
- },
- //新增编辑
- openEdit(type, row) {
- this.$refs.invoiceDialogRef.open(type, row);
- this.$refs.invoiceDialogRef.$refs.form &&
- this.$refs.invoiceDialogRef.$refs.form.clearValidate();
- },
- creatInvoiceConfirm(row) {
- this.$refs.addInvoiceConfirmRef.open('add', {}, row);
- },
- //批量删除
- 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;
- },
- handlePrint(ref) {
- if (this.selection.length > 1)
- return this.$message.warning('请选择一条');
- const approveList = ['printTemplateJsRef', 'printTemplateJsYpRef', 'printTemplateWlRef']
- let flag = this.selection.some((item) =>
- [2].includes(item.reviewStatus)
- );
- console.log('flag', flag, approveList.includes(ref))
- if (!flag && (approveList.includes(ref) || this.isReview == 1))
- return this.$message.warning('抱歉需要已审核的发货单才能打印,请检查');
- if (ref != 'printTemplateByRef' && ref != 'printTemplateHtRef') {
- this.$refs[ref].open(this.selection[0].id);
- return;
- }
- this.$confirm('是否需要打印价格', '提示', {
- type: 'warning',
- cancelButtonText: '否',
- confirmButtonText: '是'
- })
- .then((res) => {
- this.$refs[ref].open(this.selection[0].id, true);
- })
- .catch((err) => {
- this.$refs[ref].open(this.selection[0].id, false);
- });
- },
- //删除接口
- remove(delData) {
- deleteSendInformation(delData).then((res) => {
- this.$message.success('删除成功!');
- this.reload();
- });
- },
- //删除弹框确定
- commitBtn() {
- const dataId = this.selection.map((v) => v.id);
- this.remove(dataId);
- },
- async sendSubmit(res) {
- const data = await getSendSaleOrderrecordDetailSplit(res.id);
- let storemanIds = '';
- let ids = data.productList.map((item) => item.warehouseId);
- if (ids?.length) {
- let warehouseList = await getWarehouseListByIds(ids || []);
- storemanIds = warehouseList.map((item) => item.ownerId);
- }
- this.processSubmitDialogFlag = true;
- this.$nextTick(() => {
- let params = {
- businessId: res.id,
- businessKey:
- res.isSuspend == 1 ? 'sales_suspend_send_approve' :
- res.saleTypeName.indexOf('技改') != '-1'
- ? 'sele_order_send_correction'
- : res.saleTypeName.indexOf('三包') != '-1'
- ? 'eom_sh'
- : res.saleTypeName.indexOf('补发') != '-1'
- ? 'eom_sh'
- : res.saleTypeName.indexOf('赠品') != '-1'
- ? 'sale_order_send_giftAndOther'
- : 'sales_send_approve',
- // businessKey:'eom_sh',
- formCreateUserId: res.createUserId,
- variables: {
- businessCode: res.docNo,
- businessName: res.contactName,
- storemanIds: storemanIds.toString(),
- businessType: data.sourceType == 3 ? '退货发货单' : '销售发货单'
- }
- };
- this.$refs.processSubmitDialogRef.init(params);
- });
- },
- //查看详情
- openorderDetail(row, type, index) {
- if (type === 'docNo') {
- this.$refs.DetailDialogRef.open(row);
- }
- if (type === 'orderNo') {
- let orderId = '';
- if (row.orderIds) {
- orderId = row.orderIds.split(',')[index];
- } else {
- orderId = row.orderId;
- }
- this.$refs.orderDetailDialogRef.open({ id: 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>
|