|
@ -14,7 +14,7 @@ |
|
|
<!-- 管理精度是批次 --> |
|
|
<!-- 管理精度是批次 --> |
|
|
<comReceiptDetailCardBacth ref='comReceiptDetailCardBacthRef' :dataContent="item" :index="index" |
|
|
<comReceiptDetailCardBacth ref='comReceiptDetailCardBacthRef' :dataContent="item" :index="index" |
|
|
:settingParam="jobContent" @remove="updateData" @updateData="updateData" |
|
|
:settingParam="jobContent" @remove="updateData" @updateData="updateData" |
|
|
:locationAreaTypeList='toLocationAreaTypeList' :isNumPackTips='true' :isShowSupplierQty='true' |
|
|
:locationAreaTypeList='toLocationAreaTypeList' :isNumPackTips='true' :isShowSupplierQty='true' :isShowBatchSupplierQty='fasle' :isShowPackUnit='false' :isShowStatus='false' |
|
|
:isShowBatch="false" :isShowBatchDeliNo='true' packTitle='看板编号'> |
|
|
:isShowBatch="false" :isShowBatchDeliNo='true' packTitle='看板编号'> |
|
|
</comReceiptDetailCardBacth> |
|
|
</comReceiptDetailCardBacth> |
|
|
</view> |
|
|
</view> |
|
@ -126,6 +126,7 @@ |
|
|
this.detailSource.forEach(item => { |
|
|
this.detailSource.forEach(item => { |
|
|
item.subList.forEach(cur => { |
|
|
item.subList.forEach(cur => { |
|
|
cur.packList = cur.packageDOS |
|
|
cur.packList = cur.packageDOS |
|
|
|
|
|
cur.scaned = cur.packageDOS.some(i=>i.scaned == true) ? true :false |
|
|
cur.packList.forEach(i => { |
|
|
cur.packList.forEach(i => { |
|
|
i.packingNumber = i.remark |
|
|
i.packingNumber = i.remark |
|
|
if (i.scaned == true) { |
|
|
if (i.scaned == true) { |
|
@ -316,6 +317,7 @@ |
|
|
this.showMessage("批次【" + batch + "】不在列表中") |
|
|
this.showMessage("批次【" + batch + "】不在列表中") |
|
|
} else { |
|
|
} else { |
|
|
console.log(batchDetail) |
|
|
console.log(batchDetail) |
|
|
|
|
|
batchDetail.scaned = true |
|
|
const packingDetail = batchDetail.packList.find(r => r.packingNumber == packingNumber); |
|
|
const packingDetail = batchDetail.packList.find(r => r.packingNumber == packingNumber); |
|
|
if (!packingDetail) { |
|
|
if (!packingDetail) { |
|
|
this.showMessage("看板编号【" + packingNumber + "】不在列表中") |
|
|
this.showMessage("看板编号【" + packingNumber + "】不在列表中") |
|
|