Browse Source

Merge remote-tracking branch 'origin/dev' into dev

fix_bug_pro20231227
caoyizhong 2 years ago
parent
commit
d52dccc927
  1. 6
      src/api/distribution/distributionStockArticle.js
  2. 16
      src/api/work/work.js
  3. 70
      src/page/index/top/index.vue
  4. 14
      src/views/basicdata/warehouse/warehouse/basicdataWarehouse.vue
  5. 199
      src/views/distribution/turndelivery/deliveryDiscuss.vue

6
src/api/distribution/distributionStockArticle.js

@ -200,7 +200,7 @@ export const selectStockArticleInfoList = (current, size, params) => {
})
}
export const selectDiscussStockArticleInfoList = (current, size, params) => {
export const selectDiscussStockArticleInfoList = (current, size, params,deliveryListId) => {
return request({
url: '/api/logpm-distribution/deliveryList/selectDiscussStockArticleInfoList',
method: 'get',
@ -208,11 +208,12 @@ export const selectDiscussStockArticleInfoList = (current, size, params) => {
...params,
current,
size,
deliveryListId
}
})
}
export const selectUpdateAvailableStockArticle = (current, size, id,params) => {
export const selectUpdateAvailableStockArticle = (current, size,params) => {
return request({
url: '/api/logpm-distribution/reservation/selectUpdateAvailableStockArticle',
method: 'get',
@ -220,7 +221,6 @@ export const selectUpdateAvailableStockArticle = (current, size, id,params) => {
...params,
current,
size,
id,
}
})
}

16
src/api/work/work.js

@ -77,3 +77,19 @@ export const completeTask = data => {
data,
});
};
export const getMyWarehouseList = data => {
return request({
url: '/api/logpm-basicdata/warehouse/getMyWarehouseList',
method: 'get',
data,
});
};
export const preserveCurrentWarehouse = data => {
return request({
url: '/api/logpm-basicdata/warehouse/preserveCurrentWarehouse',
method: 'post',
data,
});
};

70
src/page/index/top/index.vue

@ -43,6 +43,11 @@
<el-dropdown-item>
<router-link to="/">{{ $t('navbar.dashboard') }}</router-link>
</el-dropdown-item>
<el-dropdown-item>
<div @click="showcl(true)">
切换仓库
</div>
</el-dropdown-item>
<el-dropdown-item>
<router-link to="/info/index">{{ $t('navbar.userinfo') }}</router-link>
</el-dropdown-item>
@ -56,6 +61,22 @@
</div>
</div>
</div>
<el-dialog v-model="isshow" title="切换仓库" width="30%">
<div style="display: flex;flex-direction: column;align-items: center;">
<el-select class="selecin" v-model="warehousevalue" placeholder="请选择切换的仓库">
<el-option
v-for="(item,index) in datalist"
:key="item.id"
:label="item.name"
:value="index"
/>
</el-select>
<div class="copnbx">
<el-button @click="showcl(false)">取消</el-button>
<el-button type="primary" @click="confirmcks">确认</el-button>
</div>
</div>
</el-dialog>
</template>
<script>
import { mapGetters } from 'vuex';
@ -67,6 +88,7 @@ import topLogs from './top-logs.vue';
import topLang from './top-lang.vue';
import topFull from './top-full.vue';
import topSetting from '../setting.vue';
import { getMyWarehouseList , preserveCurrentWarehouse } from '@/api/work/work'
export default {
components: {
@ -81,10 +103,14 @@ export default {
},
name: 'top',
data() {
return {};
return {
isshow:false,
datalist:[],
warehousevalue:''
};
},
mounted(){
},
filters: {},
created() {},
@ -102,6 +128,24 @@ export default {
]),
},
methods: {
async confirmcks(){
if(typeof this.warehousevalue !='number'){
return
}
console.log(this.warehousevalue)
let res=await preserveCurrentWarehouse(this.datalist[this.warehousevalue])
if(res.data.code==200){
this.$message({message:'切换成功',type:'success'})
this.$router.push({
path:'/'
})
setTimeout(() => {
window.location.reload();
}, 1000);
}else{
this.$message({message:res.data.msg,type:'error'})
}
},
setCollapse() {
this.$store.commit('SET_COLLAPSE');
},
@ -116,8 +160,28 @@ export default {
});
});
},
showcl(flg){
this.isshow=flg
if(this.isshow){
getMyWarehouseList().then(res=>{
console.log(res.data.data,'getMyWarehouseList')
this.datalist=res.data.data
})
}
},
},
};
</script>
<style lang="scss" scoped></style>
<style lang="scss" scoped>
.copnbx{
margin-top: 30px;
button{
width: 120px;
height: 40px;
}
}
.selecin{
width: 60%;
}
</style>

