Browse Source

Merge branch 'dev' of http://47.108.105.48:3000/java_project/logpm_page into dev

dev-warehouse
zhangsiyu 2 years ago
parent
commit
3f73070750
  1. 2
      src/option/distribution/distributionStockArticle.js
  2. 141
      src/option/distribution/distributionStockList.js
  3. 19
      src/router/views/index.js
  4. 2
      src/views/distribution/inventory/delivery/distributionStockArticle.vue
  5. 15
      src/views/distribution/inventory/distributionStockList.vue
  6. 369
      src/views/distribution/inventory/distributionStockListDetails.vue

2
src/option/distribution/distributionStockArticle.js

@ -413,7 +413,7 @@ export default {
},
{
label: "是否齐套",
prop: "completeSet",
prop: "completeSetName",
search: true,
},
{

141
src/option/distribution/distributionStockList.js

@ -89,7 +89,124 @@ export default {
hide: true,
},
{
label: "订单自编号",
label: "货位",
prop: "orderSelfNumbering",
search: true,
},
{
label: "货物名称",
prop: "incomingBatch",
},
{
label: "上架时间",
prop: "descriptionGoods",
},
{
label: "总数",
prop: "cargoNumber",
},
{
label: "在库箱数",
prop: "warehouse",
},
// {
// label: "商场",
// prop: "market",
// },
{
label: "拆包数",
prop: "cargoUnit",
},
],
columnDetails: [
{
label: "租户号",
prop: "tenantId",
display: false,
hide: true,
},
{
label: "创建人",
prop: "createUser",
display: false,
hide: true,
},
{
label: "创建时间",
prop: "createTime",
display: false,
hide: true,
},
{
label: "更新人",
prop: "updateUser",
display: false,
hide: true,
},
{
label: "更新时间",
prop: "updateTime",
display: false,
hide: true,
},
{
label: "状态",
prop: "status",
display: false,
hide: true,
},
{
label: "是否已删除",
prop: "isDeleted",
display: false,
hide: true,
},
{
label: "创建部门",
prop: "createDept",
display: false,
hide: true,
},
{
label: "主键",
prop: "id",
display: false,
hide: true,
},
{
label: "预留1",
prop: "reserve1",
display: false,
hide: true,
},
{
label: "预留2",
prop: "reserve2",
display: false,
hide: true,
},
{
label: "预留3",
prop: "reserve3",
display: false,
hide: true,
},
{
label: "预留4",
prop: "reserve4",
display: false,
hide: true,
},
{
label: "预留5",
prop: "reserve5",
display: false,
hide: true,
},
{
label: "预约单号",
prop: "orderSelfNumbering",
search: true,
},
@ -98,15 +215,15 @@ export default {
// prop: "incomingBatch",
// },
{
label: "货物名称",
label: "所属订单",
prop: "descriptionGoods",
},
{
label: "货物编号",
label: "配送单",
prop: "cargoNumber",
},
{
label: "仓库",
label: "创建时间 ",
prop: "warehouse",
},
// {
@ -114,7 +231,7 @@ export default {
// prop: "market",
// },
{
label: "货物单位",
label: "预约数量",
prop: "cargoUnit",
},
// {
@ -126,22 +243,10 @@ export default {
// prop: "storageLocation",
// },
{
label: "商城名称",
label: "实发数量",
prop: "mallName",
search: true,
},
{
label: "库存数量",
prop: "quantityStock",
},
{
label: "出库数量",
prop: "outboundQuantity",
},
{
label: "发运车次",
prop: "despatch",
},
]
}

19
src/router/views/index.js

@ -586,6 +586,25 @@ export default [
},
],
},
{
path: '/distribution/inventory/distributionStockListDetails',
component: Layout,
redirect: '/inventory/distributionStockListDetails',
children: [
{
path: '/distribution/inventory/distributionStockListDetails',
name: '查询库存品详情',
meta: {
i18n: 'dict',
},
props: route => ({
name: route.query.name,
id: route.query.id
}),
component: () => import('@/views/distribution/inventory/distributionStockListDetails.vue'),
},
],
},
// {
// path: '/distribution/inventory/distributionPrints',
// component: Layout,

2
src/views/distribution/inventory/delivery/distributionStockArticle.vue

