|
|
|
@ -185,6 +185,7 @@
|
|
|
|
|
</template> |
|
|
|
|
</el-table-column> |
|
|
|
|
</el-table> |
|
|
|
|
|
|
|
|
|
</el-tab-pane> |
|
|
|
|
|
|
|
|
|
<el-tab-pane label="库存品"> |
|
|
|
@ -285,6 +286,23 @@
|
|
|
|
|
</el-table-column> |
|
|
|
|
</template> |
|
|
|
|
</el-table> |
|
|
|
|
<el-row> |
|
|
|
|
<div class="avue-crud__pagination" style="width: 100%"> |
|
|
|
|
<!-- 分页模块 --> |
|
|
|
|
<el-pagination |
|
|
|
|
align="right" |
|
|
|
|
background |
|
|
|
|
@size-change="sizeOrderChange" |
|
|
|
|
@current-change="currentOrderChange" |
|
|
|
|
: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-form-item style="margin-left: 45%;margin-top: 5px"> |
|
|
|
|
<el-button type="primary" icon="el-icon-circle-close" @click="onSubmitOrder">提交(订单)</el-button> |
|
|
|
|
<el-button icon="el-icon-circle-close" @click="orderShow=false">返 回</el-button> |
|
|
|
@ -679,50 +697,51 @@
|
|
|
|
|
console.log("------------>",'预约编辑'); |
|
|
|
|
//编辑和新增不一样的处理方式 |
|
|
|
|
//这里需要查询出未被预约的订单和该预约自己本身的订单 |
|
|
|
|
selectUpdateAvailableStockArticle(this.reservationId).then(res=>{ |
|
|
|
|
console.log('res------------>', res); |
|
|
|
|
const data = res.data.data; |
|
|
|
|
this.stockArticleInfo = data |
|
|
|
|
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); |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
}else { |
|
|
|
|
this.orderList = []; |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
}) |
|
|
|
|
|
|
|
|
|
// selectUpdateAvailableStockArticle(this.reservationId).then(res=>{ |
|
|
|
|
// console.log('res------------>', res); |
|
|
|
|
// const data = res.data.data; |
|
|
|
|
// this.stockArticleInfo = data |
|
|
|
|
// 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); |
|
|
|
|
// }); |
|
|
|
|
// } |
|
|
|
|
// }); |
|
|
|
|
// }else { |
|
|
|
|
// this.orderList = []; |
|
|
|
|
// } |
|
|
|
|
// }); |
|
|
|
|
// }) |
|
|
|
|
this.onLoadEditOrder(this.page); |
|
|
|
|
}else { |
|
|
|
|
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); |
|
|
|
|
// }); |
|
|
|
|
// } |
|
|
|
|
// }); |
|
|
|
|
// }else { |
|
|
|
|
// this.orderList = []; |
|
|
|
|
// } |
|
|
|
|
}); |
|
|
|
|
this.orderList = []; |
|
|
|
|
|
|
|
|
|
}); |
|
|
|
|
this.onLoadOrder(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); |
|
|
|
|
// // }); |
|
|
|
|
// // } |
|
|
|
|
// // }); |
|
|
|
|
// // }else { |
|
|
|
|
// // this.orderList = []; |
|
|
|
|
// // } |
|
|
|
|
// }); |
|
|
|
|
// this.orderList = []; |
|
|
|
|
// |
|
|
|
|
// }); |
|
|
|
|
} |
|
|
|
|
this.loading = false; |
|
|
|
|
console.log("this.stockArticleInfo------------->",this.stockArticleInfo); |
|
|
|
@ -976,16 +995,22 @@
|
|
|
|
|
let page = this.page; |
|
|
|
|
this.query.typeService = 2; |
|
|
|
|
this.query.genre = 1; |
|
|
|
|
selectStockArticleList(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(res => { |
|
|
|
|
const data = res.data.data; |
|
|
|
|
data.records.forEach(item => { |
|
|
|
|
item.reservationNum = item.handQuantity; |
|
|
|
|
}); |
|
|
|
|
this.page.total = data.total; |
|
|
|
|
this.stockArticleInfo = data.records; |
|
|
|
|
this.loading = false; |
|
|
|
|
// this.selectionClear(); |
|
|
|
|
}); |
|
|
|
|
if (this.reservationId){ |
|
|
|
|
this.onLoadEditOrder(this.page) |
|
|
|
|
}else { |
|
|
|
|
this.onLoadOrder(this.page) |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
// selectStockArticleList(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(res => { |
|
|
|
|
// const data = res.data.data; |
|
|
|
|
// data.records.forEach(item => { |
|
|
|
|
// item.reservationNum = item.handQuantity; |
|
|
|
|
// }); |
|
|
|
|
// this.page.total = data.total; |
|
|
|
|
// this.stockArticleInfo = data.records; |
|
|
|
|
// this.loading = false; |
|
|
|
|
// // this.selectionClear(); |
|
|
|
|
// }); |
|
|
|
|
}, |
|
|
|
|
searchStockList() { |
|
|
|
|
let params = {}; |
|
|
|
@ -1266,15 +1291,82 @@
|
|
|
|
|
this.query = {}; |
|
|
|
|
// this.$refs.table.clearSelection(); |
|
|
|
|
}, |
|
|
|
|
currentChange(currentPage) { |
|
|
|
|
currentOrderChange(currentPage) { |
|
|
|
|
this.page.currentPage = currentPage; |
|
|
|
|
this.onLoad(this.page); |
|
|
|
|
if (this.reservationId){ |
|
|
|
|
this.onLoadEditOrder(this.page,this.reservationId); |
|
|
|
|
}else { |
|
|
|
|
this.onLoadOrder(this.page); |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
sizeChange(pageSize) { |
|
|
|
|
sizeOrderChange(pageSize) { |
|
|
|
|
this.page.pageSize = pageSize; |
|
|
|
|
this.onLoad(this.page); |
|
|
|
|
if (this.reservationId){ |
|
|
|
|
this.onLoadEditOrder(this.page,this.reservationId); |
|
|
|
|
|
|
|
|
|
}else { |
|
|
|
|
|
|
|
|
|
this.onLoadOrder(this.page); |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
onLoad(page, params = {}) { |
|
|
|
|
onLoadEditOrder(arg,params = {}){ |
|
|
|
|
const page = arg; |
|
|
|
|
selectUpdateAvailableStockArticle(page.currentPage, page.pageSize,this.reservationId,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); |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
}else { |
|
|
|
|
this.orderList = []; |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
this.page.total = data.total; |
|
|
|
|
}) |
|
|
|
|
// this.query = {}; |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
onLoadOrder(arg,params={}){ |
|
|
|
|
console.log("------------->arg",arg); |
|
|
|
|
const page = arg; |
|
|
|
|
console.log("------------->page",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); |
|
|
|
|
// }); |
|
|
|
|
// } |
|
|
|
|
// }); |
|
|
|
|
// }else { |
|
|
|
|
// this.orderList = []; |
|
|
|
|
// } |
|
|
|
|
this.page.total = data.total; |
|
|
|
|
}); |
|
|
|
|
this.orderList = []; |
|
|
|
|
|
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
onLoad() { |
|
|
|
|
// this.loading = true; |
|
|
|
|
this.form.deliveryType = '2'; |
|
|
|
|
this.form.deliveryWay = '10'; |
|
|
|
|