Browse Source

修改库存品部分展示

fix_bug_pro20231227
caoyizhong 2 years ago
parent
commit
6083fb0f86
  1. 50
      src/api/distribution/distributionSignPrint.js
  2. 12
      src/api/distribution/distributionStockList.js
  3. 98
      src/option/distribution/distributionSignPrint.js
  4. 300
      src/views/distribution/inventory/distributionSignPrint.vue
  5. 24
      src/views/distribution/inventory/distributionStockList.vue
  6. 15
      src/views/distribution/inventory/distributionStockListDetails.vue
  7. 24
      src/views/distribution/inventory/distributionStockListDiscuss.vue
  8. 24
      src/views/distribution/inventory/distributionStockListMarket.vue
  9. 24
      src/views/distribution/inventory/distributionStockListSelf.vue
  10. 4
      src/views/warehouse/warehousingentry/warehouseWarehousingEntry.vue

50
src/api/distribution/distributionSignPrint.js

@ -0,0 +1,50 @@
import request from '@/axios';
export const getList = (current, size, params) => {
return request({
url: '/api/logpm-distribution/distributionSignPrint/list',
method: 'get',
params: {
...params,
current,
size,
}
})
}
export const getDetail = (id) => {
return request({
url: '/api/logpm-distribution/distributionSignPrint/detail',
method: 'get',
params: {
id
}
})
}
export const remove = (ids) => {
return request({
url: '/api/logpm-distribution/distributionSignPrint/remove',
method: 'post',
params: {
ids,
}
})
}
export const add = (row) => {
return request({
url: '/api/logpm-distribution/distributionSignPrint/submit',
method: 'post',
data: row
})
}
export const update = (row) => {
return request({
url: '/api/logpm-distribution/distributionSignPrint/submit',
method: 'post',
data: row
})
}

12
src/api/distribution/distributionStockList.js

