Browse Source

2026-01-08

pda其他入库传关联单号和关联单行号
master
fengyuan_yang 4 days ago
parent
commit
30e63fd1d5
  1. 10
      src/views/modules/other-inout/otherInboundDetail.vue

10
src/views/modules/other-inout/otherInboundDetail.vue

@ -537,7 +537,9 @@ export default {
batchNo: this.batchNo.trim(),
warehouseId: getCurrentWarehouse(),
operationType: 'I', // I
documentType: '其他入库' //
documentType: '其他入库', //
relatedOrderNo: this.inboundInfo.relatedOrderNo,
relatedOrderLineNo: this.inboundInfo.relatedOrderLineNo
};
validateLabelWithOtherInbound(params).then(({ data }) => {
@ -596,8 +598,10 @@ export default {
buNo: this.inboundInfo.buNo,
inboundNo: this.inboundNo,
locationCode: this.locationCode.trim(),
documentType: '其他入库' //
};
documentType: '其他入库', //
relatedOrderNo: this.inboundInfo.relatedOrderNo,
relatedOrderLineNo: this.inboundInfo.relatedOrderLineNo
}
try {
const { data } = await confirmOtherInbound(params);
if (data && data.code === 0) {

Loading…
Cancel
Save