Browse Source

商配计划数据回显调整

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

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

@ -95,7 +95,8 @@
<br/>
<el-button size="small" @click="cancelReservation(slotProps.scope)">取消预约</el-button>
<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>
</tablecmt>
<!-- <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() {
this.form.serveType = this.form.serveType.join(',');
update(this.form).then(() => {

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

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

Loading…
Cancel
Save