@ -12,6 +12,18 @@ export const getList = (current, size, params) => {
})
}
export const getListAllocation = (current, size, params) => {
return request({
url: '/api/logpm-distribution/distributionStockList/listAllocation',
method: 'get',
params: {
...params,
current,
size,
}
})
}
export const getStockListOwn = (current, size, params) => {
return request({
url: '/api/logpm-distribution/distributionStockList/listOwn',

98
src/option/distribution/distributionSignPrint.js

@ -0,0 +1,98 @@
export default {
expand: false,
index: true,
border: true,
selection: true,
column: [
{
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",
},
{
label: "预留2",
prop: "reserve2",
},
{
label: "预留3",
prop: "reserve3",
},
{
label: "预留4",
prop: "reserve4",
},
{
label: "预留5",
prop: "reserve5",
},
{
label: "类型",
prop: "type",
},
{
label: "名称",
prop: "name",
},
{
label: "路径",
prop: "urlRoute",
},
{
label: "预约id",
prop: "reservationId",
},
]
}

300
src/views/distribution/inventory/distributionSignPrint.vue

@ -0,0 +1,300 @@
<template>
<basic-container>
<div class="avue-crud">
<el-row :hidden="!search" style="padding:6px 18px">
<!-- 查询模块 -->
<el-form :inline="true" :model="query">
<!-- 查询按钮 -->
<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-row>
<div class="avue-crud__header">
<!-- 头部左侧按钮模块 -->
<div class="avue-crud__left">
<el-button type="primary" icon="el-icon-plus" @click="handleAdd"> </el-button>
<el-button type="danger" icon="el-icon-delete" @click="handleDelete" plain> </el-button>
</div>
<!-- 头部右侧按钮模块 -->
<div class="avue-crud__right">
<el-button icon="el-icon-refresh" @click="searchChange" circle></el-button>
<el-button icon="el-icon-search" @click="searchHide" circle></el-button>
</div>
</div>
</el-row>
<el-row>
<!-- 列表模块 -->
<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="50" 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-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>
<!-- 表单模块 -->
<el-dialog :title="title"
v-model="box"
width="50%"
:before-close="beforeClose"
append-to-body>
<el-form :disabled="view" ref="form" :model="form" label-width="80px">
<!-- 表单字段 -->
<el-form-item label="预留1" prop="reserve1">
<el-input v-model="form.reserve1" placeholder="请输入预留1"/>
</el-form-item>
<el-form-item label="预留2" prop="reserve2">
<el-input v-model="form.reserve2" placeholder="请输入预留2"/>
</el-form-item>
<el-form-item label="预留3" prop="reserve3">
<el-input v-model="form.reserve3" placeholder="请输入预留3"/>
</el-form-item>
<el-form-item label="预留4" prop="reserve4">
<el-input v-model="form.reserve4" placeholder="请输入预留4"/>
</el-form-item>
<el-form-item label="预留5" prop="reserve5">
<el-input v-model="form.reserve5" placeholder="请输入预留5"/>
</el-form-item>
<el-form-item label="类型" prop="type">
<el-input v-model="form.type" placeholder="请输入类型"/>
</el-form-item>
<el-form-item label="名称" prop="name">
<el-input v-model="form.name" placeholder="请输入名称"/>
</el-form-item>
<el-form-item label="路径" prop="urlRoute">
<el-input v-model="form.urlRoute" placeholder="请输入路径"/>
</el-form-item>
<el-form-item label="预约id" prop="reservationId">
<el-input v-model="form.reservationId" placeholder="请输入预约id"/>
</el-form-item>
</el-form>
<!-- 表单按钮 -->
<template #footer>
<span v-if="!view" class="dialog-footer">
<el-button type="primary" icon="el-icon-circle-check" @click="handleSubmit"> </el-button>
<el-button icon="el-icon-circle-close" @click="box = false"> </el-button>
</span>
</template>
</el-dialog>
</div>
</basic-container>
</template>
<script>
import { getList, getDetail, add, update, remove } from "@/api/distribution/distributionSignPrint";
import option from "@/option/distribution/distributionSignPrint";
import { mapGetters } from "vuex";
export default {
data () {
return {
height: 0,
//
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: {
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>

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

@ -379,8 +379,8 @@ export default {
sortable: true,
},
// {
// prop: 'warehouse',
// label: '',
// prop: 'despatch',
// label: '',
// type: 2,
// values: '',
// width: '130',
@ -388,16 +388,6 @@ export default {
// fixed: false,
// sortable: true,
// },
{
prop: 'despatch',
label: '物流车次',
type: 2,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'incomingBatch',
label: '入库批次',
@ -538,6 +528,16 @@ export default {
fixed: false,
sortable: true,
},
{
prop: 'packageNum',
label: '包装数量',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'unpackingQuantity',
label: '拆包数量',

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

@ -217,7 +217,7 @@
</template>
<script>
import { getList, getDetail, add, update, remove } from "@/api/distribution/distributionStockList";
import { getList, getDetail, add, update, remove, getListAllocation } from '@/api/distribution/distributionStockList';
import option from "@/option/distribution/distributionStockList";
import { mapGetters } from "vuex";
import { getListStock } from '@/api/distribution/distributionStock';
@ -317,7 +317,7 @@ export default {
// fixed: true,
// },
{
prop: 'storageLocation',
prop: 'allocationTitle',
label: '货位',
type: 2,
values: '',
@ -328,7 +328,7 @@ export default {
head: false,
},
{
prop: 'descriptionGoods',
prop: 'marketName',
label: '货物名称',
type: 2,
values: '',
@ -339,7 +339,7 @@ export default {
head: false,
},
{
prop: 'groundingTime',
prop: 'createTime',
label: '上架时间',
type: 2,
values: '',
@ -361,8 +361,8 @@ export default {
head: false,
},
{
prop: 'licensePlate',
label: '车牌',
prop: 'num',
label: '货位数',
type: 2,
values: '',
width: '150',
@ -771,7 +771,8 @@ export default {
this.query.materialId = this.queryOwn.materialId;
this.query.warehouseId = this.queryOwn.warehouseId;
this.query.storeId = !!this.queryOwn.storeId && this.queryOwn.storeId != '-1' ? this.queryOwn.storeId : null;
let b =await getList(page.currentPage, page.pageSize, Object.assign(params, this.query));
console.log("库存品参数<><><><",this.query);
let b =await getListAllocation(page.currentPage, page.pageSize, Object.assign(params, this.query));
this.data = b.data.data.records;
console.log("库存品信息",this.data);
this.page.total = b.data.data.total;

24
src/views/distribution/inventory/distributionStockListDiscuss.vue

@ -410,8 +410,8 @@ export default {
sortable: true,
},
// {
// prop: 'warehouse',
// label: '',
// prop: 'despatch',
// label: '',
// type: 2,
// values: '',
// width: '130',
@ -419,16 +419,6 @@ export default {
// fixed: false,
// sortable: true,
// },
{
prop: 'despatch',
label: '物流车次',
type: 2,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'incomingBatch',
label: '入库批次',
@ -579,6 +569,16 @@ export default {
fixed: false,
sortable: true,
},
{
prop: 'packageNum',
label: '包装数量',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'unpackingQuantity',
label: '拆包数量',

24
src/views/distribution/inventory/distributionStockListMarket.vue

@ -391,8 +391,8 @@ export default {
sortable: true,
},
// {
// prop: 'warehouse',
// label: '',
// prop: 'despatch',
// label: '',
// type: 2,
// values: '',
// width: '130',
@ -400,16 +400,6 @@ export default {
// fixed: false,
// sortable: true,
// },
{
prop: 'despatch',
label: '物流车次',
type: 2,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'incomingBatch',
label: '入库批次',
@ -560,6 +550,16 @@ export default {
fixed: false,
sortable: true,
},
{
prop: 'packageNum',
label: '包装数量',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'unpackingQuantity',
label: '拆包数量',

24
src/views/distribution/inventory/distributionStockListSelf.vue

@ -362,8 +362,8 @@ export default {
sortable: true,
},
// {
// prop: 'warehouse',
// label: '',
// prop: 'despatch',
// label: '',
// type: 2,
// values: '',
// width: '130',
@ -371,16 +371,6 @@ export default {
// fixed: false,
// sortable: true,
// },
{
prop: 'despatch',
label: '物流车次',
type: 2,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'incomingBatch',
label: '入库批次',
@ -530,6 +520,16 @@ export default {
fixed: false,
sortable: true,
},
{
prop: 'packageNum',
label: '包装数量',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'unpackingQuantity',
label: '拆包数量',

4
src/views/warehouse/warehousingentry/warehouseWarehousingEntry.vue

@ -659,6 +659,10 @@ export default {
},
//
uploadAfter(res, done, loading, column) {
if(!res){
this.$message.success("导入成功!!!");
}
// window.console.log("",res,column);
window.console.log("column",column);
this.excelBox = false;
this.refreshChange();

Loading…
Cancel
Save