Jelajahi Sumber

fix(outbound): 添加deliveryNo到请求参数中

liujt 4 bulan lalu
induk
melakukan
2ef3ea84c7
1 mengubah file dengan 4 tambahan dan 0 penghapusan
  1. 4 0
      src/views/bpm/outgoingManagement/outbound.vue

+ 4 - 0
src/views/bpm/outgoingManagement/outbound.vue

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