Browse Source

改成批次之后的bug

syhx
张立 6 months ago
parent
commit
fc3e7dd781
  1. 2
      src/mycomponents/item/itemCompareQty.vue
  2. 2
      src/pages/purchaseReceipt/coms/comReceiptDetailCardBacth.vue
  3. 3
      src/pages/purchaseReceipt/job/receiptDetail.vue

2
src/mycomponents/item/itemCompareQty.vue

@ -1,5 +1,5 @@
<template>
<view class="uni-flex uni-row space-between uni-inline-item" style="background-color:#fff; margin-left: 10px;">
<view class="uni-flex uni-row space-between uni-inline-item" style=" margin-left: 10px;">
<view style="flex: 1;">
<item :dataContent="dataContent"></item>
</view>

2
src/pages/purchaseReceipt/coms/comReceiptDetailCardBacth.vue

@ -5,7 +5,7 @@
<template v-slot:title>
<uni-swipe-action>
<uni-swipe-action-item :right-options="dataContent.handleQty>0? removeOptions:options"
@click="swipeClick($event,dataContent)">
@click="swipeClick($event,dataContent)" :class="dataContent.scaned?'scan_view':''">
<itemCompareQty :dataContent="dataContent" :handleQty="dataContent.handleQty"
:isShowPackUnit="false"></itemCompareQty>

3
src/pages/purchaseReceipt/job/receiptDetail.vue

@ -318,6 +318,7 @@
try {
var itemCode = result.label.itemCode;
var detail = this.detailSource.find(r => r.itemCode == itemCode);
detail.scaned = true;
if (detail == undefined) {
this.showErrorMessage("物料号【" + itemCode + "】不在列表中")
return;
@ -567,6 +568,7 @@
const timer1 = setInterval(async () => {
if (timerCount == 15) {
clearInterval(timer1)
uni.hideLoading()
this.showErrorMessage("上架任务生成异常,请到收货记录里重新生成上架申请")
return;
}
@ -705,6 +707,7 @@
this.isAllReceived = isOn
if (this.isAllReceived) {
this.detailSource.forEach(item => {
item.scaned = true
item.subList.forEach(detail => {
detail.scaned = true
detail.handleQty = detail.qty;

Loading…
Cancel
Save