Browse Source

商配计划数据回显调整

dev-warehouse
kilo 2 years ago
parent
commit
c5c6d6924f
  1. 16
      src/views/distribution/reservation/reservation.vue
  2. 19
      src/views/distribution/turndelivery/deliveryDiscuss.vue

16
src/views/distribution/reservation/reservation.vue

@ -95,7 +95,8 @@
<br/> <br/>
<el-button size="small" @click="cancelReservation(slotProps.scope)">取消预约</el-button> <el-button size="small" @click="cancelReservation(slotProps.scope)">取消预约</el-button>
<br/> <br/>
<el-button v-if="slotProps.scope.reservationStatus==='1'?true:false" type="small" @click="removeStockArticle(slotProps.scope)">预约确认</el-button> <!-- ${{slotProps.scope}}-->
<el-button v-if="this.query.reservationStatus==='1'?true:false " type="small" @click="confirmReservation(slotProps.scope)">确认预约</el-button>
</template> </template>
</tablecmt> </tablecmt>
<!-- <el-popover :visible="visible" placement="top-start" :width="160">--> <!-- <el-popover :visible="visible" placement="top-start" :width="160">-->
@ -885,6 +886,19 @@
}); });
}); });
}, },
confirmReservation(scope){
const { row } = scope;
let param = {};
param.ids = row.id;
addReservations(param).then(res => {
this.selectionClear();
this.onLoad(this.page);
this.$message({
type: 'success',
message: '操作成功!'
});
});
},
handleSubmit() { handleSubmit() {
this.form.serveType = this.form.serveType.join(','); this.form.serveType = this.form.serveType.join(',');
update(this.form).then(() => { update(this.form).then(() => {

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

@ -662,10 +662,11 @@
<el-table-column <el-table-column
type="selection" type="selection"
v-if="option.selection" v-if="option.selection"
:selectable="checkPackage"
width="55" width="55"
align="center" align="center"
> >
<!-- :selectable="checkPackage"-->
<!-- <el-checkbox v-model="checked"></el-checkbox>--> <!-- <el-checkbox v-model="checked"></el-checkbox>-->
</el-table-column> </el-table-column>
<el-table-column type="expand" v-if="option.expand" align="center"></el-table-column> <el-table-column type="expand" v-if="option.expand" align="center"></el-table-column>
@ -1101,6 +1102,9 @@
// //
// //
this.loading = true; this.loading = true;
this.obj = row;
console.log("++++++++++++",this.obj);
if (this.deliveryListId){ if (this.deliveryListId){
// //
let params={}; let params={};
@ -1109,7 +1113,6 @@
//TODO this.query.id = 1; //TODO this.query.id = 1;
// this.query.typeService = 1; // this.query.typeService = 1;
// this.query.genre = '1'; // this.query.genre = '1';
this.obj = row;
getPackageList(Object.assign(params,this.query)).then(res=>{ getPackageList(Object.assign(params,this.query)).then(res=>{
console.log(res.data.data); console.log(res.data.data);
let data =res.data.data; let data =res.data.data;
@ -1162,15 +1165,13 @@
// //
// //
console.log(this.obj.parcelListVOS); console.log(this.obj.parcelListVOS);
console.log(this.selectionList); console.log("___________",this.obj);
this.orderData.forEach(o=>{ this.orderData.forEach(item=>{
this.selectionList.forEach(p=>{ if (item.id===this.obj.id){
if (p.stockArticleId === o.id){ item.packageList = this.selectionList;
o.packageList.push(p);
} }
}) })
}); console.log( "**********",this.orderData);
console.log(this.obj.parcelListVOS);
// if (this.selectionList.length ===this.obj.parcelListVOS.length){ // if (this.selectionList.length ===this.obj.parcelListVOS.length){
// // // //
// // // //

Loading…
Cancel
Save