Browse Source

修改库存预约的过滤

fix_bug_pro20231227
pref_mail@163.com 1 year ago
parent
commit
c9f3329091
  1. 2
      src/page/index/index.vue
  2. 8
      src/page/index/top/index.vue
  3. 2
      src/views/distribution/reservation/reservation.vue
  4. 28
      src/views/distribution/reservation/reservationAddFrom.vue
  5. 2
      src/views/reservation/lnventory_list.vue
  6. 1098
      src/views/reservation/reservation_list.vue

2
src/page/index/index.vue

@ -77,8 +77,6 @@ export default {
}, },
created() { created() {
getMyCurrentWarehouse().then(res => { getMyCurrentWarehouse().then(res => {
console.log(res, '初始化请求参数');
console.log(res.data.data.name, '仓库名称');
if (res.data.data == null) { if (res.data.data == null) {
console.log('当前没有数据'); console.log('当前没有数据');
localStorage.setItem('WarehouseName', undefined); localStorage.setItem('WarehouseName', undefined);

8
src/page/index/top/index.vue

@ -120,10 +120,10 @@ export default {
}; };
}, },
mounted() { mounted() {
getMyWarehouseList().then(res => { // getMyWarehouseList().then(res => {
let arr = [{ name: this.dataName ? this.dataName : '', id: '0' }]; // let arr = [{ name: this.dataName ? this.dataName : '', id: '0' }];
this.datalist = arr.concat(res.data.data); // this.datalist = arr.concat(res.data.data);
}); // });
this.checkwarehousevalue = Number(localStorage.getItem('checkwarehousevalue')); this.checkwarehousevalue = Number(localStorage.getItem('checkwarehousevalue'));
}, },
filters: {}, filters: {},

2
src/views/distribution/reservation/reservation.vue

@ -459,7 +459,7 @@ export default {
}, },
{ {
prop: 'mallName', prop: 'mallName',
label: '商城', label: '收货单位',
type: 2, type: 2,
values: '', values: '',
width: '130', width: '130',

28
src/views/distribution/reservation/reservationAddFrom.vue

@ -1925,9 +1925,7 @@ export default {
let page = this.page; let page = this.page;
let params = {}; let params = {};
this.query.serviceType = '2'; this.query.serviceType = '2';
console.log('this.marketName :>> ', this.marketName);
params.marketName = this.marketName; params.marketName = this.marketName;
console.log('params :>> ', params);
getInventoryList(page.currentPage, page.pageSize, Object.assign(params, this.query)).then( getInventoryList(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(
res => { res => {
const inventoryList = res.data.data; const inventoryList = res.data.data;
@ -1938,14 +1936,18 @@ export default {
this.page.total = inventoryList.total; this.page.total = inventoryList.total;
console.log('res :>> ', res); console.log('res :>> ', res);
this.inventoryInfo = inventoryList.records;
//
const _inventoryInfo = inventoryList.records;
this.inventoryInfo = _inventoryInfo
if (this.inventoryData.length !== 0) { if (this.inventoryData.length !== 0) {
// ids // ids
const ids = this.inventoryData.map(val => val.id); const ids = this.inventoryData.map(val => val.id);
// //
this.inventorySelectList = this.inventoryInfo.filter(val => { this.inventoryInfo = _inventoryInfo.filter(val => {
// //
return ids.includes(val.id); return !ids.includes(val.id);
}); });
} }
this.loading = false; this.loading = false;
@ -2628,18 +2630,7 @@ export default {
} }
this.marketName = _marketName; this.marketName = _marketName;
console.log('this.inventoryList :>> ', this.inventoryList); console.log('this.inventoryList :>> ', this.inventoryList);
this.inventoryData = this.inventoryList; this.inventoryData = [...this.inventoryData,...this.inventoryList];
// if (this.orderData.length) {
// this.inventoryList.some(i => {
// let a = this.inventoryData.filter((ele) => ele.id == i.id).length >= 1;
// if (!a) {
// this.inventoryData.push(i);
// }
// });
// } else {
// this.inventoryData = this.selectionList;
// }
this.stockListShow = false; this.stockListShow = false;
}, },
@ -2841,7 +2832,8 @@ export default {
}); });
if (this.orderData.length !== 0) { if (this.orderData.length !== 0) {
const ids = this.orderData.map(val => val.id); const ids = this.orderData.map(val => val.id);
this.orderSelectList = this.stockArticleInfo.filter(val => ids.includes(val.id)); const _orderData = this.stockArticleInfo.filter(val => !ids.includes(val.id))
// this.orderSelectList = this.stockArticleInfo.filter(val => ids.includes(val.id));
console.log('orderSelectList :>> ', this.orderSelectList); console.log('orderSelectList :>> ', this.orderSelectList);
} }
this.orderList = []; this.orderList = [];

2
src/views/reservation/lnventory_list.vue

@ -53,7 +53,7 @@
> >
<template #default="slotProps"> <template #default="slotProps">
<el-text type="primary" text icon="el-icon-view" @click="handleViewDetails(slotProps.scope)">查看</el-text> <el-text type="primary" text icon="el-icon-view" @click="handleViewDetails(slotProps.scope)">查看</el-text>
<el-text type="primary" text icon="el-icon-view" @click="handleViewDismantle(slotProps.scope)">拆包</el-text> <!-- <el-text type="primary" text icon="el-icon-view" @click="handleViewDismantle(slotProps.scope)">拆包</el-text> -->
</template> </template>
</tablecmt> </tablecmt>
</el-row> </el-row>

1098
src/views/reservation/reservation_list.vue

File diff suppressed because it is too large Load Diff
Loading…
Cancel
Save