Browse Source

YT-1428直接发货,扫描标签数是1,现带出所有库存数,应扫描多有带出多少

intex_online20241205
张立 4 months ago
parent
commit
6f678ec425
  1. 2
      src/mycomponents/record/recordComDetailCard.vue
  2. 4
      src/pages/deliver/record/deliverRecord.vue

2
src/mycomponents/record/recordComDetailCard.vue

@ -7,7 +7,7 @@
<uni-swipe-action-item @click="removeItem($event,dataContent)" :right-options="scanOptions"> <uni-swipe-action-item @click="removeItem($event,dataContent)" :right-options="scanOptions">
<item-qty :dataContent="dataContent" :isShowBalance="true" <item-qty :dataContent="dataContent" :isShowBalance="true"
:isShowBalanceQty="isShowBalanceQty" :isShowBalanceQty="isShowBalanceQty"
:isShowRecommendQty="false" :isShowRecommendQty="true"
></item-qty> ></item-qty>
<view style="margin-left: 10px; margin-top: 5px;"> <view style="margin-left: 10px; margin-top: 5px;">
<pack title='父包装' v-if="dataContent.containerNumber" :packingCode='dataContent.containerNumber'></pack> <pack title='父包装' v-if="dataContent.containerNumber" :packingCode='dataContent.containerNumber'></pack>

4
src/pages/deliver/record/deliverRecord.vue

@ -228,6 +228,7 @@
if (item == undefined) { if (item == undefined) {
var itemp = createItemInfo(balance, pack); var itemp = createItemInfo(balance, pack);
let newDetail = createDetailInfo(balance, pack); // let newDetail = createDetailInfo(balance, pack); //
newDetail.handleQty = parseFloat(result.label.qty)
itemp.subList.push(newDetail); itemp.subList.push(newDetail);
this.detailSource.push(itemp) this.detailSource.push(itemp)
} else { } else {
@ -240,6 +241,7 @@
}) })
if (detail == undefined) { if (detail == undefined) {
let newDetail = createDetailInfo(balance, pack); let newDetail = createDetailInfo(balance, pack);
newDetail.handleQty = parseFloat(result.label.qty)
item.subList.push(newDetail); item.subList.push(newDetail);
} else { } else {
detail.handleQty =calc.add(detail.handleQty, result.label.qty) detail.handleQty =calc.add(detail.handleQty, result.label.qty)
@ -257,6 +259,7 @@
}, },
calcHandleQty() { calcHandleQty() {
calcHandleQty(this.detailSource); calcHandleQty(this.detailSource);
console.log(this.detailSource)
this.$forceUpdate(); this.$forceUpdate();
}, },
@ -436,6 +439,7 @@
}) })
this.dataContent.subList = subList; this.dataContent.subList = subList;
this.dataContent.creator = creator; this.dataContent.creator = creator;
this.dataContent.businessType = this.businessType.code
this.dataContent.customerCode = this.customerCode; this.dataContent.customerCode = this.customerCode;
this.dataContent.fromWarehouseCode = this.detailSource[0].subList[0].warehouseCode; this.dataContent.fromWarehouseCode = this.detailSource[0].subList[0].warehouseCode;
this.dataContent.toWarehouseCode = this.toWarehouseCode; this.dataContent.toWarehouseCode = this.toWarehouseCode;

Loading…
Cancel
Save