@ -464,7 +464,7 @@ export default {
}
let a = await getListOwn(this.page.currentPage,this.page.pageSize,params);
console.log("aaaaaaa===",a.data.data);
// console.log("aaaaaaa===",a.data.data);
if(a.data.data.records.length > 0){
this.$router.push({
path: '/distribution/inventory/distributionStockArticleFrom',

15
src/views/distribution/inventory/distributionStockList.vue

@ -55,8 +55,8 @@
<!-- 操作栏模块 -->
<el-table-column prop="menu" label="操作" :width="220" align="center">
<template #="{row}">
<el-button type="primary" text icon="el-icon-view" @click="handleView(row)">查看</el-button>
<el-button type="primary" text icon="el-icon-edit" @click="handleEdit(row)">编辑</el-button>
<el-button type="primary" text icon="el-icon-view" @click="handleViewDetails(row)">查看</el-button>
<!-- <el-button type="primary" text icon="el-icon-edit" @click="handleEdit(row)">编辑</el-button>-->
<!-- <el-button type="primary" text icon="el-icon-delete" @click="rowDel(row)">删除</el-button>-->
</template>
</el-table-column>
@ -243,6 +243,17 @@ export default {
getDetail(row.id).then(res => {
this.form = res.data.data;
});
},
handleViewDetails (row) {
this.$router.push({
path: '/distribution/inventory/distributionStockListDetails',
query:{
id: row.id,
name: row.mallName+" — 明细"
}
});
},
handleDelete () {
if (this.selectionList.length === 0) {

369
src/views/distribution/inventory/distributionStockListDetails.vue

@ -0,0 +1,369 @@
<template>
<basic-container>
<div class="avue-crud">
<!-- <el-row :hidden="!search" style="padding:6px 18px">-->
<!-- 查询模块 -->
<el-form :model="query" label-width="120px">
<el-row >
<el-col :span="10">
<el-form-item label="订单自编号:" >
<el-input v-model="query.orderSelfNumbering" placeholder="请输入订单自编号" ></el-input>
</el-form-item>
</el-col>
<el-col :span="10">
<el-form-item label="入库批次:">
<el-input v-model="query.mallName" placeholder="请输入商城名称"></el-input>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="10">
<el-form-item label="货物名称:">
<el-input v-model="query.orderSelfNumbering" placeholder="请输入订单自编号"></el-input>
</el-form-item>
</el-col>
<el-col :span="10">
<el-form-item label="货物编码:">
<el-input v-model="query.mallName" placeholder="请输入商城名称"></el-input>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="10">
<el-form-item label="仓库:">
<el-input v-model="query.orderSelfNumbering" placeholder="请输入订单自编号"></el-input>
</el-form-item>
</el-col>
<el-col :span="10">
<el-form-item label="商场:">
<el-input v-model="query.mallName" placeholder="请输入商城名称"></el-input>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="10">
<el-form-item label="货物单位:">
<el-input v-model="query.orderSelfNumbering" placeholder="请输入订单自编号"></el-input>
</el-form-item>
</el-col>
<el-col :span="10">
<el-form-item label="门店:">
<el-input v-model="query.mallName" placeholder="请输入商城名称"></el-input>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="10">
<el-form-item label="库位信息:">
<el-input v-model="query.orderSelfNumbering" placeholder="请输入订单自编号" style="width: 100%"></el-input>
</el-form-item>
</el-col>
<!-- <el-col :span="10">-->
<!-- <el-form-item label="商城名称:">-->
<!-- <el-input v-model="query.mallName" placeholder="请输入商城名称"></el-input>-->
<!-- </el-form-item>-->
<!-- </el-col>-->
</el-row>
<!-- 查询按钮 -->
<!-- <el-form-item>-->
<!-- <el-button type="primary" icon="el-icon-search" @click="searchChange"> </el-button>-->
<!-- <el-button icon="el-icon-delete" @click="searchReset()"> </el-button>-->
<!-- </el-form-item>-->
</el-form>
<el-row>
<!-- 列表模块 -->
<el-tabs
type="card"
class="demo-tabs"
style="width: 100%"
v-model="activeName"
@tab-click="handleClick"
>
<el-tab-pane label="库位库存品" name="first">
<el-table ref="table" v-loading="loading"
@selection-change="selectionChange"
:data="data"
:height="height"
style="width: 100%"
:border="option.border">
<el-table-column type="selection" v-if="option.selection" width="55" align="center"></el-table-column>
<el-table-column type="expand" v-if="option.expand" align="center"></el-table-column>
<el-table-column v-if="option.index" label="序号" type="index" width="70" align="center">
</el-table-column>
<template v-for="(item,index) in option.column">
<!-- table字段 -->
<el-table-column v-if="item.hide!==true"
:prop="item.prop"
:label="item.label"
:width="item.width"
:key="index">
</el-table-column>
</template>
<!-- 操作栏模块 -->
<el-table-column prop="menu" label="操作" :width="220" align="center">
<template #="{row}">
<el-button type="primary" text icon="el-icon-view" @click="handleView(row)">查看</el-button>
<el-button type="primary" text icon="el-icon-edit" @click="handleEdit(row)">编辑</el-button>
<!-- <el-button type="primary" text icon="el-icon-delete" @click="rowDel(row)">删除</el-button>-->
</template>
</el-table-column>
</el-table>
</el-tab-pane>
<el-tab-pane label="出库明细" name="second">
<el-table ref="table" v-loading="loading"
@selection-change="selectionChange"
:data="data"
:height="height"
style="width: 100%"
:border="option.border">
<el-table-column type="selection" v-if="option.selection" width="55" align="center"></el-table-column>
<el-table-column type="expand" v-if="option.expand" align="center"></el-table-column>
<el-table-column v-if="option.index" label="序号" type="index" width="70" align="center">
</el-table-column>
<template v-for="(item,index) in option.columnDetails">
<!-- table字段 -->
<el-table-column v-if="item.hide!==true"
:prop="item.prop"
:label="item.label"
:width="item.width"
:key="index">
</el-table-column>
</template>
<!-- 操作栏模块 -->
<el-table-column prop="menu" label="操作" :width="220" align="center">
<template #="{row}">
<el-button type="primary" text icon="el-icon-view" @click="handleView(row)">查看</el-button>
<el-button type="primary" text icon="el-icon-edit" @click="handleEdit(row)">编辑</el-button>
<!-- <el-button type="primary" text icon="el-icon-delete" @click="rowDel(row)">删除</el-button>-->
</template>
</el-table-column>
</el-table>
</el-tab-pane>
</el-tabs>
</el-row>
<el-row>
<div class="avue-crud__pagination" style="width:100%">
<!-- 分页模块 -->
<el-pagination align="right"
background
@size-change="sizeChange"
@current-change="currentChange"
:current-page="page.currentPage"
:page-sizes="[10, 20, 30, 40, 50, 100]"
:page-size="page.pageSize"
layout="total, sizes, prev, pager, next, jumper"
:total="page.total">
</el-pagination>
</div>
</el-row>
</div>
</basic-container>
</template>
<script>
import { getList, getDetail, add, update, remove } from "@/api/distribution/distributionStockList";
import option from "@/option/distribution/distributionStockList";
import { mapGetters } from "vuex";
export default {
data () {
return {
height: 0,
activeName: 'first',
//
title: '',
//
box: false,
//
search: true,
//
loading: true,
//
view: false,
//
query: {},
//
page: {
currentPage: 1,
pageSize: 10,
total: 40
},
//
form: {},
//
selectionList: [],
//
option: option,
//
data: [],
}
},
mounted () {
this.init();
this.onLoad(this.page);
},
computed: {
...mapGetters(["permission"]),
ids () {
let ids = [];
this.selectionList.forEach(ele => {
ids.push(ele.id);
});
return ids.join(",");
}
},
methods: {
handleClick (tab, event) {
console.log(tab, event)
},
init () {
this.height = this.setPx(document.body.clientHeight - 340);
},
searchHide () {
this.search = !this.search;
},
searchChange () {
this.onLoad(this.page);
},
searchReset () {
this.query = {};
this.page.currentPage = 1;
this.onLoad(this.page);
},
handleSubmit () {
if (!this.form.id) {
add(this.form).then(() => {
this.box = false;
this.onLoad(this.page);
this.$message({
type: "success",
message: "操作成功!"
});
});
} else {
update(this.form).then(() => {
this.box = false;
this.onLoad(this.page);
this.$message({
type: "success",
message: "操作成功!"
});
})
}
},
handleAdd () {
this.title = '新增'
this.form = {}
this.box = true
},
handleEdit (row) {
this.title = '编辑'
this.box = true
getDetail(row.id).then(res => {
this.form = res.data.data;
});
},
handleView (row) {
this.title = '查看'
this.view = true;
this.box = true;
getDetail(row.id).then(res => {
this.form = res.data.data;
});
},
handleDelete () {
if (this.selectionList.length === 0) {
this.$message.warning("请选择至少一条数据");
return;
}
this.$confirm("确定将选择数据删除?", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning"
})
.then(() => {
return remove(this.ids);
})
.then(() => {
this.selectionClear();
this.onLoad(this.page);
this.$message({
type: "success",
message: "操作成功!"
});
});
},
rowDel (row) {
this.$confirm("确定将选择数据删除?", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning"
})
.then(() => {
return remove(row.id);
})
.then(() => {
this.onLoad(this.page);
this.$message({
type: "success",
message: "操作成功!"
});
});
},
beforeClose (done) {
done()
this.form = {};
this.view = false;
},
selectionChange (list) {
this.selectionList = list;
},
selectionClear () {
this.selectionList = [];
this.$refs.table.clearSelection();
},
currentChange (currentPage) {
this.page.currentPage = currentPage;
this.onLoad(this.page);
},
sizeChange (pageSize) {
this.page.pageSize = pageSize;
this.onLoad(this.page);
},
onLoad (page, params = {}) {
this.loading = true;
getList(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(res => {
const data = res.data.data;
this.page.total = data.total;
this.data = data.records;
this.loading = false;
this.selectionClear();
});
}
}
};
</script>
<style>
.el-form-item .el-input {
width: 100%;
}
el-select{
width: 100%;
}
</style>
Loading…
Cancel
Save