|
@@ -1073,6 +1073,7 @@
|
|
|
console.log(this.saleProductList, 'this.saleProductList33333');
|
|
console.log(this.saleProductList, 'this.saleProductList33333');
|
|
|
let pData = {
|
|
let pData = {
|
|
|
type: '1',
|
|
type: '1',
|
|
|
|
|
+ deliveryNo: this.formData.sourceBizNo,
|
|
|
builders: this.detailList.map((item) => {
|
|
builders: this.detailList.map((item) => {
|
|
|
return {
|
|
return {
|
|
|
categoryId:
|
|
categoryId:
|
|
@@ -1085,6 +1086,7 @@
|
|
|
};
|
|
};
|
|
|
let pData2 = {
|
|
let pData2 = {
|
|
|
type: this.wwType,
|
|
type: this.wwType,
|
|
|
|
|
+ deliveryNo: this.formData.sourceBizNo,
|
|
|
taskIds: this.extractedList.map((item) => item.taskId),
|
|
taskIds: this.extractedList.map((item) => item.taskId),
|
|
|
workOrderIds: this.extractedList.map((item) => item.workOrderId),
|
|
workOrderIds: this.extractedList.map((item) => item.workOrderId),
|
|
|
|
|
|
|
@@ -1092,12 +1094,14 @@
|
|
|
let pData3 = {
|
|
let pData3 = {
|
|
|
//销售退货处理 外协出库
|
|
//销售退货处理 外协出库
|
|
|
type: 3,
|
|
type: 3,
|
|
|
|
|
+ deliveryNo: this.formData.sourceBizNo,
|
|
|
outInIds: this.form?.returnInReceiptId?.split(','),
|
|
outInIds: this.form?.returnInReceiptId?.split(','),
|
|
|
packageNos: this.detailList.map((item) => item.packageNo)
|
|
packageNos: this.detailList.map((item) => item.packageNo)
|
|
|
};
|
|
};
|
|
|
let pData4 = {
|
|
let pData4 = {
|
|
|
//受托退货
|
|
//受托退货
|
|
|
type: 3,
|
|
type: 3,
|
|
|
|
|
+ deliveryNo: this.formData.sourceBizNo,
|
|
|
ids: this.detailList.map((item) => item.packageId)?.toString()
|
|
ids: this.detailList.map((item) => item.packageId)?.toString()
|
|
|
};
|
|
};
|
|
|
let api = this.bizType == 8 ? 'getHierarchyList' : 'getHierarchyFifo';
|
|
let api = this.bizType == 8 ? 'getHierarchyList' : 'getHierarchyFifo';
|