123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605 |
- <template>
- <div class="app-container">
- <div v-show="!isShowDetail && !isShowForm && !isShowExamine && !isShowReturn">
- <!-- 筛选条件 -->
- <div class="screen-container">
- <el-form ref="screenForm" :model="screenForm" label-width="100px" size="mini" label-position="left">
- <el-row :gutter="20">
- <el-col :xs="24" :sm="24" :lg="24">
- <el-form-item prop="status" label-width="0">
- <el-checkbox-group v-model="screenForm.status" @change="getList()">
- <el-checkbox-button v-for="(item, index) in statusList" :key="index" :label="item.value">{{item.label}}</el-checkbox-button>
- </el-checkbox-group>
- </el-form-item>
- </el-col>
- <el-col :xs="24" :sm="12" :lg="6">
- <el-form-item label="工程订单号" prop="orderNum">
- <el-input v-model="screenForm.orderNum" placeholder="请输入工程订单号"></el-input>
- </el-form-item>
- </el-col>
- <el-col :xs="24" :sm="12" :lg="6">
- <el-form-item label="工程编号" prop="enginNum">
- <el-input v-model="screenForm.enginNum" placeholder="请输入工程编号"></el-input>
- </el-form-item>
- </el-col>
- <el-col :xs="24" :sm="12" :lg="6">
- <el-form-item label="工程信息单号" prop="loginNum">
- <el-input v-model="screenForm.loginNum" placeholder="请输入工程信息单号"></el-input>
- </el-form-item>
- </el-col>
- <el-col :xs="24" :sm="12" :lg="6">
- <el-form-item label="项目名称" prop="enginName">
- <el-input v-model="screenForm.enginName" placeholder="请输入项目名称"></el-input>
- </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"
- range-separator="至"
- style="width: 100%;"
- value-format="yyyy-MM-dd HH:mm:ss"
- start-placeholder="开始日期"
- end-placeholder="结束日期">
- </el-date-picker>
- </el-form-item>
- </el-col>
- <el-col :xs="24" :sm="12" :lg="6">
- <el-form-item label="销售类型" prop="saleType">
- <el-select v-model="screenForm.saleType" placeholder="选择销售类型" style="width: 100%" clearable>
- <el-option v-for="item in salesTypeList" :key="item.id" :label="item.saleName" :value="item.id"></el-option>
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :xs="24" :sm="12" :lg="6">
- <el-form-item label="经销商" prop="dealer">
- <el-input v-model="screenForm.dealer" placeholder="请输入经销商"></el-input>
- </el-form-item>
- </el-col>
- <el-col :xs="24" :sm="12" :lg="6">
- <el-form-item label="制表人" prop="createMan">
- <el-input v-model="screenForm.createMan" placeholder="请输入制表人"></el-input>
- </el-form-item>
- </el-col>
- <el-col :xs="24" :sm="12" :lg="6">
- <el-form-item label="审核人" prop="examineMan">
- <el-input v-model="screenForm.examineMan" placeholder="请输入审核人"></el-input>
- </el-form-item>
- </el-col>
- <el-col :xs="24" :sm="12" :lg="6">
- <el-form-item label="表头业务员" prop="salesMan">
- <el-select v-model="screenForm.salesMan" placeholder="选择表头业务员" clearable filterable style="width: 100%">
- <el-option
- v-for="item in salesmanList"
- :key="item.adminUserId"
- :label="item.nickName"
- :value="item.adminUserId">
- </el-option>
- </el-select>
- </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-input>
- </el-form-item>
- </el-col>
- <el-col :xs="24" :sm="12" :lg="6" class="tr">
- <el-form-item label="">
- <el-button @click="resetScreenForm">清空</el-button>
- <el-button type="primary" @click="submitScreenForm">搜索</el-button>
- </el-form-item>
- </el-col>
- </el-row>
- </el-form>
- </div>
- <div class="mymain-container">
- <div class="btn-group clearfix">
- <div class="fl">
- <el-button size="mini" type="primary" icon="el-icon-plus" @click="toForm()" v-if="$checkBtnRole('add', $route.meta.roles)">新增</el-button>
- <el-button size="mini" type="danger" icon="el-icon-minus" :disabled="multipleSelection.length < 1" @click="batchDelete()" v-if="$checkBtnRole('del', $route.meta.roles)">批量删除</el-button>
- </div>
- <div class="fr">
- <ExportButton :exUrl="'engin-order/export'" :exParams="exParams" />
- </div>
- </div>
- <div class="table">
- <el-table
- v-loading="listLoading"
- :data="dataList"
- element-loading-text="Loading"
- border
- fit
- highlight-current-row
- stripe
- @selection-change="handleSelectionChange"
- show-summary
- :summary-method="$getSummaries">
- <el-table-column align="center" type="selection" width="55"></el-table-column>
- <el-table-column align="left" label="审核状态" prop="examineStatus" min-width="100" show-overflow-tooltip>
- <template slot-scope="scope">
- {{scope.row.examineStatus | statusFilter}}
- </template>
- </el-table-column>
- <el-table-column align="left" label="工程订单号" prop="enginOrderNo" min-width="140" show-overflow-tooltip>
- <template slot-scope="scope">
- <CopyButton :copyText="scope.row.enginOrderNo" />
- <span>{{scope.row.enginOrderNo}}</span>
- </template>
- </el-table-column>
- <el-table-column align="left" label="订单日期" prop="orderDate" min-width="120" show-overflow-tooltip>
- <template slot-scope="scope">
- <div>
- <span>{{scope.row.orderDate | dateToDayFilter}}</span>
- <el-button type="text" icon="el-icon-edit" style="padding: 0; margin-left: 6px" @click="editDate(scope.row)" v-if="$checkBtnRole('date', $route.meta.roles) && (scope.row.examineStatus === 'SAVE' || scope.row.examineStatus === 'WAIT')" ></el-button>
- </div>
- </template>
- </el-table-column>
- <el-table-column align="left" label="工程编号" prop="refProjectNo" min-width="160" show-overflow-tooltip></el-table-column>
- <el-table-column align="left" label="工程信息单号" prop="refEnginRecordNo" min-width="200" show-overflow-tooltip>
- <template slot-scope="scope">
- <CopyButton :copyText="scope.row.refEnginRecordNo" />
- <span>{{scope.row.refEnginRecordNo}}</span>
- </template>
- </el-table-column>
- <el-table-column align="left" label="订单类型" prop="enginOrderType" min-width="100" show-overflow-tooltip>
- <template slot-scope="scope">
- {{scope.row.enginOrderType | typeFilter}}
- </template>
- </el-table-column>
- <el-table-column align="left" label="使用单位" prop="refUseUnit" min-width="160" show-overflow-tooltip></el-table-column>
- <el-table-column align="left" label="项目名称" prop="refProjectName" min-width="160" show-overflow-tooltip></el-table-column>
- <!-- <el-table-column align="left" label="销售类型" prop="saleTypeName" min-width="120" show-overflow-tooltip></el-table-column>-->
- <el-table-column align="left" label="物料编码" prop="materialNumber" min-width="120" show-overflow-tooltip>
- <template slot-scope="scope">
- <CopyButton :copyText="scope.row.materialNumber" />
- <span>{{scope.row.materialNumber}}</span>
- </template>
- </el-table-column>
- <el-table-column align="left" label="产品编码" prop="materialOldNumber" min-width="140" show-overflow-tooltip>
- <template slot-scope="scope">
- <CopyButton :copyText="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>
- <template slot-scope="scope">
- <CopyButton :copyText="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>
- <template slot-scope="scope">
- <CopyButton :copyText="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></el-table-column>
- <el-table-column align="right" label="总数量" prop="qty" min-width="100" sortable show-overflow-tooltip></el-table-column>
- <el-table-column align="left" label="是否直调" prop="isDirectTransfer" min-width="100" show-overflow-tooltip>
- <template slot-scope="scope">
- {{scope.row.isDirectTransfer ? '是':'否'}}
- </template>
- </el-table-column>
- <el-table-column align="right" label="直调数量" prop="directTransferQty" min-width="110" sortable show-overflow-tooltip></el-table-column>
- <el-table-column align="right" label="出库数量" prop="hasSendQty" min-width="110" sortable show-overflow-tooltip></el-table-column>
- <el-table-column align="right" label="单价" prop="price" min-width="100" sortable show-overflow-tooltip>
- <template slot-scope="scope">
- {{scope.row.price | numToFixed}}
- </template>
- </el-table-column>
- <el-table-column align="right" label="实付金额" prop="payAmount" min-width="110" sortable show-overflow-tooltip>
- <template slot-scope="scope">
- {{scope.row.payAmount | numToFixed}}
- </template>
- </el-table-column>
- <el-table-column align="left" label="返利钱包" prop="customerWalletName2" min-width="100" show-overflow-tooltip></el-table-column>
- <el-table-column align="right" label="使用返利金额" prop="rebateAmount" min-width="120" show-overflow-tooltip>
- <template slot-scope="scope">
- <div v-if="scope.row.examineStatus === 'OK'">{{scope.row.payRebateAmount | numToFixed}}</div>
- <div v-else>{{scope.row.rebateAmount | numToFixed}}</div>
- </template>
- </el-table-column>
- <el-table-column align="right" label="格力折扣" prop="discAmount" min-width="110" sortable show-overflow-tooltip>
- <template slot-scope="scope">
- {{ scope.row.discAmount | numToFixed }}
- </template>
- </el-table-column>
- <el-table-column align="left" label="备注" prop="remark" min-width="160" show-overflow-tooltip></el-table-column>
- <el-table-column align="left" label="表头业务员" prop="serviceName" min-width="100" show-overflow-tooltip></el-table-column>
- <el-table-column align="left" label="表体业务员" prop="itemServiceName" min-width="100" show-overflow-tooltip></el-table-column>
- <el-table-column align="left" label="制表人" prop="createBy" min-width="100" show-overflow-tooltip></el-table-column>
- <el-table-column align="left" label="制表日期" prop="createTime" min-width="160" show-overflow-tooltip></el-table-column>
- <el-table-column align="left" label="审核人" prop="confirmBy" min-width="100" show-overflow-tooltip></el-table-column>
- <el-table-column align="left" label="审核日期" prop="confirmTime" min-width="160" show-overflow-tooltip></el-table-column>
- <el-table-column align="center" label="操作" width="220" fixed="right">
- <template slot-scope="scope">
- <el-popconfirm
- style="margin-right: 10px;"
- title="确定申请吗?"
- @onConfirm="handleSubmit(scope.row.parentId)"
- v-if="$checkBtnRole('apply', $route.meta.roles) && scope.row.examineStatus === 'SAVE'" >
- <el-button slot="reference" type="text">申请</el-button>
- </el-popconfirm>
- <el-popconfirm
- style="margin-right: 10px;"
- title="确定撤回吗?"
- @onConfirm="handleWithdraw(scope.row.parentId)"
- v-if="$checkBtnRole('apply', $route.meta.roles) && scope.row.examineStatus === 'WAIT'" >
- <el-button slot="reference" type="text">撤回</el-button>
- </el-popconfirm>
- <el-popconfirm
- style="margin-right: 10px;"
- title="确定弃审吗?"
- @onConfirm="handleAbandon(scope.row.parentId)"
- v-if="$checkBtnRole('examine', $route.meta.roles) && scope.row.examineStatus === 'OK'" >
- <el-button slot="reference" type="text">弃审</el-button>
- </el-popconfirm>
- <el-button
- type="text"
- @click="toForm(scope.row)"
- v-if="$checkBtnRole('edit', $route.meta.roles) && scope.row.examineStatus === 'SAVE'">
- 编辑
- </el-button>
- <el-button
- type="text"
- @click="toExamine(scope.row)"
- v-if="$checkBtnRole('examine', $route.meta.roles) && scope.row.examineStatus === 'WAIT'">
- 审批
- </el-button>
- <el-button
- type="text"
- @click="toReturn(scope.row)"
- v-if="$checkBtnRole('examine', $route.meta.roles)">
- 退订
- </el-button>
- <el-button
- type="text"
- @click="toDetail(scope.row)">
- 详情
- </el-button>
- <el-popconfirm
- style="margin-left: 10px;"
- title="确定删除吗?"
- @onConfirm="handleDelete(scope.row.parentId)"
- v-if="$checkBtnRole('del', $route.meta.roles) && scope.row.examineStatus !== 'OK'">
- <el-button slot="reference" type="text" style="color: #f56c6c;">删除</el-button>
- </el-popconfirm>
- </template>
- </el-table-column>
- </el-table>
- </div>
- </div>
- <div class="pagination clearfix">
- <div class="fr">
- <el-pagination
- @size-change="handleSizeChange"
- @current-change="handleCurrentChange"
- :current-page="currentPage"
- :page-sizes="[10, 20, 30, 50]"
- :page-size="10"
- layout="total, sizes, prev, pager, next, jumper"
- :total="listTotal">
- </el-pagination>
- </div>
- </div>
- </div>
- <EditDateDialog :isShow.sync="isShowEditDateDialog" :dateForm.sync="dateForm" />
- <CommerceDetail :listItem="queryItem" v-if="isShowDetail" @backListFormDetail="backList" />
- <CommerceForm :listItem="queryItem" v-if="isShowForm" @backListFormDetail="backList" />
- <CommerceExamine :listItem="queryItem" v-if="isShowExamine" @backListFormDetail="backList" />
- <CommerceReturn :listItem="queryItem" v-if="isShowReturn" @backListFormDetail="backList" />
- </div>
- </template>
- <script>
- import { getOrderList, applyCom, withdrawCom, deleteCom, editDateCom, abandonCom } from "@/api/supply/engin";
- import { getSalesmanList, getTypeList } from '@/api/common'
- import CommerceDetail from "@/views/supply/engin/components/commerce_detail";
- import CommerceForm from "@/views/supply/engin/components/commerce_form";
- import CommerceExamine from "@/views/supply/engin/components/commerce_examine";
- import CommerceReturn from "@/views/supply/engin/components/commerce_return";
- import EditDateDialog from "@/components/Common/edit-date-dialog";
- let that
- export default {
- components: {
- CommerceDetail,
- CommerceForm,
- CommerceExamine,
- CommerceReturn,
- EditDateDialog,
- },
- filters: {
- statusFilter(val) {
- let obj = that.statusList.find(o => o.value == val);
- return obj ? obj.label : ''
- },
- typeFilter(val) {
- const MAP = {
- TRADE: '商用',
- HOME: '家用',
- }
- return MAP[val];
- }
- },
- data() {
- return {
- currentPage: 1, // 当前页码
- pageSize: 10, // 每页数量
- listTotal: 0, // 列表总数
- dataList: null, // 列表数据
- listLoading: false, // 列表加载loading
- screenForm: { // 筛选表单数据
- status: [],
- orderNum: '',
- enginNum: '',
- loginNum: '',
- enginName: '',
- date: '',
- saleType: '',
- createMan: '',
- examineMan: '',
- salesMan: '',
- dealer: '',
- model: '',
- },
- statusList: [
- { label: '已保存', value: 'SAVE' },
- { label: '待审核', value: 'WAIT' },
- { label: '审核通过', value: 'OK' },
- // // { label: '审核驳回', value: 'FAIL' },,
- { label: '已关闭', value: 'CLOSE' },
- ],
- salesmanList: [],
- salesTypeList: [],
- multipleSelection: [],
- queryItem: {},
- isShowDetail: false,
- isShowForm: false,
- isShowExamine: false,
- isShowReturn: false,
- editId: null,
- isShowEditDateDialog: false,
- dateForm: {
- date: '',
- },
- }
- },
- computed: {
- exParams() {
- let ids = this.multipleSelection.map(item => {
- return item.enginOrderNo;
- });
- return {
- examineStatus: this.screenForm.status.join(','),
- enginOrderNo: (ids && ids.length) ? ids.join(',') : this.screenForm.orderNum,
- refProjectNo: this.screenForm.enginNum,
- refEnginRecordNo: this.screenForm.loginNum,
- refProjectName: this.screenForm.enginName,
- startCreateTime: this.screenForm.date ? this.screenForm.date[0] : '',
- endCreateTime: this.screenForm.date ? this.screenForm.date[1] : '',
- saleTypeId: this.screenForm.saleType,
- createName: this.screenForm.createMan,
- confirmName: this.screenForm.examineMan,
- serviceId: this.screenForm.salesMan,
- customerKeyWord: this.screenForm.dealer,
- specification: this.screenForm.model,
- enginOrderType: 'TRADE', // TRADE=商用 HOME=家用
- }
- },
- },
- beforeCreate() {
- that = this;
- },
- created() {
- this.getSalesTypeList();
- this.getSalesmanList();
- this.getList();
- },
- methods: {
- // 获取业务员列表
- getSalesmanList() {
- getSalesmanList({
- pageNum: 1,
- pageSize: -1,
- isCustomer: 0,
- status: true,
- }).then(res => {
- this.salesmanList = res.data.records;
- })
- },
- // 获取销售类型列表
- getSalesTypeList() {
- getTypeList({
- pageNum: 1,
- pageSize: -1
- }).then((res) => {
- this.salesTypeList = res.data.records;
- })
- },
- // 查询列表
- getList() {
- this.listLoading = true;
- let params = {
- pageNum: this.currentPage,
- pageSize: this.pageSize,
- examineStatus: this.screenForm.status.join(','),
- enginOrderNo: this.screenForm.orderNum,
- refProjectNo: this.screenForm.enginNum,
- refEnginRecordNo: this.screenForm.loginNum,
- refProjectName: this.screenForm.enginName,
- startCreateTime: this.screenForm.date ? this.screenForm.date[0] : '',
- endCreateTime: this.screenForm.date ? this.screenForm.date[1] : '',
- saleTypeId: this.screenForm.saleType,
- createName: this.screenForm.createMan,
- confirmName: this.screenForm.examineMan,
- serviceId: this.screenForm.salesMan,
- customerKeyword: this.screenForm.dealer,
- specification: this.screenForm.model,
- enginOrderType: 'TRADE', // TRADE=商用 HOME=家用
- };
- getOrderList(params).then((res) => {
- res.data.records.forEach(item => {
- item.sums1 = ['qty', 'directTransferQty', 'hasSendQty'];
- item.sums2 = ['price', 'payAmount', 'discAmount'];
- })
- this.dataList = res.data.records;
- this.listTotal = res.data.total;
- this.listLoading = false;
- })
- },
- // 提交筛选表单
- submitScreenForm() {
- this.currentPage = 1;
- this.getList();
- },
- // 重置筛选表单
- 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();
- },
- // 进入表单
- toForm(item) {
- this.queryItem = item;
- this.isShowForm = true;
- },
- // 进入审批
- toExamine(item) {
- this.queryItem = item;
- this.isShowExamine = true;
- },
- // 进入详情
- toDetail(item) {
- this.queryItem = item;
- this.isShowDetail = true;
- },
- // 进入退订
- toReturn(item) {
- this.queryItem = item;
- this.isShowReturn = true;
- },
- backList() {
- this.queryItem = {};
- this.isShowDetail = false;
- this.isShowForm = false;
- this.isShowExamine = false;
- this.isShowReturn = false;
- },
- // 申请
- handleSubmit(id) {
- applyCom({id}).then(res => {
- this.$successMsg();
- this.getList();
- })
- },
- // 撤回
- handleWithdraw(id) {
- withdrawCom({id}).then(res => {
- this.$successMsg();
- this.getList();
- })
- },
- // 弃审
- handleAbandon(id) {
- abandonCom({id}).then(res => {
- this.$successMsg();
- this.getList();
- })
- },
- // 删除
- handleDelete(id) {
- deleteCom({ids: id}).then(res => {
- this.$successMsg();
- this.getList();
- })
- },
- // 批量删除
- batchDelete() {
- this.$confirm('此操作将永久删除, 是否继续?', '提示', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning'
- }).then(() => {
- let ids = this.multipleSelection.map(item => {
- return item.parentId;
- });
- deleteCom({ids: ids.join(',')}).then(res => {
- this.$successMsg();
- this.getList();
- })
- }).catch(() => {});
- },
- handleSelectionChange(val) {
- this.multipleSelection = val;
- },
- // 打开 修改订单日期
- editDate(item) {
- this.editId = item.parentId;
- this.dateForm.date = item.orderDate.slice(0, 10);
- this.isShowEditDateDialog = true;
- },
- // 提交 修改订单日期
- submitDateForm() {
- editDateCom({
- enginOrderId: this.editId,
- orderDate: this.dateForm.date + ' 00:00:00',
- }).then(res => {
- this.isShowEditDateDialog = false;
- this.getList();
- this.$successMsg('修改成功');
- })
- },
- }
- }
- </script>
- <style lang="scss" scoped>
- </style>
|