Browse Source

修改拒收功能

hella_online_20240829
lijuncheng 3 months ago
parent
commit
101aa144e5
  1. 6
      src/api/request2.js
  2. 57
      src/pages/purchaseReceipt/job/receiptDetail.vue

6
src/api/request2.js

@ -2304,9 +2304,9 @@ export function productDismantleRecordSubmit(params) {
*/
export function productDismantleJobClose(params) {
return request({
url: baseApi + "/wms/purchasereceipt-job-main/refusal?id="+params,
method: "put",
data: {},
url: baseApi + "/wms/purchasereceipt-job-main/refusal",
method: "post",
data: params,
});
}

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

@ -14,6 +14,13 @@
@change="switchChange"></u-switch>
</view>
</view>
<view class="" v-if="operation=='reject'">
<uni-section title="拒收原因" type="line">
<uni-easyinput v-model="reasonText" placeholder="请输入拒收原因"></uni-easyinput>
</uni-section>
</view>
<!-- <required-location ref="locationCompare" title="默认收货库位 :" :locationCode="jobToLocationCode"
:isShowEdit="false"></required-location>
<view class='split_line'></view> -->
@ -135,8 +142,9 @@
isAllReceived: false,
operation: '',
scanedPackingNumber: '',
status:'',
switchCode:''
status: '',
switchCode: '',
reasonText: ""
};
},
@ -151,7 +159,7 @@
},
onShow(){
onShow() {
if (this.id != undefined) {
//
if (this.status == "1") {
@ -242,7 +250,9 @@
s.scaned = true
s.cancleScanedHiht = true
s.copyContent = "HPQ;V1.0;I" + s.itemCode + ";P" + s.packingNumber + ";B" + s.batch + ";Q" + s.qty
s.copyContent = "HPQ;V1.0;I" + s.itemCode +
";P" + s.packingNumber + ";B" + s.batch +
";Q" + s.qty
this.$refs.scanPopup.simulateScan(s);
this.scanedPackingNumber = ''
}
@ -275,7 +285,7 @@
if (itemDetail.length == 0) {
this.showErrorMessage("物料【" + itemCode + "】、托码【" + containerNumber + "】不在列表中")
} else {
if (!itemDetail[0].cancleScanedHiht&&itemDetail[0].scaned) {
if (!itemDetail[0].cancleScanedHiht && itemDetail[0].scaned) {
this.showErrorMessage("物料【" + itemCode + "】、托码【" + containerNumber + "】已经扫描")
} else {
itemDetail.forEach(item => {
@ -322,7 +332,7 @@
if (isExit == undefined) {
this.showMessage("箱码【" + packingNumber + "】、批次【" + batch + "】不在列表中")
} else {
if (!isExit.cancleScanedHiht&&isExit.scaned) {
if (!isExit.cancleScanedHiht && isExit.scaned) {
this.showMessage("箱码【" + packingNumber + "】已经扫描")
} else {
isExit.scaned = true
@ -340,7 +350,8 @@
scanedLength++;
}
})
if (!itemDetail.cancleScanedHiht&&itemDetail.scaned && scanedLength == itemDetail.packList.length) {
if (!itemDetail.cancleScanedHiht && itemDetail.scaned && scanedLength == itemDetail
.packList.length) {
this.showMessage("箱码【" + packingNumber + "】已经扫描")
} else {
itemDetail.scaned = true;
@ -440,13 +451,21 @@
},
reject() {
if(!this.reasonText){
this.showMessage("请输入拒收原因")
return;
}
this.$refs.comMessage.showQuestionMessage('是否要拒收任务<br>[' + this.jobContent.asnNumber + ']?', res => {
if (res) {
uni.showLoading({
title: "提交中....",
mask: true
});
productDismantleJobClose(this.id).then(res => {
var params = {
id: this.id,
refuseReason: this.reasonText
}
productDismantleJobClose(params).then(res => {
console.log('拒收', res)
if (res.data) {
navigateBack(1)
@ -481,11 +500,11 @@
if (res.data) {
let isCheckPrint = getSwitchInfoByCode(this.switchCode)
if(!isCheckPrint){
if (!isCheckPrint) {
uni.hideLoading()
this.showCommitSuccessMessage("提交成功<br>生成采购收货记录<br>" + res.data.number)
}else{
} else {
uni.showLoading({
title: "提交成功,将跳转到打印页面",
mask: true
@ -512,26 +531,32 @@
pageSize: 1000,
}).then(res1 => {
timerCount = timerCount + 1
if (res1.data && res1.data.list && res1.data
if (res1.data && res1.data.list && res1
.data
.list.length && (res1.data.total >= res
.data.detailCount)) {
uni.hideLoading()
clearInterval(timer1)
const dataParams = {
toLocationCode: res1.data.list[0]
toLocationCode: res1.data.list[
0]
.toLocationCode,
number: res1.data.list[0].number,
creator: res1.data.list[0].creator,
number: res1.data.list[0]
.number,
creator: res1.data.list[0]
.creator,
createTime: res1.data.list[0]
.createTime,
ids: res1.data.list.map(item =>
item.masterId).join(',')
item.masterId).join(
',')
}
console.log(dataParams)
uni.redirectTo({
url: '/pages/pointPutawayJob/index?data=' +
encodeURIComponent(JSON
.stringify(dataParams))
.stringify(
dataParams))
})
}
})

Loading…
Cancel
Save