Browse Source

市配预约编辑调整

fix_bug_pro20231227
kilo 2 years ago
parent
commit
ead4608f34
  1. 13
      src/api/distribution/distributionStockArticle.js
  2. 5
      src/option/distribution/distributionReservation.js
  3. 2329
      src/views/distribution/deliverylist/distributionDeliveryListedt.vue
  4. 471
      src/views/distribution/reservation/reservationFrom.vue
  5. 194
      src/views/distribution/turndelivery/deliveryDiscuss.vue

13
src/api/distribution/distributionStockArticle.js

@ -184,4 +184,17 @@ export const selectStockArticleAndParcel = (params) => {
})
}
export const selectStockArticleInfoList = (current, size, params) => {
return request({
url: '/api/logpm-distribution/distributionStockArticle/selectStockArticleInfoList',
method: 'get',
params: {
...params,
current,
size,
}
})
}

5
src/option/distribution/distributionReservation.js

@ -337,6 +337,11 @@ export default {
prop: 'serviceNumber',
width: '100'
},
{
label: '运单号',
prop: 'waybillNumber',
width: '100'
},
{
label: '订单自编号',
prop: 'orderCode',

2329
src/views/distribution/deliverylist/distributionDeliveryListedt.vue

File diff suppressed because it is too large Load Diff

471
src/views/distribution/reservation/reservationFrom.vue

@ -58,8 +58,8 @@
<!-- v-for="item in this.deliveryTypeData"-->
<el-radio-group v-model="form.deliveryType">
<el-radio
:label="'2'"
:value="'2'">市配&emsp;
:label="'20'"
:value="'20'">市配&emsp;
</el-radio>
</el-radio-group>
</el-form-item>
@ -163,12 +163,12 @@
</el-table-column>
</template>
<!-- <el-table-column label="包件数量" type="index" width="100px">-->
<!-- <template #="{row}">-->
<!-- <el-input v-model="row.reservationNum" type="number" :disabled="true"-->
<!-- placeholder="请输入内容"></el-input>-->
<!-- </template>-->
<!-- </el-table-column>-->
<!-- <el-table-column label="包件数量" type="index" width="100px">-->
<!-- <template #="{row}">-->
<!-- <el-input v-model="row.reservationNum" type="number" :disabled="true"-->
<!-- placeholder="请输入内容"></el-input>-->
<!-- </template>-->
<!-- </el-table-column>-->
<!-- 操作栏模块 -->
<el-table-column prop="menu" label="操作" :width="220" align="center">
<template #="{row}">
@ -357,7 +357,7 @@
title="包件信息"
width="100%"
:model="addvalue"
>
>
<!-- 列表模块 -->
<el-table ref="packageList"
v-loading="loading"
@ -469,14 +469,16 @@
<script>
import { add, update, remove, getReservationInfo } from '@/api/distribution/distributionReservation';
import { getList, getStockArticleList, selectStockArticleList,selectStockArticleAndParcel } from '@/api/distribution/distributionStockArticle';
import { getDetailDelivery, addDelivery } from '@/api/distribution/distributionDelivery';
import {
getStockArticleList,
selectStockArticleList,
selectStockArticleInfoList
} from '@/api/distribution/distributionStockArticle';
import { getDetailDelivery } from '@/api/distribution/distributionDelivery';
import { addIncrement } from '@/api/distribution/distributionStockArticle';
import { getInventoryList } from '@/api/distribution/distributionStockList';
// import option from "@/option/distribution/distributionDelivery";
import option from '@/option/distribution/distributionStockArticle';
import StockList from '@/option/distribution/distributionStockList';
import { mapGetters } from 'vuex';
import { getDictionaryBiz } from '@/api/system/dict';
@ -555,7 +557,7 @@
packageList: [],
inventoryList: [],
orderList: [],
inventoryTable:[],
inventoryTable: [],
reservationRules: {
consignee: [
{ required: true, message: '请填写收货人名称!!!', trigger: 'change' }
@ -569,7 +571,8 @@
// enableStatus: [
// { required: true, message: '!', trigger: 'change' }
// ],
}
},
obj:{},
};
},
created() {
@ -652,84 +655,104 @@
},
//
handleAddOrder() {
this.loading = true;
console.log('$$$$$$', this.orderData);
if (this.reservationId) {
//使使
this.query.typeService = 2;
this.query.genre = '1';
//
let page = this.page;
let params = {};
selectStockArticleAndParcel(Object.assign(params, this.query)).then(res => {
console.log('$$$$$$$$>', res);
let orderListData = res.data.data;
console.log('$$$$$$$$', orderListData);
this.stockArticleInfo = orderListData;
//
let a = this.orderData;
for (let i = 0; i < orderListData.length; i++) {
for (let j = 0; j < a.length; j++) {
if (orderListData[i].id === a[j].id){
console.log("@@@@@@@@@@",a[j]);
console.log("@@@@@@@@@@",orderListData[i]);
orderListData[i] = a[j];
this.$nextTick(()=> {
this.$refs.orderList.toggleRowSelection(this.stockArticleInfo[i],true);
})
}
this.checkOrder(this.stockArticleInfo[i],i);
}
}
this.loading = false;
this.selectionClear();
});
} else {
this.query.typeService = 2;
this.query.genre = '1';
let page = this.page;
let params = {};
selectStockArticleAndParcel(Object.assign(params, this.query)).then(res => {
console.log('$$$$$$$$>', res);
let orderData = res.data.data;
orderData.forEach((item, index) => {
item.reservationNum = item.handQuantity;
item.reservationNum = '0';
});
console.log('$$$$$$$$', orderData);
this.stockArticleInfo = orderData;
//
if (this.orderData){
this.stockArticleInfo.forEach((item,index)=>{
this.orderData.forEach(o=>{
if (item.id === o.id){
this.$nextTick(()=> {
this.$refs.orderList.toggleRowSelection(this.stockArticleInfo[index],true);
})
}
})
if (item.reservationStatus === '30'){
this.$nextTick(()=> {
this.$refs.orderList.toggleRowSelection(this.stockArticleInfo[index],true);
})
this.query.typeService = 2;
this.query.genre = '1';
const params = {};
const page = this.page;
selectStockArticleInfoList(page.currentPage, page.pageSize, Object.assign(params, this.query)).then( res => {
console.log('res------------>', res);
const data = res.data.data;
this.stockArticleInfo = data.records;
this.stockArticleInfo.forEach((item, index) => {
//
this.checkOrder(item, index);
if (this.orderData) {
this.orderData.forEach(o => {
if (o.id === item.id) {
this.$nextTick(() => {
this.$refs.orderList.toggleRowSelection(this.stockArticleInfo[index], true);
});
}
this.checkOrder(item,index);
})
});
}else {
//
this.orderList = [];
}
this.loading = false;
this.selectionClear();
});
this.selectionList = [];
}
});
this.loading = false;
console.log("this.stockArticleInfo------------->",this.stockArticleInfo);
// if (this.reservationId) {
// //使使
// this.query.typeService = 2;
// this.query.genre = '1';
// //
// let page = this.page;
// let params = {};
// selectStockArticleInfoList(Object.assign(params, this.query)).then(res => {
// let orderListData = res.data.data;
// this.stockArticleInfo = orderListData;
// //
// let a = this.orderData;
// for (let i = 0; i < orderListData.length; i++) {
// for (let j = 0; j < a.length; j++) {
// if (orderListData[i].id === a[j].id){
// orderListData[i] = a[j];
// this.$nextTick(()=> {
// this.$refs.orderList.toggleRowSelection(this.stockArticleInfo[i],true);
// })
// }
// this.checkOrder(this.stockArticleInfo[i],i);
// }
// }
// this.loading = false;
// this.selectionClear();
// });
// } else {
// this.query.typeService = 2;
// this.query.genre = '1';
// let page = this.page;
// let params = {};
// selectStockArticleAndParcel(Object.assign(params, this.query)).then(res => {
// let orderData = res.data.data;
// orderData.forEach((item, index) => {
// item.reservationNum = item.handQuantity;
// item.reservationNum = '0';
// });
// this.stockArticleInfo = orderData;
// //
// if (this.orderData){
// this.stockArticleInfo.forEach((item,index)=>{
// this.orderData.forEach(o=>{
// if (item.id === o.id){
// this.$nextTick(()=> {
// this.$refs.orderList.toggleRowSelection(this.stockArticleInfo[index],true);
// })
// }
// })
// // if (item.reservationStatus === '30'){
// // this.$nextTick(()=> {
// // this.$refs.orderList.toggleRowSelection(this.stockArticleInfo[index],true);
// // })
// // }
// this.checkOrder(item,index);
// })
// }else {
// //
// }
// this.loading = false;
// this.selectionClear();
// });
// }
this.orderShow = true;
},
checkOrder(row,index){
if (row.reservationStatus === '30' || row.reservationStatusName === '已预约' || row.freezeStatus === '30' || row.freezeStatusName === '已冻结' ){
checkOrder(row, index) {
if (row.freezeStatus === '30' || row.freezeStatusName === '已冻结') {
return false;
}else {
return true;
} else {
return true;
}
return false;
},
@ -747,19 +770,19 @@
this.page.total = inventoryList.total;
this.inventoryInfo = inventoryList.records;
//
if (this.inventoryData){
this.inventoryInfo.forEach((item,index)=>{
this.inventoryData.forEach(inventory=>{
if (item.id === inventory.id){
if (this.inventoryData) {
this.inventoryInfo.forEach((item, index) => {
this.inventoryData.forEach(inventory => {
if (item.id === inventory.id) {
item = inventory;
this.$nextTick(()=> {
this.$refs.inventoryTable.toggleRowSelection(this.inventoryInfo[index],true);
})
this.$nextTick(() => {
this.$refs.inventoryTable.toggleRowSelection(this.inventoryInfo[index], true);
});
}
})
})
});
});
}
console.log("------------->",this.inventoryData);
console.log('------------->', this.inventoryData);
this.loading = false;
this.selectionClear();
});
@ -842,63 +865,66 @@
viewStockArticlePackage(row) {
this.loading = true;
this.packageList = row.packageList;
this.obj = row;
console.log('>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>', row);
if (this.reservationId){
if (this.reservationId) {
//
this.packageData = row.parcelListVOS;
let packageInfo = row.parcelListVOS
// this.packageData = row.parcelListVOS;
let packageListData = this.packageData;
if (row.packageList){
if (row.packageList) {
let packageListInfo = row.packageList;
for (let i = 0; i < packageListData.length; i++) {
for (let j = 0; j < packageListInfo.length; j++) {
if (packageListData[i].id === packageListInfo[j].id){
// row.packageList.push(packageListData[i])
packageInfo.forEach((item,index)=>{
packageListInfo.forEach(p=>{
if (item.id===p.id){
this.$nextTick( ()=> {
this.$refs.packageList.toggleRowSelection(this.packageData[i],true);
this.$refs.packageList.toggleRowSelection(this.packageData[index],true);
})
continue;
}
// this.checkPackage(packageListData[i],i);
}
}
console.log('row>>>>>>>>>>>>>>>>>>>>>>>>>>>', row);
// this.packageList = packageListInfo;
console.log('>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>', this.packageList);
})
})
}else {
//
packageInfo.forEach((item,index)=>{
this.$nextTick( ()=> {
this.$refs.packageList.toggleRowSelection(this.packageData[index],true);
})
})
}
}else {
this.packageData =row.parcelListVOS;
} else {
this.packageData = row.parcelListVOS;
//
let data = row.parcelListVOS;
data.forEach((item,index)=>{
if (item.orderPackageReservationStatusName === '已预约' || item.orderPackageReservationStatus === '20'){
data.forEach((item, index) => {
if (item.orderPackageReservationStatusName === '已预约' || item.orderPackageReservationStatus === '20') {
// //使
this.$nextTick( ()=> {
this.$refs.packageList.toggleRowSelection(this.packageData[index],true);
})
console.log("::",item);
this.checkPackage(item,index);
}else if(item.orderPackageFreezeStatusName !== '已冻结' || item.orderPackageFreezeStatus !== '20'){
this.$nextTick( ()=> {
this.$refs.packageList.toggleRowSelection(this.packageData[index],true);
})
this.$nextTick(() => {
this.$refs.packageList.toggleRowSelection(this.packageData[index], true);
});
console.log('::', item);
this.checkPackage(item, index);
} else if (item.orderPackageFreezeStatusName !== '已冻结' || item.orderPackageFreezeStatus !== '20') {
this.$nextTick(() => {
this.$refs.packageList.toggleRowSelection(this.packageData[index], true);
});
}
})
});
}
this.isaddvalue = true;
this.loading = false;
},
checkPackage(row,index) {
checkPackage(row, index) {
//
//
if (!this.reservationId){
if (row.orderPackageReservationStatusName === '已预约' || row.orderPackageReservationStatusName === '20'){
if (!this.reservationId) {
if (row.orderPackageReservationStatusName === '已预约' || row.orderPackageReservationStatusName === '20') {
return false;
}
}
if (row.orderPackageFreezeStatus === '20' || row.orderPackageFreezeStatusName === '已冻结' ){
if (row.orderPackageFreezeStatus === '20' || row.orderPackageFreezeStatusName === '已冻结') {
return false;
}else {
} else {
return true;
}
},
@ -945,47 +971,16 @@
this.handleAddInventory();
},
onSubmitPackage() {
console.log('>>>>>>>>>>', this.packageList);
console.log('>>>>>>>>>>', this.orderData);
if (this.packageList.length === 0) {
this.$message.warning('请选择包件!!!');
return;
}
if (this.reservationId){
this.orderData.forEach(item => {
item.reservationNum = 0;
let a = [];
this.packageList.forEach(list => {
console.log("##########",item);
console.log("list------------>",list);
//TODO
if (item.id === list.stockArticleId && list.orderPackageFreezeStatus !== '20') {
item.reservationNum += list.quantity;
a.push(list);
}
});
// console.log("a------------>",a);
// item.packageList = a;
item.packageListInfo = a;
return item
});
}else {
this.orderData.forEach(item => {
item.reservationNum = 0;
let a = [];
this.packageList.forEach(list => {
console.log("##########",list);
if (item.id === list.stockArticleId && list.orderPackageReservationStatus === '10' && list.orderPackageFreezeStatus=== '10') {
item.reservationNum += list.quantity;
a.push(list);
}
});
item.packageListInfo = a;
// item.packageList = a;
return item
});
}
console.log("this.orderData------------>",this.orderData);
this.orderData.forEach(item=>{
if (item.id===this.obj.id){
item.packageList = this.packageList;
}
})
console.log('this.orderData------------>', this.orderData);
this.isaddvalue = false;
},
onSubmit() {
@ -995,17 +990,6 @@
let inventoryList = [];
let stockArticleList = [];
let operation = true;
// this.orderData.forEach(item => {
// // if (item.reservationNum === '0') {
// // this.$message({
// // type: 'warning',
// // message: '' + item.orderCode + '!'
// // });
// // operation = false;
// // }
// orderIds.push(item.id);
// stockArticleList.push(item);
// });
this.inventoryData.forEach(item => {
if (item.reservationNum === '0' || item.reservationNum > item.quantityStock) {
this.$message({
@ -1023,8 +1007,14 @@
this.form.stockArticleIds = orderIds.toString();
this.form.inventoryIds = inventoryIds.toString();
this.form.inventoryList = inventoryList;
console.log("-------------->",this.orderData);
this.form.stockArticleList = this.orderData;
console.log('-------------->', this.orderData);
let order = this.orderData;
order.forEach(o=>{
if (!o.packageListInfo){
o.packageListInfo = o.packageList;
}
})
this.form.stockArticleList = order;
this.deliveryWayData.forEach(item => {
if (this.form.deliveryWay === item.dictValue) {
this.form.deliveryWay = item.dictKey;
@ -1040,33 +1030,34 @@
this.form.periodOfTime = item.dictKey;
}
});
this.form.serveType = this.serveType.join(',');
this.form.serveType = this.serveType.sort().join(',');
//
this.orderData.forEach(item=>{
console.log("-------------->item",item);
if (!item.packageListInfo){
this.orderData.forEach(item => {
console.log('-------------->item', item);
if (!item.packageListInfo) {
item.packageListInfo = item.packageList;
}
})
});
// this.form.stockArticleList = this.packageList;
console.log('>>>>>>>>', this.form);
if (this.reservationId) {
update(this.form).then(() => {
this.$router.go(-1);
this.$message({
type: 'success',
message: '操作成功!'
});
if (this.reservationId) {
this.form.id = this.reservationId;
update(this.form).then(() => {
this.$router.go(-1);
this.$message({
type: 'success',
message: '操作成功!'
});
} else {
add(this.form).then(() => {
this.$router.go(-1);
this.$message({
type: 'success',
message: '操作成功!'
});
});
} else {
add(this.form).then(() => {
this.$router.go(-1);
this.$message({
type: 'success',
message: '操作成功!'
});
}
});
}
},
handleClose(done) {
this.$confirm('确认关闭?')
@ -1125,34 +1116,28 @@
this.view = false;
},
selectionChange(list) {
let a = [];
list.forEach(item=>{
if (item.reservationStatus !== '30'){
a.push(item)
}
})
this.orderList = a;
this.orderList = list;
},
selectionPackageChange(list) {
console.log("-----------<>",list);
if (this.reservationId){
console.log('-----------<>', list);
if (this.reservationId) {
this.packageList = list;
}else {
} else {
//
let a = [];
list.forEach(item=>{
console.log("--------------->",item);
if (item.orderPackageReservationStatus === '10' || item.orderPackageReservationStatusName === '未预约'){
list.forEach(item => {
console.log('--------------->', item);
if (item.orderPackageReservationStatus === '10' || item.orderPackageReservationStatusName === '未预约') {
a.push(item);
}
})
});
this.packageList = a;
}
},
selectionInventoryChange(list) {
// if (this.reservationId){
console.log("-----------<>",list);
this.inventoryList = list;
console.log('-----------<>', list);
this.inventoryList = list;
// }else {
// //
// let a = [];
@ -1190,29 +1175,41 @@
* 增加订单提交
*/
onSubmitOrder() {
console.log('-------------》', this.orderList);
if (this.orderList.length === 0) {
this.$message.warning('请选择至少一条数据');
return;
}
let a = [];
a = this.orderList;
let b = false;
this.orderList.forEach(item => {
a.forEach(a => {
if (item.customerName !== a.customerName || item.customerTelephone !== a.customerTelephone || item.customerAddress !== a.customerAddress) {
b = true;
}
});
});
if (b) {
this.$message({
type: 'warning',
message: '请选择同一顾客订单!'
});
return;
const list = this.orderList;
console.log("list--------",list);
let j = 0;
let name = list[0].customerName;
let address = list[0].customerAddress;
let phone = list[0].customerTelephone;
for (let i = 1; i < list.length; i++) {
if (list[i].customerName !== name || list[i].customerAddress !== address || list[i].customerTelephone !== phone){
this.$message.warning('请选择统一顾客订单!!!');
return;
}
}
console.log(">>>>>>>>>>>>",a);
this.orderData = a;
const data = this.orderList;
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);
})
}
console.log("orderList------------------->",this.orderList);
console.log("list------------------->",list);
console.log("orderData------------------->",this.orderData);
this.orderData = info;
this.orderShow = false;
},
selectionClear() {
@ -1230,7 +1227,7 @@
},
onLoad(page, params = {}) {
this.loading = true;
this.form.deliveryType = '1';
this.form.deliveryType = '10';
this.form.deliveryWay = '10';
this.form.periodOfTime = '3';
this.form.otherFee = 0;
@ -1270,7 +1267,7 @@
// stockArticleListInfo.forEach(item=>{
//
// })
console.log(">>>>>>>>",reservation);
console.log('>>>>>>>>', reservation);
this.orderData = reservation.stockArticleList;
this.inventoryData = reservation.inventoryList;
this.inventoryData.forEach(item => {
@ -1287,11 +1284,9 @@
this.form = reservation;
});
} else {
this.form.deliveryType = '2';
this.form.deliveryType = '20';
}
this.loading = false;
}
}

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

@ -295,23 +295,29 @@
<el-input v-model="query.descriptionGoods" placeholder="请输入货物名称"></el-input>
</el-form-item>
<el-form-item label="运单号:">
<el-input v-model="query.customerTelephone" placeholder="请输入运单号"></el-input>
<el-input v-model="query.waybillNumber" placeholder="请输入运单号"></el-input>
</el-form-item>
<el-form-item label="订单自编号:">
<el-input v-model="query.customerTelephone" placeholder="请输入运单号"></el-input>
<el-input v-model="query.orderCode" placeholder="请输入订单自编号"></el-input>
</el-form-item>
<el-form-item label="服务号:">
<el-input v-model="query.customerTelephone" placeholder="请输入运单号"></el-input>
<el-input v-model="query.serviceNumber" placeholder="请输入服务号"></el-input>
</el-form-item>
<el-form-item label="顾客姓名:">
<el-input v-model="query.customerName" placeholder="请输入服务类型"></el-input>
<el-input v-model="query.customerName" placeholder="请输入客户姓名"></el-input>
</el-form-item>
<el-form-item label="顾客电话:">
<el-input v-model="query.customerTelephone" placeholder="请输入顾客电话"></el-input>
</el-form-item>
<el-form-item label="顾客地址:">
<el-input v-model="query.customerAddress" placeholder="请输入顾客地址"></el-input>
</el-form-item>
<!-- 查询按钮 -->
<!-- <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-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>
<!-- @selection-change="selectionChange"-->
@ -355,6 +361,23 @@
>
<el-button icon="el-icon-circle-close" @click="orderShow = false"> </el-button>
</el-form-item>
<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>
<el-dialog
@ -562,11 +585,10 @@
import { getListUser } from '@/api/distribution/distributionStockup';
import { getPostList } from '@/api/system/post';
import { getListOwn } from '@/api/system/user';
import { getPackageList } from '@/api/distribution/distributionParcelList';
import { stockUpInfo } from '@/api/basicdata/basicdataGoodsArea';
import { getVehicleList } from '@/api/basicdata/basicdataVehicle';
import { getDriverList } from '@/api/basicdata/basicdataDriverArtery';
import { selectStockArticleAndParcel } from '@/api/distribution/distributionStockArticle';
import { selectStockArticleInfoList } from '@/api/distribution/distributionStockArticle';
import { getInventoryList } from '@/api/distribution/distributionStockList';
import { getDeliveryList ,updateDeliveryList} from '@/api/distribution/distributionDeliveryList';
import { mapGetters } from 'vuex';
@ -671,6 +693,11 @@
loadAndUnload:[],
//
serveType:[],
page: {
currentPage: 1,
pageSize: 10,
total: 40
},
//
tripartiteSourceData:[],
deliveryListId:'',
@ -848,6 +875,14 @@
this.deliveryListId = this.$route.query.id;
}
},
sizeChange(pageSize) {
this.page.pageSize = pageSize;
this.onLoad(this.page);
},
currentChange(currentPage) {
this.page.currentPage = currentPage;
this.onLoad(this.page);
},
checkPackage(row,index){
console.log(">>>>>>>>>>>>",row,index);
@ -886,7 +921,6 @@
//
let params={};
console.log("^^^^^^^^",row);
this.query.stockArticleId = row.id;
//
//使
//
@ -915,21 +949,14 @@
//
//
let params={};
console.log("^^^^^^^^",row);
this.query.stockArticleId = row.id;
getPackageList(Object.assign(params,this.query)).then(res=>{
console.log(res.data.data);
let data =res.data.data;
this.packageData =data.records;
this.packageData.forEach((item,index)=>{
this.$nextTick( ()=> {
this.$refs.packageList.toggleRowSelection(this.packageData[index],true);
})
this.packageData = row.parcelListVOS
this.packageData.forEach((item,index)=>{
this.$nextTick( ()=> {
this.$refs.packageList.toggleRowSelection(this.packageData[index],true);
})
this.selectionClear();
})
console.log("^^^^^^^^",row);
}
this.loading = false;
this.isShowPackage = true;
@ -986,23 +1013,27 @@
} else {
this.inventoryData = this.selectionList;
}
this.stockListShow = false;
},
onSubmitOrder() {
console.log('>>>>>>>>>>>>', this.stockArticleList);
console.log('>>>>>>>>orderData', this.orderData);
const data = this.stockArticleList;
let info = [];
if (this.orderData){
let a = this.orderData;
this.stockArticleList.forEach(item=>{
data.forEach(item=>{
a.forEach(order=>{
console.log("order----------------->",order);
if (item.id === order.id){
item.packageListInfo = order.packageList;
console.log("order----------------->",order);
item = order;
}
})
info.push(item);
})
}
this.orderData = info;
// this.orderData.forEach(item => {
// item.reservationNum = 0;
// this.stockArticleList.forEach((list, index) => {
@ -1011,7 +1042,6 @@
// }
// });
// });
this.orderData = this.stockArticleList;
console.log('+++++++++++++++', this.orderData);
this.orderShow = false;
},
@ -1409,47 +1439,93 @@
//TODO
this.query.typeService=1;
this.query.genre = "1";
const page = this.page;
let params = {};
selectStockArticleAndParcel(Object.assign(params,this.query)).then(res=>{
console.log("------------->",this.query);
selectStockArticleInfoList(page.currentPage,page.pageSize,Object.assign(params,this.query)).then(res=>{
console.log(res.data.data);
const data = res.data.data;
data.forEach(item => {
if (this.orderData){
this.orderData.forEach(a=>{
if (item.id === a.id){
item.packageList = a.packageList;
}
})
}
// item.reservationNum = item.handQuantity;
});
this.page.total = data.total;
this.stockArticleInfo = data;
this.loading = false;
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);
})
}
})
}
})
this.loading = false;
this.query={};
// 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);
})
}
})
})
}
// 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(){
this.query={
typeService:1,
genre:'1'
};
this.searchChange();
},
searchChange(){
let params = {};
console.log("query------------->",this.query);
const page = this.page;
selectStockArticleInfoList(page.currentPage,page.pageSize,Object.assign(params,this.query)).then(res=>{
console.log("------------------->",res);
const data = res.data.data
this.stockArticleInfo = data.records;
if (this.orderData){
this.stockArticleInfo.forEach((item,index)=>{
this.orderData.forEach(order=>{
if (item.id === order.id){
console.log("----------->");
this.$nextTick(() => {
this.$refs.stockArticleTable.toggleRowSelection(this.stockArticleInfo[index], true);
})
}
})
})
}
})
// selectStockArticleAndParcel(Object.assign(params,this.query)).then(res=>{
// console.log("res------------>",res.data.data);
// const data = res.data.data
// this.stockArticleInfo = data;
// if (this.deliveryListId){
// this.stockArticleInfo.forEach((item,index)=>{
// this.orderData.forEach(order=>{
// if (item.id === order.id){
// console.log("----------->");
// this.$nextTick(() => {
// this.$refs.stockArticleTable.toggleRowSelection(this.stockArticleInfo[index], true);
// })
// }
// })
// })
// }
// })
},
handleAddInventory() {
this.form.deliveryType ='1';
let params = {};

Loading…
Cancel
Save