Browse Source

Merge branch 'hella_online_20240828' into hella_online_20240803

hella_online_20240803
陈薪名 3 months ago
parent
commit
6762eaebc2
  1. 2
      src/common/detail.js
  2. 2
      src/mycomponents/record/recordComDetailCard.vue
  3. 1
      src/pages/issue/record/directIssue.vue

2
src/common/detail.js

@ -152,10 +152,12 @@ export function calcTreeHandleQty(detailSource) {
}
}
}
if(detail.handleQty){
item.handleQty = calc.add(item.handleQty, detail.handleQty);
}
}
}
}
}

2
src/mycomponents/record/recordComDetailCard.vue

@ -8,7 +8,7 @@
<item-qty :dataContent="dataContent" :isShowBalance="true"
:isShowBalanceQty="isShowBalanceQty"></item-qty>
<view style="margin-left: 10px; margin-top: 5px;">
<pack title='父包装' :packingCode='dataContent.containerNumber'></pack>
<pack title='父包装' v-if="dataContent.containerNumber" :packingCode='dataContent.containerNumber'></pack>
<location v-if="isShowParentToLocation" title='目标库位'
:locationCode='dataContent.toLocationCode'></location>
</view>

1
src/pages/issue/record/directIssue.vue

@ -209,6 +209,7 @@
this.fromWarehouseCode = balance.warehouseCode;
}
var itemp = createItemInfo(balance, pack);
itemp.containerNumber=""
let newDetail = createDetailInfo(balance, pack); //
newDetail.fromLocationCode=balance.locationCode

Loading…
Cancel
Save