Browse Source

修改库移编辑

master_hella
lijuncheng 4 days ago
parent
commit
d5840893b0
  1. 2
      src/mycomponents/qty/balanceQtyEdit.vue
  2. 6
      src/pages/inventoryMove/coms/comMoveRecordCard.vue

2
src/mycomponents/qty/balanceQtyEdit.vue

@ -16,7 +16,7 @@
<view class="uni-flex uni-row space-between padding title ">
<text>包装数量 : </text>
<view class="uni-flex uni-row u-col-center">
<uni-number-box @change="calcQty($event,stdCount)" :value="stdCount">
<uni-number-box :disabled="!allowEditQty" @change="calcQty($event,stdCount)" :value="stdCount">
</uni-number-box>
<!-- <uom :uom="dataContent.uom"></uom -->
<!-- <uom :uom="dataContent.packUnit"></uom> -->

6
src/pages/inventoryMove/coms/comMoveRecordCard.vue

@ -125,7 +125,8 @@
detailOptions: [],
scanOptions: [],
removeOptions: [],
dataList: []
dataList: [],
currentHandleQty:0
}
},
@ -158,6 +159,7 @@
edit(item) {
this.editItem = item;
this.currentHandleQty =item.handleQty;
this.$refs.balanceQtyEdit.openEditPopup(item, item.qty);
},
@ -198,7 +200,7 @@
});
},
confirm(qty) {
this.editItem.handleQty = qty;
this.editItem.handleQty = this.currentHandleQty;
this.$emit('updateData')
}
}

Loading…
Cancel
Save