|
|
@ -4,19 +4,21 @@ |
|
|
|
<view class="header_job_top"> |
|
|
|
<jobTopAsn :dataContent="jobContent"></jobTopAsn> |
|
|
|
</view> |
|
|
|
<view class="uni-flex u-col-center" style="width: 100%;margin-top: 10rpx; margin-left: 10rpx; align-items: center; "> |
|
|
|
<view class="" style="font-size: 33rpx; font-weight: 600; "> |
|
|
|
|
|
|
|
<view class="uni-flex uni-row " style=";margin-top: 10rpx; margin-left: 10rpx; text-align: right;"> |
|
|
|
<view class="font_default" style="display: block; "> |
|
|
|
整单收货 |
|
|
|
</view> |
|
|
|
<view class="uni-flex" style="margin-left: 50rpx; align-items: center; text-align: center;"> |
|
|
|
<u-switch v-model="isAllReceived" active-color="#4DD865" inactive-color="#eee" size="42" @change="switchChange"></u-switch> |
|
|
|
<view class="uni-flex" style="margin-left: 20rpx; align-items: center; text-align: center;"> |
|
|
|
<u-switch v-model="isAllReceived" active-color="#5FCB94" inactive-color="#eee" size="35" |
|
|
|
@change="switchChange"></u-switch> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
<u-line color="#D8D8D8" style="margin-top: 10rpx; margin-bottom: 10rpx;" /> |
|
|
|
<!-- <required-location ref="locationCompare" title="默认收货库位 :" :locationCode="jobToLocationCode" |
|
|
|
:isShowEdit="false"></required-location> |
|
|
|
<u-line color="#D8D8D8" /> --> |
|
|
|
</view> |
|
|
|
<view class="split_line"></view> |
|
|
|
<view class="page-main"> |
|
|
|
<scroll-view scroll-y="true" class="page-main-scroll"> |
|
|
|
<view class="detail-list" v-for="(item, index) in detailSource" :key="item.id"> |
|
|
@ -33,8 +35,9 @@ |
|
|
|
<view class="uni-flex u-col-center space-between padding_10" |
|
|
|
style="background-color:ghostwhite; width: 100%; "> |
|
|
|
<view class=""> |
|
|
|
<locationCompare ref="locationCompare" title="收货库位:" :recommendLocationCode="jobToLocationCode" :locationCode="toLocationCode" |
|
|
|
@getLocation='scanLocationCode' :locationTypeList="toLocationTypeList"> |
|
|
|
<locationCompare ref="locationCompare" title="收货库位:" :recommendLocationCode="jobToLocationCode" |
|
|
|
:locationCode="toLocationCode" @getLocation='scanLocationCode' |
|
|
|
:locationTypeList="toLocationTypeList"> |
|
|
|
</locationCompare> |
|
|
|
</view> |
|
|
|
<view class=" uni-flex uni-row"> |
|
|
@ -46,7 +49,6 @@ |
|
|
|
<win-scan-button @goScan='openScanPopup'></win-scan-button> |
|
|
|
<winScanPackAndCont ref="scanPopup" @getResult='getScanResult'></winScanPackAndCont> |
|
|
|
<comMessage ref="comMessage"></comMessage> |
|
|
|
|
|
|
|
</view> |
|
|
|
</template> |
|
|
|
|
|
|
@ -88,7 +90,7 @@ |
|
|
|
import locationCompare from '@/mycomponents/location/locationCompare.vue' |
|
|
|
import comReceiptDetailCard from '@/pages/purchaseReceipt/coms/comReceiptDetailCard.vue' |
|
|
|
import jobTopAsn from '@/mycomponents/job/jobTopAsn.vue' |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export default { |
|
|
|
name: 'receipt_detail', |
|
|
@ -114,7 +116,7 @@ |
|
|
|
businessTypeInfo: {}, |
|
|
|
managementList: [], |
|
|
|
jobStatus: "", |
|
|
|
isAllReceived:false |
|
|
|
isAllReceived: false |
|
|
|
}; |
|
|
|
}, |
|
|
|
onLoad(option) { |
|
|
@ -200,7 +202,7 @@ |
|
|
|
that.jobStatus = res.data.status |
|
|
|
that.jobToLocationCode = that.subList[0].toLocationCode |
|
|
|
that.detailSource = getDataSource(that.subList) |
|
|
|
console.log(JSON.stringify(this.detailSource)) |
|
|
|
console.log(JSON.stringify(this.detailSource)) |
|
|
|
} else { |
|
|
|
that.showMessage('列表数据为0'); |
|
|
|
} |
|
|
@ -250,7 +252,7 @@ |
|
|
|
this.showMessage("物料号【" + itemCode + "】不在列表中") |
|
|
|
} else { |
|
|
|
var itemDetail = detail.subList.find(r => r.packingNumber == packingNumber && r.batch == |
|
|
|
batch); |
|
|
|
batch); |
|
|
|
if (itemDetail == undefined) { |
|
|
|
this.showMessage("箱码【" + packingNumber + "】、批次【" + batch + "】不在列表中") |
|
|
|
} else { |
|
|
@ -291,16 +293,16 @@ |
|
|
|
}, |
|
|
|
|
|
|
|
scanLocationCode(location, code) { |
|
|
|
if(this.jobContent.allowModifyLocation == 'TRUE'){ |
|
|
|
if (this.jobContent.allowModifyLocation == 'TRUE') { |
|
|
|
this.toLocationCode = code; |
|
|
|
}else { |
|
|
|
if(code==this.jobToLocationCode){ |
|
|
|
this.toLocationCode =code; |
|
|
|
}else { |
|
|
|
this.showErrorMessage("任务设置中不允许修改库位,扫描的库位【"+code+"】与推荐的库位【"+this.jobToLocationCode+"】不一致") |
|
|
|
} else { |
|
|
|
if (code == this.jobToLocationCode) { |
|
|
|
this.toLocationCode = code; |
|
|
|
} else { |
|
|
|
this.showErrorMessage("任务设置中不允许修改库位,扫描的库位【" + code + "】与推荐的库位【" + this.jobToLocationCode + "】不一致") |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// this.$refs.comMessage.showQuestionMessage("是否把所有的目标库位都变成默认库位[" + code + "]", res => { |
|
|
|
// this.toLocationCode = code |
|
|
|
// this.detailSource.forEach(item => { |
|
|
@ -434,23 +436,22 @@ |
|
|
|
// } |
|
|
|
return isPass; |
|
|
|
}, |
|
|
|
|
|
|
|
switchChange(isOn){ |
|
|
|
this.isAllReceived =isOn |
|
|
|
if(this.isAllReceived){ |
|
|
|
|
|
|
|
switchChange(isOn) { |
|
|
|
this.isAllReceived = isOn |
|
|
|
if (this.isAllReceived) { |
|
|
|
this.detailSource.forEach(item => { |
|
|
|
item.subList.forEach(detail => { |
|
|
|
detail.scaned =true |
|
|
|
detail.scaned = true |
|
|
|
detail.handleQty = detail.qty; |
|
|
|
detail.toLocationCode = this.toLocationCode; |
|
|
|
detail.labelQty = detail.qty; |
|
|
|
|
|
|
|
|
|
|
|
}) |
|
|
|
}) |
|
|
|
console.log(JSON.stringify(this.detailSource)) |
|
|
|
calcHandleQty(this.detailSource); |
|
|
|
this.continueScan() |
|
|
|
}else { |
|
|
|
} else { |
|
|
|
this.getDetail() |
|
|
|
} |
|
|
|
}, |
|
|
@ -543,4 +544,4 @@ |
|
|
|
background: #e0e0e0; |
|
|
|
|
|
|
|
} |
|
|
|
</style> |
|
|
|
</style> |