|
|
@ -43,7 +43,7 @@ |
|
|
|
<view class="cen_card margin_xs_bottom"> |
|
|
|
<view class="label_box uni-flex uni-row space-between"> |
|
|
|
<view class="label_info"> |
|
|
|
<text>不合格数量:{{ item.recommendQty}}({{ item.recommendUom}})</text> |
|
|
|
<text>不合格数量:{{ item.recommendQty}}({{ item.uom}})</text> |
|
|
|
</view> |
|
|
|
<view v-if="item.purchaseReceiptInspectStatus==3?true:false" @click="seePhoto(item)"> |
|
|
|
<!-- <label class=""> |
|
|
@ -146,7 +146,6 @@ |
|
|
|
that.itemList = that.receiptJob.details.filter(r => { |
|
|
|
return r.purchaseReceiptInspectStatus == 3 |
|
|
|
}) |
|
|
|
|
|
|
|
that.receiptJob.details.forEach(r => { |
|
|
|
that.allCount += r.recommendQty; |
|
|
|
switch (r.purchaseReceiptInspectStatus) { |
|
|
@ -202,23 +201,23 @@ |
|
|
|
}) |
|
|
|
//赋值 |
|
|
|
that.receiptJob.details.forEach(r => { |
|
|
|
r.handledLocationCode = r.recommendLocationCode; |
|
|
|
r.handledToLocationCode = r.recommendToLocationCode; |
|
|
|
r.worker = localStorage.userName |
|
|
|
if (r.purchaseReceiptInspectStatus == 1) { |
|
|
|
r.handledArriveDate = new Date(); // |
|
|
|
r.purchaseReceiptInspectStatus = 4; //未收货 |
|
|
|
r.handledQty = 0; |
|
|
|
r.handledUom = r.recommendUom; |
|
|
|
// r.handledUom = r.recommendUom; |
|
|
|
r.handledContainerCode = r.recommendContainerCode; |
|
|
|
r.handledPackingCode = r.recommendPackingCode; |
|
|
|
r.handledSupplierBatch = r.recommendSupplierBatch; |
|
|
|
r.handledProduceDate = r.recommendProduceDate; |
|
|
|
r.handledExpireDate = r.recommendExpireDate; |
|
|
|
r.handledLot = r.recommendLot; |
|
|
|
r.handledLocationCode = r.recommendLocationCode; |
|
|
|
r.handledLocationArea = r.recommendLocationArea; |
|
|
|
r.handledLocationGroup = r.recommendLocationGroup; |
|
|
|
r.handledLocationErpCode = r.recommendLocationErpCode; |
|
|
|
r.handledToLocationCode = r.recommendToLocationCode; |
|
|
|
r.handledToLocationArea = r.recommendToLocationArea; |
|
|
|
r.handledToLocationGroup = r.recommendToLocationGroup; |
|
|
|
r.handledToLocationErpCode = r.recommendToLocationErpCode; |
|
|
|
} |
|
|
|
}); |
|
|
|
|
|
|
|