Browse Source

1.加入选择搜索

fix_bug_pro20231227
0.0 2 years ago
parent
commit
aa7afa2c95
  1. 11
      src/api/basicdata/basicdataGoodsArea.js
  2. 1
      src/option/basicdata/basicdataTray.js
  3. 3
      src/views/basicdata/warehouse/goodsAllocation/BasicdataGoodsAllocation.vue
  4. 22
      src/views/basicdata/warehouse/goodsArea/basicdataGoodsArea.vue
  5. 314
      src/views/basicdata/warehouse/goodsShelf/basicdataGoodsShelf.vue
  6. 6
      src/views/basicdata/warehouse/tray/basicdataTray.vue

11
src/api/basicdata/basicdataGoodsArea.js

@ -99,6 +99,17 @@ export const getGoodsAreaList = () => {
method: 'get', method: 'get',
}) })
} }
/**
* 货区列表信息
* @param id 仓库ID
* @returns {AxiosPromise}
*/
export const getGoodsAreaNodeList = () => {
return request({
url: '/api/logpm-basicdata/goodsArea/getNode',
method: 'get',
})
}
/** /**
* 查询当前登录人所能操作的备货区 * 查询当前登录人所能操作的备货区

1
src/option/basicdata/basicdataTray.js

@ -182,6 +182,7 @@ export default {
prop: "palletCode", prop: "palletCode",
type: "input", type: "input",
labelWidth:'100', labelWidth:'100',
search:true,
addDisplay: false, addDisplay: false,
editDisplay: false, editDisplay: false,
viewDisplay: true, viewDisplay: true,

3
src/views/basicdata/warehouse/goodsAllocation/BasicdataGoodsAllocation.vue

@ -74,7 +74,7 @@
</template> </template>
<script> <script>
import {getList, getDetail, add, update, remove,getPrintTemplate,getQRCode,shelf} from "@/api/basicdata/basicdataGoodsAllocation"; import {getList, getDetail, add, update, remove,getPrintTemplate,shelf} from "@/api/basicdata/basicdataGoodsAllocation";
import option from "@/option/basicdata/basicdataGoodsAllocation"; import option from "@/option/basicdata/basicdataGoodsAllocation";
import {mapGetters} from "vuex"; import {mapGetters} from "vuex";
import {exportBlob} from "@/api/common"; import {exportBlob} from "@/api/common";
@ -83,7 +83,6 @@
import {dateNow} from "@/utils/date"; import {dateNow} from "@/utils/date";
import NProgress from 'nprogress'; import NProgress from 'nprogress';
import 'nprogress/nprogress.css'; import 'nprogress/nprogress.css';
import {getStockTemplate, showOrderPackgeCode} from "@/api/distribution/distributionStockArticle";
import {getLodop} from "@/utils/LodopFuncs"; import {getLodop} from "@/utils/LodopFuncs";
export default { export default {

22
src/views/basicdata/warehouse/goodsArea/basicdataGoodsArea.vue

@ -100,6 +100,7 @@
<el-table-column prop="menu" label="操作" :width="220" align="center"> <el-table-column prop="menu" label="操作" :width="220" align="center">
<template #="{row}"> <template #="{row}">
<el-button type="primary" text icon="el-icon-view" @click="handleView(row)">查看</el-button> <el-button type="primary" text icon="el-icon-view" @click="handleView(row)">查看</el-button>
<el-button type="primary" text icon="el-icon-view" @click="handleExport(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-edit" @click="handleEdit(row)">编辑</el-button>
<el-button type="primary" text icon="el-icon-delete" @click="rowDel(row)">删除</el-button> <el-button type="primary" text icon="el-icon-delete" @click="rowDel(row)">删除</el-button>
</template> </template>
@ -213,6 +214,11 @@ import option from "@/option/basicdata/basicdataGoodsArea";
import { mapGetters } from "vuex"; import { mapGetters } from "vuex";
import {getDictionaryBiz} from '@/api/system/dict'; import {getDictionaryBiz} from '@/api/system/dict';
import {getWarehouseList} from "@/api/basicdata/basicdataWarehouse"; import {getWarehouseList} from "@/api/basicdata/basicdataWarehouse";
import { getToken } from '@/utils/auth';
import NProgress from 'nprogress';
import { exportBlob } from '@/api/common';
import { downloadXls } from '@/utils/util';
import { dateNow } from '@/utils/date';
export default { export default {
data () { data () {
@ -344,6 +350,22 @@ export default {
}); });
}) })
}, },
handleExport(row) {
let downloadUrl = `/api/logpm-basicdata/goodsArea/export-warehouseGoodsArea?${this.website.tokenHeader}=${getToken()}`;
const {} = this.query;
let values = {id:row.id};
this.$confirm('是否导出数据?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(() => {
NProgress.start();
exportBlob(downloadUrl, values).then(res => {
downloadXls(res.data, `货区信息-`+row.headline+`${dateNow()}.xlsx`);
NProgress.done();
});
});
},
handleSubmit () { handleSubmit () {
// //
this.$refs.form.validate(valid=>{ this.$refs.form.validate(valid=>{

314
src/views/basicdata/warehouse/goodsShelf/basicdataGoodsShelf.vue

@ -8,10 +8,14 @@
<el-form-item> <el-form-item>
<el-row> <el-row>
<el-col > <el-col >
<!-- <el-form-item label="货区:" prop="info" >--> <el-form-item label="货区:" prop="info" >
<!-- <el-cascader :options="optioner" style="width: 80%" v-model="query.goodsAreaInfo" placeholder="请选择货区" clearable :show-all-levels="false">--> <!-- <el-cascader :options="optioner" :show-all-levels="false" clearable >-->
<el-cascader :options="optioner" style="width: 80%" v-model="query.goodsAreaInfo" placeholder="请选择货区" :show-all-levels="false" />
<!-- </el-cascader>--> <!-- </el-cascader>-->
<!-- </el-form-item>--> </el-form-item>
<el-form-item label="货架名称" prop="info" >
<el-input v-model="query.goodsShelfName" placeholder="请输入货架名称"/>
</el-form-item>
<el-form-item label="货架状态:" prop="areaStatus"> <el-form-item label="货架状态:" prop="areaStatus">
<!-- <el-input v-model="form.areaStatus" placeholder="请输入货区状态;1-启用,2-禁用"/>--> <!-- <el-input v-model="form.areaStatus" placeholder="请输入货区状态;1-启用,2-禁用"/>-->
<el-select v-model="query.goodsShelfStatus" clearable placeholder="请选择货架状态" style="width: 80%;"> <el-select v-model="query.goodsShelfStatus" clearable placeholder="请选择货架状态" style="width: 80%;">
@ -100,6 +104,7 @@
<!-- <el-button type="primary" text icon="el-icon-view" @click="handleView(row)">查看</el-button>--> <!-- <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-edit" @click="handleEdit(row)">编辑</el-button>
<el-button type="primary" text icon="el-icon-edit" @click="addAllocation(row)"> </el-button> <el-button type="primary" text icon="el-icon-edit" @click="addAllocation(row)"> </el-button>
<el-button type="primary" text icon="el-icon-edit" @click="locationList(row)"> </el-button>
<!-- <el-button type="primary" text icon="el-icon-edit" @click="enableStatus(row)">--> <!-- <el-button type="primary" text icon="el-icon-edit" @click="enableStatus(row)">-->
<!-- <span v-if="row.enableStatus === '启用'">禁用</span>--> <!-- <span v-if="row.enableStatus === '启用'">禁用</span>-->
<!-- <span v-else>启用</span>--> <!-- <span v-else>启用</span>-->
@ -257,15 +262,48 @@
<el-button @click="dialogVisible = false"> </el-button> <el-button @click="dialogVisible = false"> </el-button>
</span> </span>
</el-dialog> </el-dialog>
<el-dialog
title="货位列表"
width="80%"
v-model="box1">
<avue-crud :option="alloption"
v-model:page="allpage"
v-model="allform"
:table-loading="loading"
:data="alldata"
ref="crud"
@selection-change="allselectionChange"
@current-change="allcurrentChange"
@size-change="allsizeChange"
@on-load="allonLoad">
<!-- <template #menu-left>-->
<!-- <el-button type="warning"-->
<!-- plain-->
<!-- icon="el-icon-camera"-->
<!-- @click="handleqr">查看二维码-->
<!-- </el-button>-->
<!-- </template>-->
<template #menu="{size,row,index}">
<el-button type="primary" text icon="el-icon-view" v-if="row.enableStatus ==1" @click="losses(row,2)"> </el-button>
<!-- <el-button type="primary" text icon="el-icon-view" v-if="row.allocationStatus !=='1'" @click="Offshelf(row)"> </el-button>-->
<el-button type="primary" text icon="el-icon-view" v-if="row.enableStatus ==2" @click="losses(row,1)"> </el-button>
</template>
</avue-crud>
</el-dialog>
</div> </div>
</basic-container> </basic-container>
</template> </template>
<script> <script>
import { getList, getDetail, add, update, remove,getQRCodeImg,getShowTemplate,getPrintTemplate,addAllocation } from "@/api/basicdata/basicdataGoodsShelf"; import { getList, getDetail, add, update, remove,getQRCodeImg,getShowTemplate,getPrintTemplate,addAllocation } from "@/api/basicdata/basicdataGoodsShelf";
import {getList as allgetList,update as allupdate} from "@/api/basicdata/basicdataGoodsAllocation";
import option from "@/option/basicdata/basicdataGoodsShelf"; import option from "@/option/basicdata/basicdataGoodsShelf";
import { mapGetters } from "vuex"; import { mapGetters } from "vuex";
import {getGoodsAreaList} from "@/api/basicdata/basicdataGoodsArea"; import { getGoodsAreaNodeList } from '@/api/basicdata/basicdataGoodsArea';
import { getDictionaryBiz } from '@/api/system/dict'; import { getDictionaryBiz } from '@/api/system/dict';
import { getTemplateData} from '@/api/basic/basicPrintTemplate' import { getTemplateData} from '@/api/basic/basicPrintTemplate'
import { getLodop } from '@/utils/LodopFuncs.js' import { getLodop } from '@/utils/LodopFuncs.js'
@ -278,6 +316,7 @@ export default {
title: '', title: '',
// //
box: false, box: false,
box1: false,
// //
search: true, search: true,
// //
@ -294,11 +333,204 @@ export default {
pageSize: 10, pageSize: 10,
total: 40 total: 40
}, },
allpage: {
pageSize: 10,
currentPage: 1,
total: 0
},
allform:{},
alldata:[],
// //
form: {}, form: {},
isShowQRCode:false, isShowQRCode:false,
// //
selectionList: [], selectionList: [],
//
allselectionList: [],
alloption: {
height:'auto',
calcHeight: 30,
tip: false,
searchShow: true,
searchMenuSpan: 6,
border: true,
index: true,
viewBtn: true,
selection: false,
editBtn:false,
delBtn:false,
addBtn:false,
indexWidth:'150',
indexLabel:"序号",
dialogClickModal: false,
column: [
{
label: "仓库名称",
prop: "warehouseName",
type: "input",
addDisplay: false,
editDisplay: false,
align:'center',
labelWidth:'100',
},
{
label: "货区名称",
prop: "goodsAreaName",
type: "input",
addDisplay: false,
editDisplay: false,
align:'center',
labelWidth:'100',
},
{
label: "货架名称",
prop: "goodsShelfName",
type: "input",
addDisplay: false,
editDisplay: false,
align:'center',
labelWidth:'100',
},
{
label: '货架',
prop: 'nodeInfo',
type: "cascader",
labelWidth:'100',
clearable:true,
placeholder:'仓库/货区/货架',
dicUrl: '/api/logpm-basicdata/goodsAllocation/getNode',
// dicData:dicData ,
props: {
label:'label',
value:'value',
children:'children',
leaf:'leaf',
},
addDisplay: true,
editDisplay: false,
viewDisplay: false,
hide: true,
},
{
label: "货位名称",
prop: "goodsAllocationName",
type: "input",
addDisplay: true,
editDisplay: true,
align:'center',
labelWidth:'100',
rules: [{
required: true,
message: "请输入货位名称",
trigger: "blur"
}]
},
{
label: "所在列",
prop: "columnNum",
type: "input",
align:'center',
labelWidth:'100',
addDisplay: true,
editDisplay: true,
viewDisplay: true,
hide: false,
},
{
label: "所在层",
prop: "layerNum",
type: "input",
align:'center',
labelWidth:'100',
addDisplay: true,
editDisplay: true,
viewDisplay: true,
hide: false,
},
{
label: "启用状态",
prop: "enableStatus",
type: "select",
search: false,
labelWidth:'100',
dicUrl: '/api/blade-system/dict-biz/dictionary?code=enable_status',
props: {
label: 'dictValue',
value: 'dictKey',
},
addDisplay: false,
align:'center',
editDisplay: false,
viewDisplay: false,
hide: false,
},
{
label: "货位状态",
prop: "allocationStatus",
type: "select",
labelWidth:'100',
dicUrl: '/api/blade-system/dict-biz/dictionary?code=allocation_status',
props: {
label: 'dictValue',
value: 'dictKey',
},
addDisplay: false,
align:'center',
},
{
label: "货位码",
prop: "qrCode",
type: "input",
align:'center',
labelWidth:'100',
viewDisplay: true,
addDisplay: false,
editDisplay: false,
hide:true,
},
{
label: "旧ID",
prop: "oldId",
type: "input",
align:'center',
labelWidth:'100',
viewDisplay: true,
addDisplay: false,
editDisplay: false,
hide:true,
},
{
label: "旧货位码",
prop: "oldQrCode",
type: "input",
align:'center',
labelWidth:'100',
viewDisplay: true,
addDisplay: false,
editDisplay: true,
},
{
label: "模 板",
prop: "templateId",
type: "select",
align:'center',
labelWidth:'100',
dicUrl: '/api/logpm-basic/printTemplate/getTemplate?templateType=8',
props: {
label: 'templateName',
value: 'id',
},
viewDisplay: true,
addDisplay: true,
editDisplay: false,
hide:true,
},
]
},
// //
option: option, option: option,
// //
@ -356,6 +588,24 @@ export default {
} }
}, },
methods: { methods: {
losses(row,mub){
this.$confirm('确认操作?')
.then(_ => {
row.enableStatus =mub
allupdate(row).then(() => {
this.onLoad(this.page);
this.$message({
type: "success",
message: "操作成功!"
});
}, error => {
loading();
console.log(error);
});
})
.catch(_ => {
});
},
init () { init () {
this.height = this.setPx(document.body.clientHeight - 340); this.height = this.setPx(document.body.clientHeight - 340);
}, },
@ -367,9 +617,12 @@ export default {
getDictionaryBiz( 'goods_shelf_status').then(res => { getDictionaryBiz( 'goods_shelf_status').then(res => {
this.goodsShelfStatusData = res.data.data; this.goodsShelfStatusData = res.data.data;
}); });
getGoodsAreaList().then(res=>{ getGoodsAreaNodeList().then(res=>{
console.log(res.data.data);
this.optioner = res.data.data.records; const data = res.data.data
this.optioner = this.formatCascaderData(data);
console.log(">>>>>>>>>>>>>>>>optioner",this.optioner);
}) })
getTemplateData("9").then(res=>{ getTemplateData("9").then(res=>{
console.log(res.data.data); console.log(res.data.data);
@ -377,6 +630,20 @@ export default {
this.templateData = data; this.templateData = data;
}) })
}, },
// childrenundefined
formatCascaderData(data)
{
for (var i = 0; i < data.length; i++) {
if (null==data[i].children ||data[i].children.length < 1) {
// childrenchildrenundefined
delete data[i].children;
} else {
// children
this.formatCascaderData(data[i].children)
}
}
return data
},
searchHide () { searchHide () {
this.search = !this.search; this.search = !this.search;
}, },
@ -411,6 +678,13 @@ export default {
//TODO //TODO
}); });
}, },
//
locationList(row){
console.log("row>>>>>>>>",row);
this.title = '货位列表'
this.box1 = true
this.allonLoad(this.allpage)
},
handleSubmit () { handleSubmit () {
if (this.allocation){ if (this.allocation){
console.log("this.form>>>>>>>货位", this.form); console.log("this.form>>>>>>>货位", this.form);
@ -618,6 +892,9 @@ export default {
selectionChange (list) { selectionChange (list) {
this.selectionList = list; this.selectionList = list;
}, },
allselectionChange (list) {
this.allselectionList = list;
},
selectionClear () { selectionClear () {
this.selectionList = []; this.selectionList = [];
this.query.warehouseId=null; this.query.warehouseId=null;
@ -632,6 +909,24 @@ export default {
this.page.pageSize = pageSize; this.page.pageSize = pageSize;
this.onLoad(this.page); this.onLoad(this.page);
}, },
allcurrentChange (currentPage) {
this.allpage.currentPage = currentPage;
this.onLoad(this.page);
},
allsizeChange (pageSize) {
this.allpage.pageSize = pageSize;
this.onLoad(this.page);
},
allonLoad(page){
let values ={}
allgetList(page.currentPage, page.pageSize, values).then(res => {
const data = res.data.data
console.log("data>>>>>>>>>>>>>>>",data);
this.allpage.total = data.total;
this.alldata = data.records;
this.loading = false;
});
},
onLoad (page, params = {}) { onLoad (page, params = {}) {
this.loading = true; this.loading = true;
let ids = {}; let ids = {};
@ -677,3 +972,8 @@ export default {
</script> </script>
<style>
/*.el-cascader__dropdown .el-cascader-menu:first-child .el-cascader-node label{*/
/* display:none;*/
/*}*/
</style>

6
src/views/basicdata/warehouse/tray/basicdataTray.vue

@ -476,13 +476,15 @@
const { const {
warehouseId, warehouseId,
trayStatus, trayStatus,
type type,
palletCode
} = this.query; } = this.query;
let values = { let values = {
warehouseId:warehouseId, warehouseId:warehouseId,
trayStatus:trayStatus, trayStatus:trayStatus,
type:type type:type,
palletCode:palletCode
}; };
getList(page.currentPage, page.pageSize, values).then(res => { getList(page.currentPage, page.pageSize, values).then(res => {

Loading…
Cancel
Save