Browse Source

装配bug

hella_online_20240829
zhang_li 2 months ago
parent
commit
ac00e4b979
  1. 4
      src/pages/productPutaway/record/fgDirectPutaway.vue
  2. 13
      src/pages/productPutaway/record/productPutawayRecord.vue

4
src/pages/productPutaway/record/fgDirectPutaway.vue

@ -22,12 +22,12 @@
onShow() {
if(this.$refs.productPutawayRecord!=undefined){
this.$refs.productPutawayRecord.refresh();
// this.$refs.productPutawayRecord.refresh();
}
},
onPullDownRefresh() {
this.$refs.productPutawayRecord.refresh();
// this.$refs.productPutawayRecord.refresh();
},
onNavigationBarButtonTap(e) {
if (e.index === 0) {

13
src/pages/productPutaway/record/productPutawayRecord.vue

@ -142,7 +142,7 @@
},
methods: {
getScanResult(result) {
getScanResult(result) {
let label = result.label;
let pack = result.package;
result.balance.forEach(
@ -156,15 +156,16 @@
if (item == undefined) {
var itemp = createItemInfo(balance, pack);
//
let newDetail = createDetailInfo(balance, pack);
newDetail.fromInventoryStatus = balance.inventoryStatus;
itemp.subList.push(newDetail);
this.getRecommendLocation(balance, res => {
itemp.toLocationCode = res.code;
itemp.expectinNumber = res.expectinNumber;
this.$forceUpdate();
this.detailSource.push(itemp)
this.$forceUpdate();
})
let newDetail = createDetailInfo(balance, pack); //
newDetail.fromInventoryStatus = balance.inventoryStatus;
itemp.subList.push(newDetail);
this.detailSource.push(itemp)
} else {
var detail = item.subList.find(r => {
if (r.packingNumber == balance.packingNumber &&

Loading…
Cancel
Save