领料单表3

yangwl
mengjiao 1 week ago
parent b5647018d3
commit 57e8f022fb

@ -104,7 +104,13 @@ export function OutboundPostingSAP(data) {
method: 'post',
data: data
});
}
export function OutboundPostingzcSAP(data) {
return request({
url: '/wms/order/OutboundPostingzcSAP',
method: 'post',
data: data
});
}
}

@ -183,6 +183,7 @@ import {
addPurchaseOrderOutbound,
getlistCK,
OutboundPostingSAP,
OutboundPostingzcSAP,
listOutorderZC,
listOutorderZU
} from '@/api/wms/outorderfc'
@ -622,7 +623,7 @@ export default {
let postData = this.selectabletrows.map(item => ({ produceCode: item.produceCode,userDefined1:item.userDefined1 }));
//let postData = this.ids.map(id => ({ id: id }));
console.log(postData)
OutboundPostingSAP(JSON.stringify(postData)).then(response => {
OutboundPostingzcSAP(JSON.stringify(postData)).then(response => {
this.$modal.msgSuccess("操作完成");
});
},

Loading…
Cancel
Save