Browse Source

市配配送取消库存品

dev-xx
汤建军 1 year ago
parent
commit
0908e045d9
  1. 31
      src/views/distribution/deliverylist/distributionDeliveryListedt.vue

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

@ -2920,6 +2920,17 @@ export default {
sortable: true,
head: false,
},
{
prop: 'stockPackageCode',
label: '库存品包条码',
type: 2,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
// {
// prop: 'serviceNumber',
// label: '',
@ -3838,11 +3849,31 @@ export default {
});
},
cancelReservationInventoryPackage(row) {
console.log('row', row);
console.log('deliveryId', this.deliveryId);
console.log('reservationId', this.wid);
this.$message.warning('功能维护中...');
return;
console.log('row', row);
console.log('deliveryId', this.deliveryId);
console.log('reservationId', this.wid);
let data = {
deliveryId: this.deliveryId,
reservationId: this.wid,
type: 2,
inventoryPackageIds: row.id,
};
console.log("data------->",data);
cancelReservationPackage(data).then(res => {
if (res.data.code === 200) {
this.$message.success(res.data.msg);
this.getReservationInventoryPackageListInfo(this.page);
}
});
// let data = {
// deliveryId:this.deliveryId,
// reservationId:this.wid,

Loading…
Cancel
Save