|
@@ -1,535 +1,87 @@
|
|
<template>
|
|
<template>
|
|
- <div class="app-container">
|
|
|
|
- <div v-show="!isShowDetail && !isShowExamine && !isShowReturnForm">
|
|
|
|
- <!-- 筛选条件 -->
|
|
|
|
- <div class="screen-container">
|
|
|
|
- <Collapse :screen-form="screenForm">
|
|
|
|
- <template #right_btn>
|
|
|
|
- <el-button size="mini" @click="resetScreenForm">清空</el-button>
|
|
|
|
- <el-button size="mini" type="primary" @click="submitScreenForm">搜索</el-button>
|
|
|
|
- </template>
|
|
|
|
- <template #left_btn>
|
|
|
|
- <el-radio-group v-model="screenForm.status" @change="getList()" size="mini">
|
|
|
|
- <el-radio-button label="">全部</el-radio-button>
|
|
|
|
- <el-radio-button v-for="(item, index) in statusList" :key="index" :label="item.value">{{
|
|
|
|
- item.label
|
|
|
|
- }}</el-radio-button>
|
|
|
|
- </el-radio-group>
|
|
|
|
- </template>
|
|
|
|
- <template #search>
|
|
|
|
- <el-form ref="screenForm" :model="screenForm" label-width="120px" size="mini" label-position="left">
|
|
|
|
- <el-row :gutter="20">
|
|
|
|
- <el-col :xs="24" :sm="12" :lg="6">
|
|
|
|
- <el-form-item label="发货单号" prop="orderNum">
|
|
|
|
- <el-input v-model="screenForm.orderNum" placeholder="请输入发货单号(多个单号请用逗号隔开)" />
|
|
|
|
- </el-form-item>
|
|
|
|
- </el-col>
|
|
|
|
- <el-col :xs="24" :sm="12" :lg="6">
|
|
|
|
- <el-form-item label="订单号" prop="mainOrderId">
|
|
|
|
- <el-input v-model="screenForm.mainOrderId" placeholder="请输入订单号" />
|
|
|
|
- </el-form-item>
|
|
|
|
- </el-col>
|
|
|
|
- <el-col :xs="24" :sm="12" :lg="6">
|
|
|
|
- <el-form-item label="经销商名称" prop="jxsName">
|
|
|
|
- <el-input v-model="screenForm.jxsName" placeholder="请输入经销商名称" />
|
|
|
|
- </el-form-item>
|
|
|
|
- </el-col>
|
|
|
|
- <el-col :xs="24" :sm="12" :lg="6">
|
|
|
|
- <el-form-item label="经销商编号" prop="jxsNum">
|
|
|
|
- <el-input v-model="screenForm.jxsNum" placeholder="请输入规格型号" />
|
|
|
|
- </el-form-item>
|
|
|
|
- </el-col>
|
|
|
|
- <el-col :xs="24" :sm="12" :lg="6">
|
|
|
|
- <el-form-item label="产品名称" prop="chName">
|
|
|
|
- <el-input v-model="screenForm.chName" placeholder="请输入产品名称" />
|
|
|
|
- </el-form-item>
|
|
|
|
- </el-col>
|
|
|
|
- <el-col :xs="24" :sm="12" :lg="6">
|
|
|
|
- <el-form-item label="物料编码" prop="chNum">
|
|
|
|
- <el-input v-model="screenForm.chNum" placeholder="请输入物料编码" />
|
|
|
|
- </el-form-item>
|
|
|
|
- </el-col>
|
|
|
|
- <el-col :xs="24" :sm="12" :lg="6">
|
|
|
|
- <el-form-item label="规格型号" prop="model">
|
|
|
|
- <el-input v-model="screenForm.model" placeholder="请输入规格型号" />
|
|
|
|
- </el-form-item>
|
|
|
|
- </el-col>
|
|
|
|
- <el-col :xs="24" :sm="12" :lg="6">
|
|
|
|
- <el-form-item label="仓库" prop="warehouse">
|
|
|
|
- <el-select
|
|
|
|
- v-model="screenForm.warehouse"
|
|
|
|
- placeholder="请选择仓库"
|
|
|
|
- filterable
|
|
|
|
- clearable
|
|
|
|
- multiple
|
|
|
|
- collapse-tags
|
|
|
|
- style="width: 100%"
|
|
|
|
- >
|
|
|
|
- <el-option
|
|
|
|
- v-for="(item, index) in warehouseList"
|
|
|
|
- :key="index"
|
|
|
|
- :label="item.name"
|
|
|
|
- :value="item.id"
|
|
|
|
- />
|
|
|
|
- </el-select>
|
|
|
|
- </el-form-item>
|
|
|
|
- </el-col>
|
|
|
|
- <el-col :xs="24" :sm="12" :lg="6">
|
|
|
|
- <el-form-item label="单据日期" prop="date">
|
|
|
|
- <el-date-picker
|
|
|
|
- v-model="screenForm.date"
|
|
|
|
- type="datetimerange"
|
|
|
|
-:default-time="['00:00:00','23:59:59']"
|
|
|
|
- range-separator="至"
|
|
|
|
- style="width: 100%"
|
|
|
|
- value-format="yyyy-MM-dd HH:mm:ss"
|
|
|
|
- start-placeholder="开始日期"
|
|
|
|
- end-placeholder="结束日期"
|
|
|
|
- />
|
|
|
|
- </el-form-item>
|
|
|
|
- </el-col>
|
|
|
|
- <el-col :xs="24" :sm="12" :lg="6">
|
|
|
|
- <el-form-item label="审核日期" prop="approval">
|
|
|
|
- <el-date-picker
|
|
|
|
- v-model="screenForm.approval"
|
|
|
|
- type="datetimerange"
|
|
|
|
-:default-time="['00:00:00','23:59:59']"
|
|
|
|
- range-separator="至"
|
|
|
|
- style="width: 100%"
|
|
|
|
- value-format="yyyy-MM-dd HH:mm:ss"
|
|
|
|
- start-placeholder="开始日期"
|
|
|
|
- end-placeholder="结束日期"
|
|
|
|
- />
|
|
|
|
- </el-form-item>
|
|
|
|
- </el-col>
|
|
|
|
- <!-- <el-col :xs="24" :sm="12" :lg="6">
|
|
|
|
- <el-form-item label="打印时间排序" prop="printDesc">
|
|
|
|
- <el-select v-model="screenForm.printDesc" clearable filterable>
|
|
|
|
- <el-option label="默认" :value="null"> </el-option>
|
|
|
|
- <el-option label="倒序" :value="1"> </el-option>
|
|
|
|
- </el-select>
|
|
|
|
- </el-form-item>
|
|
|
|
- </el-col> -->
|
|
|
|
- <el-col :xs="24" :sm="12" :lg="6">
|
|
|
|
- <el-form-item label="打印日期" prop="printTime">
|
|
|
|
- <el-date-picker
|
|
|
|
- v-model="screenForm.printTime"
|
|
|
|
- type="datetimerange"
|
|
|
|
-:default-time="['00:00:00','23:59:59']"
|
|
|
|
- range-separator="至"
|
|
|
|
- style="width: 100%"
|
|
|
|
- value-format="yyyy-MM-dd HH:mm:ss"
|
|
|
|
- start-placeholder="开始日期"
|
|
|
|
- end-placeholder="结束日期"
|
|
|
|
- />
|
|
|
|
- </el-form-item>
|
|
|
|
- </el-col>
|
|
|
|
- <el-col :xs="24" :sm="12" :lg="6">
|
|
|
|
- <el-form-item label="出库单号" prop="id">
|
|
|
|
- <el-input v-model="screenForm.id" placeholder="请输入出库单号(多个单号请用逗号隔开)" />
|
|
|
|
- </el-form-item>
|
|
|
|
- </el-col>
|
|
|
|
- <el-col :xs="24" :sm="12" :lg="6">
|
|
|
|
- <el-form-item label="金蝶推送状态" prop="syncStatus">
|
|
|
|
- <el-select v-model="screenForm.syncStatus" clearable filterable>
|
|
|
|
- <el-option label="未推送" :value="0" />
|
|
|
|
- <el-option label="推送成功" :value="1" />
|
|
|
|
- <el-option label="失败推送" :value="-1" />
|
|
|
|
- </el-select>
|
|
|
|
- </el-form-item>
|
|
|
|
- </el-col>
|
|
|
|
- <el-col :xs="24" :sm="12" :lg="6">
|
|
|
|
- <el-form-item label="存货类别" prop="categoryId">
|
|
|
|
- <el-select v-model="screenForm.categoryId" filterable clearable placeholder="请选择">
|
|
|
|
- <el-option v-for="item in categoryList" :key="item.id" :label="item.name" :value="item.id">
|
|
|
|
- </el-option>
|
|
|
|
- </el-select>
|
|
|
|
- </el-form-item>
|
|
|
|
- </el-col>
|
|
|
|
- </el-row>
|
|
|
|
- </el-form>
|
|
|
|
- </template>
|
|
|
|
- </Collapse>
|
|
|
|
- </div>
|
|
|
|
-
|
|
|
|
- <div class="mymain-container">
|
|
|
|
- <div class="btn-group clearfix">
|
|
|
|
- <div class="fl">
|
|
|
|
- <el-button
|
|
|
|
- v-if="$checkBtnRole('refund', $route.meta.roles)"
|
|
|
|
- size="mini"
|
|
|
|
- type="primary"
|
|
|
|
- icon="el-icon-plus"
|
|
|
|
- @click="toReturnForm()"
|
|
|
|
- >退货申请</el-button
|
|
|
|
- >
|
|
|
|
- <el-button
|
|
|
|
- v-if="$checkBtnRole('examine', $route.meta.roles)"
|
|
|
|
- size="mini"
|
|
|
|
- type="warning"
|
|
|
|
- icon="el-icon-finished"
|
|
|
|
- :disabled="multipleSelection.length < 1"
|
|
|
|
- @click="batchExamine"
|
|
|
|
- >批量审批</el-button
|
|
|
|
- >
|
|
|
|
- </div>
|
|
|
|
- <div class="fr">
|
|
|
|
- <ExportButton :ex-url="'sale/order/exportChuku'" :ex-params="exParams" />
|
|
|
|
- </div>
|
|
|
|
- </div>
|
|
|
|
- <div class="table">
|
|
|
|
- <el-table
|
|
|
|
- v-loading="listLoading"
|
|
|
|
- :data="dataList"
|
|
|
|
- element-loading-text="Loading"
|
|
|
|
- border
|
|
|
|
- fit
|
|
|
|
- :row-style="rowClass"
|
|
|
|
- show-summary
|
|
|
|
- :summary-method="$getSummaries"
|
|
|
|
- @selection-change="handleSelectionChange"
|
|
|
|
- >
|
|
|
|
- <el-table-column align="center" type="selection" width="55" fixed="left" />
|
|
|
|
- <el-table-column
|
|
|
|
- align="left"
|
|
|
|
- label="金蝶推送状态"
|
|
|
|
- prop="syncStatus"
|
|
|
|
- min-width="130"
|
|
|
|
- show-overflow-tooltip
|
|
|
|
- sortable
|
|
|
|
- >
|
|
|
|
- <template slot-scope="scope">
|
|
|
|
- {{ scope.row.syncStatus == 0 ? '未推送' : scope.row.syncStatus == 1 ? '推送成功' : '失败推送' }}
|
|
|
|
- </template>
|
|
|
|
- </el-table-column>
|
|
|
|
- <el-table-column
|
|
|
|
- align="left"
|
|
|
|
- label="状态"
|
|
|
|
- prop="examineStatus"
|
|
|
|
- min-width="100"
|
|
|
|
- show-overflow-tooltip
|
|
|
|
- sortable
|
|
|
|
- >
|
|
|
|
- <template slot-scope="scope">
|
|
|
|
- {{ scope.row.examineStatus | statusFilter }}
|
|
|
|
- </template>
|
|
|
|
- </el-table-column>
|
|
|
|
- <el-table-column
|
|
|
|
- align="left"
|
|
|
|
- label="打印时间"
|
|
|
|
- prop="printTime"
|
|
|
|
- min-width="100"
|
|
|
|
- show-overflow-tooltip
|
|
|
|
- sortable
|
|
|
|
- />
|
|
|
|
- <el-table-column
|
|
|
|
- align="left"
|
|
|
|
- label="订单类型"
|
|
|
|
- prop="orderType"
|
|
|
|
- min-width="100"
|
|
|
|
- show-overflow-tooltip
|
|
|
|
- sortable
|
|
|
|
- >
|
|
|
|
- <template slot-scope="scope">
|
|
|
|
- {{ scope.row.orderType | orderTypeFilter }}
|
|
|
|
- </template>
|
|
|
|
- </el-table-column>
|
|
|
|
- <!-- <el-table-column
|
|
|
|
- align="left"
|
|
|
|
- label="发票号"
|
|
|
|
- prop="billReceipt"
|
|
|
|
- min-width="250"
|
|
|
|
- show-overflow-tooltip
|
|
|
|
- sortable
|
|
|
|
- >
|
|
|
|
- <template slot-scope="scope">
|
|
|
|
- {{ scope.row.billReceipt }}
|
|
|
|
- </template>
|
|
|
|
- </el-table-column> -->
|
|
|
|
- <el-table-column align="left" label="销售出库单号" prop="id" min-width="140" show-overflow-tooltip sortable>
|
|
|
|
- <template slot-scope="scope">
|
|
|
|
- <CopyButton :copy-text="scope.row.id" />
|
|
|
|
- <span>{{ scope.row.id }}</span>
|
|
|
|
- </template>
|
|
|
|
- </el-table-column>
|
|
|
|
- <el-table-column
|
|
|
|
- align="left"
|
|
|
|
- label="发货单号"
|
|
|
|
- prop="orderNo"
|
|
|
|
- min-width="130"
|
|
|
|
- show-overflow-tooltip
|
|
|
|
- sortable
|
|
|
|
- >
|
|
|
|
- <template slot-scope="scope">
|
|
|
|
- <CopyButton :copy-text="scope.row.orderNo" />
|
|
|
|
- <span>{{ scope.row.orderNo }}</span>
|
|
|
|
- </template>
|
|
|
|
- </el-table-column>
|
|
|
|
- <el-table-column align="left" label="订单号" prop="orderNo" min-width="140" show-overflow-tooltip sortable>
|
|
|
|
- <template slot-scope="scope">
|
|
|
|
- <CopyButton
|
|
|
|
- :copy-text="
|
|
|
|
- scope.row.orderType === 'TRADE' ||
|
|
|
|
- scope.row.orderType === 'HOME' ||
|
|
|
|
- scope.row.orderType === 'REQUISITION_TRADE' ||
|
|
|
|
- scope.row.orderType === 'REQUISITION_HOME'
|
|
|
|
- ? scope.row.enginOrderNo
|
|
|
|
- : scope.row.mainOrderId
|
|
|
|
- "
|
|
|
|
- />
|
|
|
|
- <span>{{
|
|
|
|
- scope.row.orderType === 'TRADE' ||
|
|
|
|
- scope.row.orderType === 'HOME' ||
|
|
|
|
- scope.row.orderType === 'REQUISITION_TRADE' ||
|
|
|
|
- scope.row.orderType === 'REQUISITION_HOME'
|
|
|
|
- ? scope.row.enginOrderNo
|
|
|
|
- : scope.row.mainOrderId
|
|
|
|
- }}</span>
|
|
|
|
- </template>
|
|
|
|
- </el-table-column>
|
|
|
|
- <el-table-column
|
|
|
|
- align="left"
|
|
|
|
- label="仓库"
|
|
|
|
- prop="correspondName"
|
|
|
|
- min-width="100"
|
|
|
|
- show-overflow-tooltip
|
|
|
|
- sortable
|
|
|
|
- />
|
|
|
|
- <el-table-column
|
|
|
|
- align="left"
|
|
|
|
- label="经销商编码"
|
|
|
|
- prop="customerNumber"
|
|
|
|
- min-width="120"
|
|
|
|
- show-overflow-tooltip
|
|
|
|
- sortable
|
|
|
|
- >
|
|
|
|
- <template slot-scope="scope">
|
|
|
|
- <CopyButton :copy-text="scope.row.customerNumber" />
|
|
|
|
- <span>{{ scope.row.customerNumber }}</span>
|
|
|
|
- </template>
|
|
|
|
- </el-table-column>
|
|
|
|
- <el-table-column
|
|
|
|
- align="left"
|
|
|
|
- label="经销商名称"
|
|
|
|
- prop="customerName"
|
|
|
|
- min-width="250"
|
|
|
|
- show-overflow-tooltip
|
|
|
|
- sortable
|
|
|
|
- >
|
|
|
|
- <template slot-scope="scope">
|
|
|
|
- <CopyButton :copy-text="scope.row.customerName" />
|
|
|
|
- <span>{{ scope.row.customerName }}</span>
|
|
|
|
- </template>
|
|
|
|
- </el-table-column>
|
|
|
|
- <el-table-column
|
|
|
|
- align="left"
|
|
|
|
- label="物料编码"
|
|
|
|
- prop="materialCode"
|
|
|
|
- min-width="120"
|
|
|
|
- show-overflow-tooltip
|
|
|
|
- sortable
|
|
|
|
- >
|
|
|
|
- <template slot-scope="scope">
|
|
|
|
- <CopyButton :copy-text="scope.row.materialCode" />
|
|
|
|
- <span>{{ scope.row.materialCode }}</span>
|
|
|
|
- </template>
|
|
|
|
- </el-table-column>
|
|
|
|
- <el-table-column
|
|
|
|
- align="left"
|
|
|
|
- label="产品编码"
|
|
|
|
- prop="materialOldNumber"
|
|
|
|
- min-width="140"
|
|
|
|
- show-overflow-tooltip
|
|
|
|
- sortable
|
|
|
|
- >
|
|
|
|
- <template slot-scope="scope">
|
|
|
|
- <CopyButton :copy-text="scope.row.materialOldNumber" />
|
|
|
|
- <span>{{ scope.row.materialOldNumber }}</span>
|
|
|
|
- </template>
|
|
|
|
- </el-table-column>
|
|
|
|
- <el-table-column
|
|
|
|
- align="left"
|
|
|
|
- label="产品名称"
|
|
|
|
- prop="materialName"
|
|
|
|
- min-width="160"
|
|
|
|
- show-overflow-tooltip
|
|
|
|
- sortable
|
|
|
|
- >
|
|
|
|
- <template slot-scope="scope">
|
|
|
|
- <CopyButton :copy-text="scope.row.materialName" />
|
|
|
|
- <span>{{ scope.row.materialName }}</span>
|
|
|
|
- </template>
|
|
|
|
- </el-table-column>
|
|
|
|
- <el-table-column
|
|
|
|
- align="left"
|
|
|
|
- label="规格型号"
|
|
|
|
- prop="specification"
|
|
|
|
- min-width="350"
|
|
|
|
- show-overflow-tooltip
|
|
|
|
- sortable
|
|
|
|
- >
|
|
|
|
- <template slot-scope="scope">
|
|
|
|
- <CopyButton :copy-text="scope.row.specification" />
|
|
|
|
- <span>{{ scope.row.specification }}</span>
|
|
|
|
- </template>
|
|
|
|
- </el-table-column>
|
|
|
|
- <el-table-column align="left" label="单位" prop="unit" min-width="100" show-overflow-tooltip sortable />
|
|
|
|
- <el-table-column
|
|
|
|
- align="left"
|
|
|
|
- label="制单人"
|
|
|
|
- prop="createBy"
|
|
|
|
- min-width="100"
|
|
|
|
- show-overflow-tooltip
|
|
|
|
- sortable
|
|
|
|
- />
|
|
|
|
- <el-table-column
|
|
|
|
- align="left"
|
|
|
|
- label="审核时间"
|
|
|
|
- prop="approvalTime"
|
|
|
|
- min-width="150"
|
|
|
|
- show-overflow-tooltip
|
|
|
|
- sortable
|
|
|
|
- />
|
|
|
|
-
|
|
|
|
- <el-table-column
|
|
|
|
- align="right"
|
|
|
|
- label="数量"
|
|
|
|
- prop="refundableQty"
|
|
|
|
- min-width="100"
|
|
|
|
- show-overflow-tooltip
|
|
|
|
- sortable
|
|
|
|
- />
|
|
|
|
- <el-table-column
|
|
|
|
- align="left"
|
|
|
|
- label="金蝶部门"
|
|
|
|
- prop="k3OrgName"
|
|
|
|
- min-width="120"
|
|
|
|
- show-overflow-tooltip
|
|
|
|
- sortable
|
|
|
|
- />
|
|
|
|
- <el-table-column
|
|
|
|
- align="left"
|
|
|
|
- label="钱包"
|
|
|
|
- prop="customerWalletName"
|
|
|
|
- min-width="100"
|
|
|
|
- show-overflow-tooltip
|
|
|
|
- sortable
|
|
|
|
- />
|
|
|
|
- <!-- <el-table-column align="right" label="单价" prop="price" min-width="100" show-overflow-tooltip
|
|
|
|
- sortable>
|
|
|
|
- <template slot-scope="scope">
|
|
|
|
- {{ scope.row.price | numToFixed }}
|
|
|
|
- </template>
|
|
|
|
- </el-table-column> -->
|
|
|
|
- <!-- <el-table-column align="right" label="订单金额" prop="payAmount" min-width="100" show-overflow-tooltip
|
|
|
|
- sortable>
|
|
|
|
- <template slot-scope="scope">
|
|
|
|
- {{ scope.row.payAmount | numToFixed }}
|
|
|
|
- </template>
|
|
|
|
- </el-table-column> -->
|
|
|
|
- <!-- <el-table-column align="left" label="订单备注" prop="headerRemark" min-width="160" show-overflow-tooltip
|
|
|
|
- sortable></el-table-column> -->
|
|
|
|
- <!-- <el-table-column align="left" label="发货申请备注" prop="remark" min-width="160" show-overflow-tooltip
|
|
|
|
- sortable></el-table-column> -->
|
|
|
|
- <!-- <el-table-column align="left" label="表体备注" prop="invoiceRemark" min-width="160" show-overflow-tooltip
|
|
|
|
- sortable></el-table-column> -->
|
|
|
|
- <!-- <el-table-column align="left" label="业务员" prop="serviceName" min-width="100" show-overflow-tooltip
|
|
|
|
- sortable></el-table-column> -->
|
|
|
|
- <!-- <el-table-column align="left" label="表头业务员" prop="k3ServiceName" min-width="100" show-overflow-tooltip
|
|
|
|
- sortable></el-table-column> -->
|
|
|
|
-
|
|
|
|
- <el-table-column align="center" label="操作" width="120" fixed="right">
|
|
|
|
- <template slot-scope="scope">
|
|
|
|
- <el-button type="text" @click="toDetail(scope.row)">详情</el-button>
|
|
|
|
- <el-button
|
|
|
|
- v-if="scope.row.type === 2 && scope.row.examineStatus !== 'OK'"
|
|
|
|
- type="text"
|
|
|
|
- @click="toDetail(scope.row), (edit = true)"
|
|
|
|
- >编辑</el-button
|
|
|
|
- >
|
|
|
|
- <el-button
|
|
|
|
- v-if="$checkBtnRole('examine', $route.meta.roles) && scope.row.examineStatus === 'WAIT'"
|
|
|
|
- type="text"
|
|
|
|
- @click="toExamine(scope.row)"
|
|
|
|
- >审批</el-button
|
|
|
|
- >
|
|
|
|
- <el-popconfirm
|
|
|
|
- v-if="$checkBtnRole('examine', $route.meta.roles) && scope.row.examineStatus === 'OK'"
|
|
|
|
- style="margin-left: 10px"
|
|
|
|
- title="确定弃审吗?"
|
|
|
|
- @onConfirm="handleAbandon(scope.row.id)"
|
|
|
|
- >
|
|
|
|
- <el-button slot="reference" type="text">弃审</el-button>
|
|
|
|
- </el-popconfirm>
|
|
|
|
- </template>
|
|
|
|
- </el-table-column>
|
|
|
|
- </el-table>
|
|
|
|
- </div>
|
|
|
|
- </div>
|
|
|
|
- <div class="pagination clearfix">
|
|
|
|
- <div class="fr">
|
|
|
|
- <el-pagination
|
|
|
|
- :current-page="currentPage"
|
|
|
|
- :page-sizes="[10, 20, 30, 50, 100]"
|
|
|
|
- :page-size="10"
|
|
|
|
- layout="total, sizes, prev, pager, next, jumper"
|
|
|
|
- :total="listTotal"
|
|
|
|
- @size-change="handleSizeChange"
|
|
|
|
- @current-change="handleCurrentChange"
|
|
|
|
- />
|
|
|
|
- </div>
|
|
|
|
- </div>
|
|
|
|
- </div>
|
|
|
|
-
|
|
|
|
- <ExamineDialog :is-show.sync="isShowExamineDialog" :examine-form.sync="examineForm" />
|
|
|
|
- <SalesDetail v-if="isShowDetail" :list-item="queryItem" :edit="edit" @backListFormDetail="backList" />
|
|
|
|
- <SalesExamine v-if="isShowExamine" :list-item="queryItem" @backListFormExamine="backList" />
|
|
|
|
- <SalesReturnForm v-if="isShowReturnForm" :list-item="queryItem" @backListFormDetail="backList" />
|
|
|
|
- </div>
|
|
|
|
|
|
+ <template-page
|
|
|
|
+ ref="pageRef"
|
|
|
|
+ :getList="getList"
|
|
|
|
+ :exportList="exportList"
|
|
|
|
+ :tableEvents="tableEvents"
|
|
|
|
+ :tableAttributes="tableAttributes"
|
|
|
|
+ :operation="operation()"
|
|
|
|
+ :optionsEvensGroup="optionsEvensGroup"
|
|
|
|
+ :columnParsing="columnParsing"
|
|
|
|
+ >
|
|
|
|
+ <Popu v-if="isShowDetail || isShowExamine || isShowReturnForm">
|
|
|
|
+ <SalesDetail v-if="isShowDetail" :list-item="queryItem" :edit="edit" @close="handleClose" />
|
|
|
|
+ <SalesExamine v-if="isShowExamine" :list-item="queryItem" @close="handleClose" />
|
|
|
|
+ <SalesReturnForm v-if="isShowReturnForm" :list-item="queryItem" @close="handleClose" />
|
|
|
|
+ </Popu>
|
|
|
|
+ </template-page>
|
|
</template>
|
|
</template>
|
|
|
|
|
|
<script>
|
|
<script>
|
|
-import { abandonData, examineBatch, examineJudge, getList, getWarehouseList, getListOrderNo } from '@/api/supply/sales'
|
|
|
|
|
|
+import TemplatePage from '@/components/template/template-page-1.vue'
|
|
|
|
+import import_mixin from '@/components/template/import_mixin.js'
|
|
|
|
+import add_callback_mixin from '@/components/template/add_callback_mixin.js'
|
|
|
|
+import Popu from '@/components/template/popu.vue'
|
|
|
|
+import {
|
|
|
|
+ abandonData,
|
|
|
|
+ examineBatch,
|
|
|
|
+ examineJudge,
|
|
|
|
+ getList,
|
|
|
|
+ getWarehouseList,
|
|
|
|
+ getListOrderNo,
|
|
|
|
+ getSaleOrderListV2,
|
|
|
|
+ exportSaleOrderListV2
|
|
|
|
+} from '@/api/supply/sales'
|
|
import SalesDetail from '@/views/supply/sales/components/sales_detail'
|
|
import SalesDetail from '@/views/supply/sales/components/sales_detail'
|
|
import SalesExamine from '@/views/supply/sales/components/sales_examine'
|
|
import SalesExamine from '@/views/supply/sales/components/sales_examine'
|
|
import SalesReturnForm from '@/views/supply/sales/components/sales_return_form'
|
|
import SalesReturnForm from '@/views/supply/sales/components/sales_return_form'
|
|
import ExamineDialog from '@/components/Common/examine-dialog'
|
|
import ExamineDialog from '@/components/Common/examine-dialog'
|
|
import { getCategoryList } from '@/api/common'
|
|
import { getCategoryList } from '@/api/common'
|
|
import { getNoRebateWalletList } from '@/api/policy_list'
|
|
import { getNoRebateWalletList } from '@/api/policy_list'
|
|
-
|
|
|
|
-let that
|
|
|
|
export default {
|
|
export default {
|
|
- components: {
|
|
|
|
- SalesDetail,
|
|
|
|
- SalesExamine,
|
|
|
|
- SalesReturnForm,
|
|
|
|
- ExamineDialog
|
|
|
|
- },
|
|
|
|
- filters: {
|
|
|
|
- statusFilter(val) {
|
|
|
|
- if (that.statusList.length) {
|
|
|
|
- const obj = that.statusList.find(o => o.value == val)
|
|
|
|
- return obj ? obj.label : ''
|
|
|
|
- }
|
|
|
|
- return ''
|
|
|
|
- },
|
|
|
|
- orderTypeFilter(val) {
|
|
|
|
- if (that.orderTypeList.length) {
|
|
|
|
- const obj = that.orderTypeList.find(o => o.value == val)
|
|
|
|
- return obj ? obj.label : ''
|
|
|
|
- }
|
|
|
|
- return ''
|
|
|
|
- },
|
|
|
|
- billStatusFilter(val) {
|
|
|
|
- const MAP = {
|
|
|
|
- 1: '已开票',
|
|
|
|
- 0: '未开票'
|
|
|
|
- }
|
|
|
|
- return MAP[val]
|
|
|
|
- }
|
|
|
|
- },
|
|
|
|
|
|
+ components: { TemplatePage, Popu, SalesDetail, SalesExamine, SalesReturnForm, ExamineDialog },
|
|
|
|
+ mixins: [import_mixin, add_callback_mixin],
|
|
data() {
|
|
data() {
|
|
return {
|
|
return {
|
|
|
|
+ visible: false,
|
|
|
|
+ // 事件组合
|
|
|
|
+ optionsEvensGroup: [
|
|
|
|
+ [
|
|
|
|
+ [
|
|
|
|
+ {
|
|
|
|
+ name: '退货申请',
|
|
|
|
+ click: this.toReturnForm,
|
|
|
|
+ isRole: this.$checkBtnRole('refund', this.$route.meta.roles)
|
|
|
|
+ }
|
|
|
|
+ ]
|
|
|
|
+ ],
|
|
|
|
+ [
|
|
|
|
+ [
|
|
|
|
+ {
|
|
|
|
+ name: '批量审批',
|
|
|
|
+ click: () => {
|
|
|
|
+ if (this.recordSelected.length === 0) {
|
|
|
|
+ this.$message.error('请选择需要删除的数据')
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+ this.batchExamine()
|
|
|
|
+ },
|
|
|
|
+ isRole: this.$checkBtnRole('examine', this.$route.meta.roles)
|
|
|
|
+ }
|
|
|
|
+ ]
|
|
|
|
+ ]
|
|
|
|
+ ],
|
|
|
|
+ // 表格属性
|
|
|
|
+ tableAttributes: {
|
|
|
|
+ // 启用勾选列
|
|
|
|
+ selectColumn: true
|
|
|
|
+ }, // 关闭新增弹窗
|
|
|
|
+
|
|
|
|
+ // 表格事件
|
|
|
|
+ tableEvents: {
|
|
|
|
+ 'selection-change': this.selectionChange
|
|
|
|
+ },
|
|
|
|
+ recordSelected: [],
|
|
currentPage: 1, // 当前页码
|
|
currentPage: 1, // 当前页码
|
|
pageSize: 10, // 每页数量
|
|
pageSize: 10, // 每页数量
|
|
listTotal: 0, // 列表总数
|
|
listTotal: 0, // 列表总数
|
|
@@ -610,92 +162,68 @@ export default {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
},
|
|
-
|
|
|
|
- computed: {
|
|
|
|
- exParams() {
|
|
|
|
- return {
|
|
|
|
- examineStatus: this.screenForm.status,
|
|
|
|
- orderNo: this.screenForm.orderNum.replace(/,/gi, ','),
|
|
|
|
- customerName: this.screenForm.jxsName,
|
|
|
|
- customerNumber: this.screenForm.jxsNum,
|
|
|
|
- materialName: this.screenForm.chName,
|
|
|
|
- materialNumber: this.screenForm.chNum,
|
|
|
|
- specification: this.screenForm.model,
|
|
|
|
- correspondId: this.screenForm.warehouse.join(','),
|
|
|
|
- startTime: this.screenForm.date ? this.screenForm.date[0] : '',
|
|
|
|
- endTime: this.screenForm.date ? this.screenForm.date[1] : '',
|
|
|
|
- syncStatus: this.screenForm.syncStatus,
|
|
|
|
- categoryId: this.screenForm.categoryId,
|
|
|
|
- approvalStartTime: this.screenForm.approval ? this.screenForm.approval[0] : '',
|
|
|
|
- approvalEndTime: this.screenForm.approval ? this.screenForm.approval[1] : '',
|
|
|
|
- printStartTime: this.screenForm.printTime ? this.screenForm.printTime[0] : '',
|
|
|
|
- printEndTime: this.screenForm.printTime ? this.screenForm.printTime[1] : '',
|
|
|
|
- mainOrderId: this.screenForm.mainOrderId,
|
|
|
|
- printTimeDesc: this.screenForm.printDesc,
|
|
|
|
- id: this.screenForm.id.replace(/,/gi, ',')
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
- },
|
|
|
|
-
|
|
|
|
- watch: {
|
|
|
|
- multipleSelection(data) {
|
|
|
|
- // 监听选中状态
|
|
|
|
- this.selectRow = []
|
|
|
|
- if (data.length > 0) {
|
|
|
|
- data.forEach((item, index) => {
|
|
|
|
- this.selectRow.push(item.id)
|
|
|
|
- })
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
- },
|
|
|
|
-
|
|
|
|
- beforeCreate() {
|
|
|
|
- that = this
|
|
|
|
- },
|
|
|
|
-
|
|
|
|
- created() {
|
|
|
|
- this.getWarehouseList()
|
|
|
|
- this.getList()
|
|
|
|
- this.getCategoryList()
|
|
|
|
- },
|
|
|
|
-
|
|
|
|
methods: {
|
|
methods: {
|
|
- // 查询列表
|
|
|
|
- getList() {
|
|
|
|
- this.listLoading = true
|
|
|
|
- const params = {
|
|
|
|
- pageNum: this.currentPage,
|
|
|
|
- pageSize: this.pageSize,
|
|
|
|
- examineStatus: this.screenForm.status,
|
|
|
|
- orderNo: this.screenForm.orderNum.replace(/,/gi, ','),
|
|
|
|
- customerName: this.screenForm.jxsName,
|
|
|
|
- customerNumber: this.screenForm.jxsNum,
|
|
|
|
- materialName: this.screenForm.chName,
|
|
|
|
- materialNumber: this.screenForm.chNum,
|
|
|
|
- specification: this.screenForm.model,
|
|
|
|
- correspondId: this.screenForm.warehouse.join(','),
|
|
|
|
- syncStatus: this.screenForm.syncStatus,
|
|
|
|
- categoryId: this.screenForm.categoryId,
|
|
|
|
-
|
|
|
|
- startTime: this.screenForm.date ? this.screenForm.date[0] : '',
|
|
|
|
- endTime: this.screenForm.date ? this.screenForm.date[1] : '',
|
|
|
|
- approvalStartTime: this.screenForm.approval ? this.screenForm.approval[0] : '',
|
|
|
|
- approvalEndTime: this.screenForm.approval ? this.screenForm.approval[1] : '',
|
|
|
|
- mainOrderId: this.screenForm.mainOrderId,
|
|
|
|
- printStartTime: this.screenForm.printTime ? this.screenForm.printTime[0] : '',
|
|
|
|
- printEndTime: this.screenForm.printTime ? this.screenForm.printTime[1] : '',
|
|
|
|
- printTimeDesc: this.screenForm.printDesc,
|
|
|
|
- id: this.screenForm.id.replace(/,/gi, ',')
|
|
|
|
|
|
+ // 列表请求函数
|
|
|
|
+ getList(...p) {
|
|
|
|
+ this.recordSelected = []
|
|
|
|
+ return getSaleOrderListV2(...p)
|
|
|
|
+ },
|
|
|
|
+ // 列表导出函数
|
|
|
|
+ exportList: exportSaleOrderListV2,
|
|
|
|
+ // 表格列解析渲染数据更改
|
|
|
|
+ columnParsing(item, defaultData) {
|
|
|
|
+ return defaultData
|
|
|
|
+ },
|
|
|
|
+ // 监听勾选变化
|
|
|
|
+ selectionChange(data) {
|
|
|
|
+ this.recordSelected = data
|
|
|
|
+ },
|
|
|
|
+ operation() {
|
|
|
|
+ return (h, { row, index, column }) => {
|
|
|
|
+ return (
|
|
|
|
+ <div class="operation-btns">
|
|
|
|
+ <el-button type="text" onClick={() => this.toDetail(row)}>
|
|
|
|
+ 详情
|
|
|
|
+ </el-button>
|
|
|
|
+ {row.type === 2 && row.examineStatus !== 'OK' ? (
|
|
|
|
+ <el-button
|
|
|
|
+ type="text"
|
|
|
|
+ onClick={() => {
|
|
|
|
+ this.toDetail(row)
|
|
|
|
+ this.edit = true
|
|
|
|
+ }}
|
|
|
|
+ >
|
|
|
|
+ 编辑
|
|
|
|
+ </el-button>
|
|
|
|
+ ) : null}
|
|
|
|
+ {this.$checkBtnRole('examine', this.$route.meta.roles) && row.examineStatus === 'WAIT' ? (
|
|
|
|
+ <el-button type="text" onClick={() => this.toExamine(row)}>
|
|
|
|
+ 审批
|
|
|
|
+ </el-button>
|
|
|
|
+ ) : null}
|
|
|
|
+ {this.$checkBtnRole('examine', this.$route.meta.roles) && row.examineStatus === 'OK' ? (
|
|
|
|
+ <el-popconfirm
|
|
|
|
+ style="margin-left: 10px"
|
|
|
|
+ title="确定弃审吗?"
|
|
|
|
+ onOnConfirm={() => this.handleAbandon(row.id)}
|
|
|
|
+ >
|
|
|
|
+ <el-button slot="reference" type="text">
|
|
|
|
+ 弃审
|
|
|
|
+ </el-button>
|
|
|
|
+ </el-popconfirm>
|
|
|
|
+ ) : null}
|
|
|
|
+ </div>
|
|
|
|
+ )
|
|
}
|
|
}
|
|
- getList(params).then(res => {
|
|
|
|
- res.data.records.forEach(item => {
|
|
|
|
- item.sums1 = ['refundableQty']
|
|
|
|
- item.sums2 = ['price', 'payAmount']
|
|
|
|
- })
|
|
|
|
- this.dataList = res.data.records
|
|
|
|
- this.listTotal = res.data.total
|
|
|
|
- this.listLoading = false
|
|
|
|
- })
|
|
|
|
|
|
+ },
|
|
|
|
+ handleClose() {
|
|
|
|
+ this.queryItem = {}
|
|
|
|
+ this.edit = false
|
|
|
|
+ this.addOff(() => {
|
|
|
|
+ this.isShowDetail = false
|
|
|
|
+ this.isShowExamine = false
|
|
|
|
+ this.isShowReturnForm = false
|
|
|
|
+ })()
|
|
},
|
|
},
|
|
|
|
|
|
// 获取仓库列表
|
|
// 获取仓库列表
|
|
@@ -727,13 +255,12 @@ export default {
|
|
updateReceipt() {
|
|
updateReceipt() {
|
|
if (!this.value1) {
|
|
if (!this.value1) {
|
|
this.$errorMsg('请选择时间')
|
|
this.$errorMsg('请选择时间')
|
|
-
|
|
|
|
}
|
|
}
|
|
// updateReceipt({
|
|
// updateReceipt({
|
|
// startTime:this.value1[0],
|
|
// startTime:this.value1[0],
|
|
// endTime:this.value1[1]
|
|
// endTime:this.value1[1]
|
|
// }).then(res=>{
|
|
// }).then(res=>{
|
|
- // this.getList();
|
|
|
|
|
|
+ // this.$refs.pageRef.refreshList();
|
|
// this.$successMsg("已更新");
|
|
// this.$successMsg("已更新");
|
|
// this.value1 = ''
|
|
// this.value1 = ''
|
|
// })
|
|
// })
|
|
@@ -741,7 +268,7 @@ export default {
|
|
// 提交筛选表单
|
|
// 提交筛选表单
|
|
submitScreenForm() {
|
|
submitScreenForm() {
|
|
this.currentPage = 1
|
|
this.currentPage = 1
|
|
- this.getList()
|
|
|
|
|
|
+ this.$refs.pageRef.refreshList()
|
|
if (this.screenForm.orderNum) {
|
|
if (this.screenForm.orderNum) {
|
|
getListOrderNo({
|
|
getListOrderNo({
|
|
orderNo: this.screenForm.orderNum.replace(/,/gi, ',')
|
|
orderNo: this.screenForm.orderNum.replace(/,/gi, ',')
|
|
@@ -756,26 +283,6 @@ export default {
|
|
}
|
|
}
|
|
},
|
|
},
|
|
|
|
|
|
- // 重置筛选表单
|
|
|
|
- resetScreenForm() {
|
|
|
|
- this.$refs.screenForm.resetFields()
|
|
|
|
- this.currentPage = 1
|
|
|
|
- this.getList()
|
|
|
|
- },
|
|
|
|
-
|
|
|
|
- // 更改每页数量
|
|
|
|
- handleSizeChange(val) {
|
|
|
|
- this.pageSize = val
|
|
|
|
- this.currentPage = 1
|
|
|
|
- this.getList()
|
|
|
|
- },
|
|
|
|
-
|
|
|
|
- // 更改当前页
|
|
|
|
- handleCurrentChange(val) {
|
|
|
|
- this.currentPage = val
|
|
|
|
- this.getList()
|
|
|
|
- },
|
|
|
|
-
|
|
|
|
// 判断是否可以审批
|
|
// 判断是否可以审批
|
|
async examineJudge(item) {
|
|
async examineJudge(item) {
|
|
// 获取页面模版
|
|
// 获取页面模版
|
|
@@ -813,13 +320,6 @@ export default {
|
|
this.isShowExamine = true
|
|
this.isShowExamine = true
|
|
},
|
|
},
|
|
|
|
|
|
- backList() {
|
|
|
|
- this.queryItem = {}
|
|
|
|
- this.isShowDetail = false
|
|
|
|
- this.isShowExamine = false
|
|
|
|
- this.isShowReturnForm = false
|
|
|
|
- },
|
|
|
|
-
|
|
|
|
handleSelectionChange(val) {
|
|
handleSelectionChange(val) {
|
|
this.multipleSelection = val
|
|
this.multipleSelection = val
|
|
if (val) {
|
|
if (val) {
|
|
@@ -851,7 +351,7 @@ export default {
|
|
approvalRemark: this.examineForm.remark
|
|
approvalRemark: this.examineForm.remark
|
|
}).then(res => {
|
|
}).then(res => {
|
|
this.isShowExamineDialog = false
|
|
this.isShowExamineDialog = false
|
|
- this.getList()
|
|
|
|
|
|
+ this.$refs.pageRef.refreshList()
|
|
this.$successMsg('修改成功')
|
|
this.$successMsg('修改成功')
|
|
})
|
|
})
|
|
},
|
|
},
|
|
@@ -860,7 +360,7 @@ export default {
|
|
handleAbandon(id) {
|
|
handleAbandon(id) {
|
|
abandonData({ id }).then(res => {
|
|
abandonData({ id }).then(res => {
|
|
this.$successMsg()
|
|
this.$successMsg()
|
|
- this.getList()
|
|
|
|
|
|
+ this.$refs.pageRef.refreshList()
|
|
})
|
|
})
|
|
}
|
|
}
|
|
}
|
|
}
|