lijuncheng 9 months ago
parent
commit
08d8800a92
  1. 14
      pages/inventoryMove/job/inventoryMoveDetail.vue

14
pages/inventoryMove/job/inventoryMoveDetail.vue

@ -103,7 +103,7 @@
managementList: [],
businessTypeCode: '',
toLocationCode: '',
toinventoryStatus: ''
toInventoryStatus: ''
};
},
props: {
@ -167,23 +167,23 @@
} else if (this.businessTypeCode == "HoldToOk") {
name = "隔离转合格";
this.toLocationCode = '';
this.toinventoryStatus = 'OK';
this.toInventoryStatus = 'OK';
} else if (this.businessTypeCode == "HoldToScrap") {
name = "隔离转报废";
this.toLocationCode = 'SCRAP';
this.toinventoryStatus = 'SCRAP';
this.toInventoryStatus = 'SCRAP';
} else if (this.businessTypeCode == "OkToHold") {
name = "合格转隔离";
this.toLocationCode = 'HOLD';
this.toinventoryStatus = 'HOLD';
this.toInventoryStatus = 'HOLD';
} else if (this.businessTypeCode == "OktoScrap") {
name = "合格转报废";
this.toLocationCode = 'SCRAP';
this.toinventoryStatus = 'SCRAP';
this.toInventoryStatus = 'SCRAP';
} else if (this.businessTypeCode == "ScrapToHold") {
name = "报废转隔离";
this.toLocationCode = 'HOLD';
this.toinventoryStatus = 'HOLD';
this.toInventoryStatus = 'HOLD';
}
uni.setNavigationBarTitle({
@ -453,7 +453,7 @@
detail.toBatch = info.batch;
detail.toContainerNumber = '';
// detail.toLocationCode = this.toLocationCode;
detail.toinventoryStatus=this.toinventoryStatus;
detail.toInventoryStatus=this.toInventoryStatus;
subList.push(detail)
}
})

Loading…
Cancel
Save