14
src/views/basicdata/warehouse/warehouse/basicdataWarehouse.vue

@ -20,7 +20,6 @@
@refresh-change="refreshChange"
@on-load="onLoad"
>
<template #menu-left>
<el-button type="danger"
icon="el-icon-delete"
@ -467,7 +466,6 @@
leaf: level >= stop_level
})
}));
}
if (level == 0) {
axios.get(`/api/blade-system/dept/lazy-tree?parentId=0`).then(res => {
@ -847,10 +845,12 @@
})
row.administrativeAreas = str.join(",");
}
if (this.form.departmentName){
this.form.department = this.department;
console.log("-------------->this.form.departmentName",this.form.departmentName);
console.log("-------------->this.department",this.department);
if (row.departmentName){
row.department = this.department;
}
console.log(row);
console.log("-------------->row",row);
add(row).then(() => {
this.onLoad(this.page);
this.$message({
@ -906,8 +906,8 @@
})
row.administrativeAreas = str.join(",");
}
if (this.form.departmentName){
this.form.department = this.department;
if (row.departmentName){
row.department = this.department;
}
update(row).then(() => {
this.onLoad(this.page);

199
src/views/distribution/turndelivery/deliveryDiscuss.vue

@ -609,7 +609,10 @@
import { stockUpInfo } from '@/api/basicdata/basicdataGoodsArea';
import { getVehicleList } from '@/api/basicdata/basicdataVehicle';
import { getDriverList } from '@/api/basicdata/basicdataDriverArtery';
import { selectStockArticleInfoList,selectDiscussStockArticleInfoList } from '@/api/distribution/distributionStockArticle';
import {
selectStockArticleInfoList,
selectDiscussStockArticleInfoList
} from '@/api/distribution/distributionStockArticle';
import { getInventoryList } from '@/api/distribution/distributionStockList';
import { getDeliveryList, updateDeliveryList } from '@/api/distribution/distributionDeliveryList';
import { mapGetters } from 'vuex';
@ -736,13 +739,13 @@
'$route.query.id': {
handler(newVal, oldVal) {
console.log(newVal, oldVal);
if (!!this.$route.query.id){
if (!!this.$route.query.id) {
this.fetchData();
this.onLoad(this.page);
}
this.driverForm={};
this.vehicleIds=[];
this.deliveryDriver=[];
this.driverForm = {};
this.vehicleIds = [];
this.deliveryDriver = [];
},
deep: true,
immediate: true
@ -903,18 +906,18 @@
},
sizeOrderChange(pageSize) {
this.page.pageSize = pageSize;
if (this.deliveryListId){
if (this.deliveryListId) {
//
this.selectDiscussStockArticle(this.page);
}else {
this.onLoadEditOrder(this.page, this.deliveryListId);
} else {
this.onLoadOrder(this.page);
}
},
currentOrderChange(currentPage) {
this.page.currentPage = currentPage;
if (this.deliveryListId){
this.selectDiscussStockArticle(this.page);
}else {
if (this.deliveryListId) {
this.onLoadEditOrder(this.page, this.deliveryListId);
} else {
this.onLoadOrder(this.page);
}
},
@ -1054,28 +1057,27 @@
console.log('>>>>>>>>orderData', this.orderData);
const data = this.stockArticleList;
let info = [];
if (this.orderData) {
let a = this.orderData;
data.forEach(item => {
a.forEach(order => {
if (item.id === order.id) {
console.log('order----------------->', order);
item = order;
}
});
info.push(item);
});
}
this.orderData = info;
// this.orderData.forEach(item => {
// item.reservationNum = 0;
// this.stockArticleList.forEach((list, index) => {
// if (item.id === list.id) {
// list = item;
// }
// if (this.orderData) {
// let a = this.orderData;
// data.forEach(item => {
// a.forEach(order => {
// if (item.id === order.id) {
// console.log('order----------------->', order);
// item = order;
// }
// });
// info.push(item);
// });
// });
// }
data.map(item=>{
console.log(item);
this.orderData.forEach(order=>{
if (item.id !== order.id){
this.orderData.push(item);
}
})
})
// this.orderData = info;
console.log('+++++++++++++++', this.orderData);
this.orderShow = false;
},
@ -1490,65 +1492,11 @@
this.query.typeService = 1;
this.query.genre = '1';
const page = this.page;
let params = {};
if (this.deliveryListId) {
//
this.query.deliveryId = this.deliveryListId;
this.selectDiscussStockArticle(page);
// selectDiscussStockArticleInfoList(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(res => {
// console.log("----------------------------->",res.data.data);
// const data = res.data.data;
// // this.page.total = data.total;
// this.stockArticleInfo = data.records;
// this.stockArticleInfo.forEach((item, index) => {
// if (this.orderData) {
// this.orderData.forEach(a => {
// if (item.id === a.id) {
// this.$nextTick(() => {
// this.$refs.stockArticleTable.toggleRowSelection(this.stockArticleInfo[index], true);
// });
// console.log("item---------------->",item);
// this.checkOrder(item,index)
// }
// });
// }
// });
// this.page.total = data.total;
// });
this.query = {};
} else {
//
this.onLoadOrder(page);
// selectStockArticleInfoList(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(res => {
// console.log(res.data.data);
// const data = res.data.data;
// this.page.total = data.total;
// this.stockArticleInfo = data.records;
// this.stockArticleInfo.forEach((item, index) => {
// this.checkOrder(item,index)
// });
// this.page.total = data.total;
// });
this.query = {};
}
this.query = {};
//
this.onLoadOrder(page);
this.query = {};
this.loading = false;
// this.selectionClear();
// if (this.deliveryListId) {
// //
// console.log("---->", this.stockArticleInfo);
// this.stockArticleInfo.forEach((item, index) => {
// console.log("aaa", item, index);
// this.orderData.forEach(o => {
// console.log("bbb", o);
// if (item.id === o.id) {
// this.$nextTick(() => {
// this.$refs.stockArticleTable.toggleRowSelection(this.stockArticleInfo[index], true);
// })
// }
// })
// })
// }
//
this.orderShow = true;
},
searchReset() {
@ -1558,31 +1506,31 @@
};
this.searchChange();
},
selectDiscussStockArticle(arg,params={}){
this.query.typeService = 1;
this.query.genre = '1';
const page = arg;
selectDiscussStockArticleInfoList(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(res => {
console.log("----------------------------->",res.data.data);
const data = res.data.data;
// this.page.total = data.total;
this.stockArticleInfo = data.records;
this.stockArticleInfo.forEach((item, index) => {
if (this.orderData) {
this.orderData.forEach(a => {
if (item.id === a.id) {
this.$nextTick(() => {
this.$refs.stockArticleTable.toggleRowSelection(this.stockArticleInfo[index], true);
});
console.log("item---------------->",item);
this.checkOrder(item,index)
}
});
}
});
this.page.total = data.total;
});
},
// selectDiscussStockArticle(arg,params={}){
// this.query.typeService = 1;
// this.query.genre = '1';
// const page = arg;
// selectDiscussStockArticleInfoList(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(res => {
// console.log("----------------------------->",res.data.data);
// const data = res.data.data;
// // this.page.total = data.total;
// this.stockArticleInfo = data.records;
// this.stockArticleInfo.forEach((item, index) => {
// if (this.orderData) {
// this.orderData.forEach(a => {
// if (item.id === a.id) {
// this.$nextTick(() => {
// this.$refs.stockArticleTable.toggleRowSelection(this.stockArticleInfo[index], true);
// });
// console.log("item---------------->",item);
// this.checkOrder(item,index)
// }
// });
// }
// });
// this.page.total = data.total;
// });
// },
searchChange() {
let params = {};
this.query.typeService = 1;
@ -1648,14 +1596,15 @@
this.selectionList = [];
this.query = {};
},
selectDiscussStockArticle(arg,params={}){
onLoadEditOrder(arg, deliveryListId, params = {}) {
this.query.typeService = 1;
this.query.genre = '1';
const page = arg;
selectDiscussStockArticleInfoList(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(res => {
console.log("----------------------------->",res.data.data);
const id = deliveryListId;
selectDiscussStockArticleInfoList(page.currentPage, page.pageSize, Object.assign(params, this.query), id).then(res => {
console.log('----------------------------->', res.data.data);
const data = res.data.data;
// this.page.total = data.total;
this.page.total = data.total;
this.stockArticleInfo = data.records;
this.stockArticleInfo.forEach((item, index) => {
if (this.orderData) {
@ -1664,19 +1613,19 @@
this.$nextTick(() => {
this.$refs.stockArticleTable.toggleRowSelection(this.stockArticleInfo[index], true);
});
console.log("item---------------->",item);
this.checkOrder(item,index)
console.log('item---------------->', item);
this.checkOrder(item, index);
}
});
}
});
this.page.total = data.total;
// this.page.total = data.total;
});
},
onLoadOrder(arg,params={}){
onLoadOrder(arg, params = {}) {
this.query.typeService = 1;
this.query.genre = '1';
const page =arg;
const page = arg;
selectStockArticleInfoList(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(res => {
console.log(res.data.data);
const data = res.data.data;
@ -1684,7 +1633,7 @@
this.stockArticleInfo = data.records;
this.stockArticleInfo.forEach((item, index) => {
//
this.checkOrder(item,index)
this.checkOrder(item, index);
});
this.page.total = data.total;
});

Loading…
Cancel
Save