|
|
@@ -1,86 +1,142 @@
|
|
|
<template>
|
|
|
- <div class="app-container calendar-list-container">
|
|
|
- <!-- 查询和其他操作 -->
|
|
|
- <div class="filter-container">
|
|
|
- <el-date-picker v-model="listQuery.startDate" value-format="yyyy-MM-dd" type="date" placeholder="开始日期"
|
|
|
- class="filter-item" style="width:200px">
|
|
|
- </el-date-picker>
|
|
|
- <el-date-picker v-model="listQuery.endDate" value-format="yyyy-MM-dd" type="date" placeholder="结束日期"
|
|
|
- class="filter-item" style="width:200px">
|
|
|
- </el-date-picker>
|
|
|
- <treeselect class="filter-item" default-expand-all v-model="listQuery.requireDepartmentId" :options="deptOptions"
|
|
|
- :normalizer="normalizer" placeholder="出库部门" style="width: 200px" />
|
|
|
- <el-select v-model="listQuery.storeId" clearable placeholder="门店" class="filter-item" style="width: 200px">
|
|
|
- <el-option :key="item.id" v-for="item in storeList" :label="item.storeName" :value="item.id">
|
|
|
- </el-option>
|
|
|
- </el-select>
|
|
|
- <el-select v-model="listQuery.warehouseId" clearable filterable placeholder="仓库" class="filter-item" style="width: 200px">
|
|
|
- <el-option :key="item.id" v-for="item in warehouseList" :label="item.warehouseName" :value="item.id">
|
|
|
- </el-option>
|
|
|
- </el-select>
|
|
|
-
|
|
|
- <el-select v-model="listQuery.isRunFinish" clearable placeholder="发货状态" class="filter-item" style="width: 200px">
|
|
|
- <el-option :key="item.type" v-for="item in typeList" :label="item.name" :value="item.type">
|
|
|
- </el-option>
|
|
|
- </el-select>
|
|
|
- <el-button class="filter-item" type="primary" v-waves icon="el-icon-search" @click="handleFilter">查找</el-button>
|
|
|
- <el-button class="filter-item" v-waves icon="el-icon-refresh" @click="resetQuery">重置</el-button>
|
|
|
- <el-button class="filter-item" type="primary" @click="handleCreate" icon="el-icon-plus">添加</el-button>
|
|
|
- <el-button class="filter-item" v-waves icon="el-icon-download"
|
|
|
- @click="handleDownload">导出</el-button>
|
|
|
- <!-- <el-button class="filter-item" type="success" icon="el-icon-takeaway-box" @click="executeAll">批量发货</el-button> -->
|
|
|
- <el-button class="filter-item" type="warning" icon="el-icon-delete" @click="delAll">批量删除</el-button>
|
|
|
- </div>
|
|
|
+ <div class="app-container">
|
|
|
+ <!-- 查询表单区域 -->
|
|
|
+ <el-form :model="listQuery" size="small" :inline="true" label-position="top">
|
|
|
+ <el-row :gutter="20">
|
|
|
+ <el-col :span="6">
|
|
|
+ <el-form-item label="开始日期">
|
|
|
+ <el-date-picker v-model="listQuery.startDate" value-format="yyyy-MM-dd" type="date"
|
|
|
+ placeholder="开始日期" style="width: 100%">
|
|
|
+ </el-date-picker>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="6">
|
|
|
+ <el-form-item label="结束日期">
|
|
|
+ <el-date-picker v-model="listQuery.endDate" value-format="yyyy-MM-dd" type="date"
|
|
|
+ placeholder="结束日期" style="width: 100%">
|
|
|
+ </el-date-picker>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="6">
|
|
|
+ <el-form-item label="出库部门">
|
|
|
+ <treeselect v-model="listQuery.requireDepartmentId" :options="deptOptions"
|
|
|
+ :normalizer="normalizer" placeholder="出库部门" style="width: 100%" />
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="6">
|
|
|
+ <el-form-item label="门店">
|
|
|
+ <el-select v-model="listQuery.storeId" clearable
|
|
|
+ placeholder="门店" style="width: 100%">
|
|
|
+ <el-option :key="item.id" v-for="item in storeList"
|
|
|
+ :label="item.storeName" :value="item.id">
|
|
|
+ </el-option>
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ </el-row>
|
|
|
+
|
|
|
+ <el-row :gutter="20">
|
|
|
+ <el-col :span="6">
|
|
|
+ <el-form-item label="仓库">
|
|
|
+ <el-select v-model="listQuery.warehouseId" clearable filterable
|
|
|
+ placeholder="仓库" style="width: 100%">
|
|
|
+ <el-option :key="item.id" v-for="item in warehouseList"
|
|
|
+ :label="item.warehouseName" :value="item.id">
|
|
|
+ </el-option>
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="6">
|
|
|
+ <el-form-item label="发货状态">
|
|
|
+ <el-select v-model="listQuery.isRunFinish" clearable
|
|
|
+ placeholder="发货状态" style="width: 100%">
|
|
|
+ <el-option :key="item.type" v-for="item in typeList"
|
|
|
+ :label="item.name" :value="item.type">
|
|
|
+ </el-option>
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ </el-row>
|
|
|
+ <el-row :gutter="20">
|
|
|
+ <el-col :span="6">
|
|
|
+ <el-form-item label="搜索">
|
|
|
+ <el-button style="width: 100%;" type="primary" icon="el-icon-search"
|
|
|
+ @click="handleFilter">搜索</el-button>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="6">
|
|
|
+ <el-form-item label="重置">
|
|
|
+ <el-button style="width: 100%;" icon="el-icon-refresh" type="primary"
|
|
|
+ @click="resetQuery">重置</el-button>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ </el-row>
|
|
|
+ </el-form>
|
|
|
+
|
|
|
+ <!-- 操作按钮区域 -->
|
|
|
+ <el-row :gutter="10" class="mb8">
|
|
|
+ <el-col :span="1.5">
|
|
|
+ <el-button type="primary" class="editButton" size="small"
|
|
|
+ icon="el-icon-plus" @click="handleCreate">添加</el-button>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="1.5">
|
|
|
+ <el-button type="warning" icon="el-icon-download" size="small"
|
|
|
+ @click="handleDownload">导出</el-button>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="1.5">
|
|
|
+ <el-button type="danger" icon="el-icon-delete" size="small"
|
|
|
+ @click="delAll">批量删除</el-button>
|
|
|
+ </el-col>
|
|
|
+ </el-row>
|
|
|
|
|
|
- <!-- 查询结果 -->
|
|
|
- <el-table size="small" :data="list" @selection-change="handleSelectionChange" v-loading="listLoading"
|
|
|
- element-loading-text="正在查询中。。。" border fit highlight-current-row>
|
|
|
- <el-table-column type="selection" width="55px" align="center"> </el-table-column>
|
|
|
- <el-table-column type="index" label="序号" header-align="center" align="center">
|
|
|
- </el-table-column>
|
|
|
- <el-table-column align="center" min-width="150px" label="出库单号">
|
|
|
- <template slot-scope="scope">
|
|
|
- <router-link :to="{ name: 'retrievalDetail', params: { id: scope.row.id } }">
|
|
|
- <div style="color: #337ab7;cursor: pointer;">{{ scope.row.serialCode }}</div>
|
|
|
- </router-link>
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column align="center" min-width="100px" label="出库时间" prop="serialDate">
|
|
|
- </el-table-column>
|
|
|
- <el-table-column align="center" min-width="100px" label="出库部门" prop="requireDepartmentName">
|
|
|
- </el-table-column>
|
|
|
- <el-table-column align="center" min-width="100px" label="门店" prop="storeName">
|
|
|
- </el-table-column>
|
|
|
- <el-table-column align="center" min-width="100px" label="仓库" prop="warehouseName">
|
|
|
- </el-table-column>
|
|
|
- <el-table-column align="center" min-width="100px" label="经手人" prop="outHandlerName">
|
|
|
- </el-table-column>
|
|
|
- <el-table-column align="center" min-width="100px" label="发货状态">
|
|
|
- <template slot-scope="props">
|
|
|
+ <!-- 表格区域 -->
|
|
|
+ <div class="border-card">
|
|
|
+ <el-table height="450" size="small" :data="list" @selection-change="handleSelectionChange"
|
|
|
+ v-loading="listLoading" element-loading-text="正在查询中。。。" border fit highlight-current-row>
|
|
|
+ <el-table-column type="selection" width="55px" align="center"></el-table-column>
|
|
|
+ <el-table-column type="index" label="序号" header-align="center" align="center"></el-table-column>
|
|
|
+ <el-table-column align="center" min-width="150px" label="出库单号">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <router-link :to="{ name: 'retrievalDetail', params: { id: scope.row.id } }">
|
|
|
+ <div style="color: #337ab7;cursor: pointer;">{{ scope.row.serialCode }}</div>
|
|
|
+ </router-link>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column align="center" min-width="100px" label="出库时间" prop="serialDate"></el-table-column>
|
|
|
+ <el-table-column align="center" min-width="100px" label="出库部门" prop="requireDepartmentName"></el-table-column>
|
|
|
+ <el-table-column align="center" min-width="100px" label="门店" prop="storeName"></el-table-column>
|
|
|
+ <el-table-column align="center" min-width="100px" label="仓库" prop="warehouseName"></el-table-column>
|
|
|
+ <el-table-column align="center" min-width="100px" label="经手人" prop="outHandlerName"></el-table-column>
|
|
|
+ <el-table-column align="center" min-width="100px" label="发货状态">
|
|
|
+ <template slot-scope="props">
|
|
|
<span v-if="props.row.isRunFinish == '0'" style="color: #67C23A;font-weight: bold;">已发货</span>
|
|
|
<span v-if="props.row.isRunFinish == '1'" style="color: #E6A23C;font-weight: bold;">待发货</span>
|
|
|
<span v-if="props.row.isRunFinish == '2'" style="color: #E6A23C;font-weight: bold;">已作废</span>
|
|
|
</template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column align="center" label="操作" width="240px" class-name="small-padding fixed-width">
|
|
|
- <template slot-scope="scope">
|
|
|
- <el-button v-if="scope.row.isRunFinish == '1'" type="success" size="small" @click="handleExecute(scope.row)">发货</el-button>
|
|
|
- <el-button v-if="scope.row.isRunFinish == '1'" type="primary" size="small" @click="handleUpdate(scope.row)">编辑</el-button>
|
|
|
- <el-button v-if="scope.row.isRunFinish != '0'" type="danger" size="small"
|
|
|
- @click="handleDelete(scope.row)">删除</el-button>
|
|
|
- <el-button v-if="scope.row.isRunFinish == '0'" type="warning" size="small"
|
|
|
- @click="handleCancelShow(scope.row.id)">作废</el-button>
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- </el-table>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column align="center" label="操作" width="240px" class-name="small-padding fixed-width">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <el-button v-if="scope.row.isRunFinish == '1'" type="text" icon="el-icon-success"
|
|
|
+ class="openText" size="small" @click="handleExecute(scope.row)">发货</el-button>
|
|
|
+ <el-button v-if="scope.row.isRunFinish == '1'" type="text" icon="el-icon-edit"
|
|
|
+ class="editText" size="small" @click="handleUpdate(scope.row)">编辑</el-button>
|
|
|
+ <el-button v-if="scope.row.isRunFinish != '0'" type="text" icon="el-icon-delete"
|
|
|
+ class="deleteText" size="small" @click="handleDelete(scope.row)">删除</el-button>
|
|
|
+ <el-button v-if="scope.row.isRunFinish == '0'" type="text" icon="el-icon-close"
|
|
|
+ class="closeText" size="small" @click="handleCancelShow(scope.row.id)">作废</el-button>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ </el-table>
|
|
|
|
|
|
- <!-- 分页 -->
|
|
|
- <div class="pagination-container">
|
|
|
- <el-pagination background @size-change="handleSizeChange" @current-change="handleCurrentChange"
|
|
|
- :current-page="listQuery.page" :page-sizes="[10, 20, 30, 50]" :page-size="listQuery.limit"
|
|
|
- layout="total, sizes, prev, pager, next, jumper" :total="total">
|
|
|
- </el-pagination>
|
|
|
+ <!-- 分页 -->
|
|
|
+ <div class="pagination-container">
|
|
|
+ <el-pagination background @size-change="handleSizeChange" @current-change="handleCurrentChange"
|
|
|
+ :current-page="listQuery.page" :page-sizes="[10, 20, 30, 50]" :page-size="listQuery.limit"
|
|
|
+ layout="total, sizes, prev, pager, next, jumper" :total="total">
|
|
|
+ </el-pagination>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
+
|
|
|
<!-- 作废原因对话框 -->
|
|
|
<el-dialog :close-on-click-modal="false" title="单据作废" :visible.sync="dialogFormVisible" width="40%">
|
|
|
<el-form :rules="rules" ref="dataForm" :model="dataForm" status-icon label-position="left" label-width="80px">
|
|
|
@@ -95,18 +151,17 @@
|
|
|
</el-dialog>
|
|
|
</div>
|
|
|
</template>
|
|
|
+
|
|
|
<script>
|
|
|
-import { listRetrieval, deleteRetrieval, executeRetrieval,cancelRetrieval } from "@/api/retrieval";
|
|
|
+import { listRetrieval, deleteRetrieval, executeRetrieval, cancelRetrieval } from "@/api/retrieval";
|
|
|
import { storeList } from "@/api/store";
|
|
|
import { warehouseList } from "@/api/warehouse";
|
|
|
import { listDept } from "@/api/dept";
|
|
|
import Treeselect from "@riophae/vue-treeselect";
|
|
|
import "@riophae/vue-treeselect/dist/vue-treeselect.css";
|
|
|
-import waves from "@/directive/waves"; // 水波纹指令
|
|
|
|
|
|
export default {
|
|
|
components: { Treeselect },
|
|
|
- directives: { waves },
|
|
|
data() {
|
|
|
return {
|
|
|
cancelId: '',
|
|
|
@@ -117,27 +172,15 @@ export default {
|
|
|
rules: {
|
|
|
cancelMsg: [{ required: true, message: "作废原因不能为空", trigger: "blur" }],
|
|
|
},
|
|
|
- // 树选项
|
|
|
deptOptions: [],
|
|
|
storeList: [],
|
|
|
warehouseList: [],
|
|
|
typeList: [
|
|
|
- {
|
|
|
- type: '0',
|
|
|
- name: "已发货",
|
|
|
- },
|
|
|
- {
|
|
|
- type: '1',
|
|
|
- name: "待发货",
|
|
|
- },
|
|
|
- {
|
|
|
- type: '2',
|
|
|
- name: "已作废",
|
|
|
- },
|
|
|
- ],
|
|
|
- list: [
|
|
|
-
|
|
|
+ { type: '0', name: "已发货" },
|
|
|
+ { type: '1', name: "待发货" },
|
|
|
+ { type: '2', name: "已作废" },
|
|
|
],
|
|
|
+ list: [],
|
|
|
delarr: [],
|
|
|
multipleSelection: [],
|
|
|
total: 0,
|
|
|
@@ -147,7 +190,7 @@ export default {
|
|
|
limit: 10,
|
|
|
startDate: '',
|
|
|
endDate: '',
|
|
|
- responsibleDept: undefined,
|
|
|
+ requireDepartmentId: undefined,
|
|
|
storeId: '',
|
|
|
warehouseId: '',
|
|
|
isRunFinish: '',
|
|
|
@@ -184,97 +227,80 @@ export default {
|
|
|
});
|
|
|
}
|
|
|
})
|
|
|
-
|
|
|
},
|
|
|
getListDept() {
|
|
|
- listDept().then(response => {
|
|
|
- this.deptOptions = this.handleTree(response.data.data, "deptId");
|
|
|
- });
|
|
|
- },
|
|
|
- /** 转换部门数据结构 */
|
|
|
- normalizer(node) {
|
|
|
- if (node.children && !node.children.length) {
|
|
|
- delete node.children;
|
|
|
- }
|
|
|
- return {
|
|
|
- id: node.deptId,
|
|
|
- label: node.deptName,
|
|
|
- children: node.children
|
|
|
- };
|
|
|
- },
|
|
|
- /** 获取仓库列表数据 */
|
|
|
+ listDept().then(response => {
|
|
|
+ this.deptOptions = this.handleTree(response.data.data, "deptId");
|
|
|
+ });
|
|
|
+ },
|
|
|
+ normalizer(node) {
|
|
|
+ if (node.children && !node.children.length) {
|
|
|
+ delete node.children;
|
|
|
+ }
|
|
|
+ return {
|
|
|
+ id: node.deptId,
|
|
|
+ label: node.deptName,
|
|
|
+ children: node.children
|
|
|
+ };
|
|
|
+ },
|
|
|
getStoreList() {
|
|
|
storeList().then(response => {
|
|
|
this.storeList = response.data.data;
|
|
|
}).catch(() => { });
|
|
|
},
|
|
|
- /** 获取仓库列表数据 */
|
|
|
getWarehouseList() {
|
|
|
warehouseList().then(response => {
|
|
|
this.warehouseList = response.data.data;
|
|
|
}).catch(() => { });
|
|
|
},
|
|
|
- /** 重置按钮操作 */
|
|
|
resetQuery() {
|
|
|
this.listQuery = {
|
|
|
- page: 1,
|
|
|
- limit: 10,
|
|
|
page: 1,
|
|
|
limit: 10,
|
|
|
startDate: '',
|
|
|
endDate: '',
|
|
|
- responsibleDept: undefined,
|
|
|
+ requireDepartmentId: undefined,
|
|
|
storeId: '',
|
|
|
warehouseId: '',
|
|
|
isRunFinish: '',
|
|
|
- },
|
|
|
- this.getList()
|
|
|
+ };
|
|
|
+ this.getList();
|
|
|
},
|
|
|
handleDownload() {
|
|
|
window.location.href = process.env.BASE_API + '/warehouse-out/export';
|
|
|
},
|
|
|
handleCreate() {
|
|
|
- this.$router.push({
|
|
|
- name: 'retrievalAdd',
|
|
|
- // params: { callback: this.getList }
|
|
|
- })
|
|
|
+ this.$router.push({ name: 'retrievalAdd' });
|
|
|
},
|
|
|
getList() {
|
|
|
- this.listLoading = true
|
|
|
+ this.listLoading = true;
|
|
|
listRetrieval(this.listQuery).then(response => {
|
|
|
- this.list = response.data.data.items
|
|
|
- this.total = response.data.data.total
|
|
|
- this.listLoading = false
|
|
|
+ this.list = response.data.data.items;
|
|
|
+ this.total = response.data.data.total;
|
|
|
+ this.listLoading = false;
|
|
|
}).catch(() => {
|
|
|
- this.list = []
|
|
|
- this.total = 0
|
|
|
- this.listLoading = false
|
|
|
- })
|
|
|
+ this.list = [];
|
|
|
+ this.total = 0;
|
|
|
+ this.listLoading = false;
|
|
|
+ });
|
|
|
},
|
|
|
-
|
|
|
handleFilter() {
|
|
|
- this.listQuery.page = 1
|
|
|
- this.getList()
|
|
|
+ this.listQuery.page = 1;
|
|
|
+ this.getList();
|
|
|
},
|
|
|
-
|
|
|
handleSizeChange(val) {
|
|
|
- this.listQuery.limit = val
|
|
|
- this.getList()
|
|
|
+ this.listQuery.limit = val;
|
|
|
+ this.getList();
|
|
|
},
|
|
|
-
|
|
|
handleCurrentChange(val) {
|
|
|
- this.listQuery.page = val
|
|
|
- this.getList()
|
|
|
+ this.listQuery.page = val;
|
|
|
+ this.getList();
|
|
|
},
|
|
|
-
|
|
|
handleUpdate(row) {
|
|
|
- this.$router.push({
|
|
|
- name: 'retrievalEdit',
|
|
|
- params: { id: row.id }
|
|
|
- })
|
|
|
+ this.$router.push({ name: 'retrievalEdit', params: { id: row.id } });
|
|
|
},
|
|
|
handleExecute(row) {
|
|
|
- this.$confirm('确认发货吗?', '提示', {
|
|
|
+ this.$confirm('确认发货吗?', '提示', {
|
|
|
confirmButtonText: '确定',
|
|
|
cancelButtonText: '取消',
|
|
|
type: 'warning'
|
|
|
@@ -285,15 +311,15 @@ export default {
|
|
|
message: '发货成功',
|
|
|
type: 'success',
|
|
|
duration: 2000
|
|
|
- })
|
|
|
- this.getList()
|
|
|
- })
|
|
|
- }).catch(() => { })
|
|
|
+ });
|
|
|
+ this.getList();
|
|
|
+ });
|
|
|
+ }).catch(() => { });
|
|
|
},
|
|
|
executeAll() {
|
|
|
const length = this.multipleSelection.length;
|
|
|
if (length > 0) {
|
|
|
- this.$confirm("确认发货吗?", "提示", {
|
|
|
+ this.$confirm("确认发货吗?", "提示", {
|
|
|
confirmButtonText: "确定",
|
|
|
cancelButtonText: "取消",
|
|
|
type: "warning",
|
|
|
@@ -310,8 +336,8 @@ export default {
|
|
|
duration: 2000,
|
|
|
});
|
|
|
this.getList();
|
|
|
- })
|
|
|
- })
|
|
|
+ });
|
|
|
+ });
|
|
|
} else {
|
|
|
this.$notify({
|
|
|
title: "提示",
|
|
|
@@ -321,7 +347,7 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
handleDelete(row) {
|
|
|
- this.$confirm('确认删除吗?', '提示', {
|
|
|
+ this.$confirm('确认删除吗?', '提示', {
|
|
|
confirmButtonText: '确定',
|
|
|
cancelButtonText: '取消',
|
|
|
type: 'warning'
|
|
|
@@ -332,15 +358,15 @@ export default {
|
|
|
message: '删除成功',
|
|
|
type: 'success',
|
|
|
duration: 2000
|
|
|
- })
|
|
|
- this.getList()
|
|
|
- })
|
|
|
- }).catch(() => { })
|
|
|
+ });
|
|
|
+ this.getList();
|
|
|
+ });
|
|
|
+ }).catch(() => { });
|
|
|
},
|
|
|
delAll() {
|
|
|
const length = this.multipleSelection.length;
|
|
|
if (length > 0) {
|
|
|
- this.$confirm("确认删除吗?", "提示", {
|
|
|
+ this.$confirm("确认删除吗?", "提示", {
|
|
|
confirmButtonText: "确定",
|
|
|
cancelButtonText: "取消",
|
|
|
type: "warning",
|
|
|
@@ -357,8 +383,8 @@ export default {
|
|
|
duration: 2000,
|
|
|
});
|
|
|
this.getList();
|
|
|
- })
|
|
|
- })
|
|
|
+ });
|
|
|
+ });
|
|
|
} else {
|
|
|
this.$notify({
|
|
|
title: "提示",
|