瀏覽代碼

修改子表备注

yuansh 1 天之前
父節點
當前提交
495d66d5b1

+ 1 - 0
src/views/saleCode/deliveryNotice/components/deliveryNoticeForm.vue

@@ -730,6 +730,7 @@
           item.productClass = item.classId_dictText;
           item.productCode = item.code;
           item.productId = item.id;
+          item.notes = '';
           item.id = undefined;
         });
         var xTable = deliveryDetailFormProductTableRef.value!.getXTable(); //关键代码 如果不更新 重新加载表格即可

+ 1 - 1
src/views/saleCode/quotation/components/quotationFormForm.vue

@@ -885,7 +885,7 @@
           item.currencyGys = item.currency;
           item.exchangeRateGys = item.exchangeRateUsd;
           item.taxPriceGys = item.taxPrice;
-          item.notes = '';
+          item.notes = item.childNotes;
           item.purchaseAmount = (Number(item.quantity) * Number(item.purchasePrice)).toFixed(2);
         }
         var xTable = saleQuotationFormProductTableRef.value!.getXTable();

+ 1 - 1
src/views/saleCode/saleContract/components/SaleContractModal.vue

@@ -303,7 +303,7 @@
       item.id =undefined;
       item.taxPrice = item.salePrice;
       item.deliveryTime = moment(time.billDate).add(Number(item.deliveryDayChild), 'days').format('YYYY-MM-DD');
-      item.notes='',
+      item.notes=item.notes;
       item.preDiscountPrice = (Number(item.salePrice)/(1-Number(item.discount)/100)).toFixed(2);
     });
     var xTable = saleContractProduct.value!.getXTable();