ソースを参照

fix: 遗漏参数补充.

peter 1 年間 前
コミット
0f7482f707
1 ファイル変更4 行追加3 行削除
  1. 4 3
      src/pages/payment-record/index.vue

+ 4 - 3
src/pages/payment-record/index.vue

@@ -399,12 +399,13 @@ const save = function () {
     const result: any = {
       Unit_Price: i.unit_price,
       Quantity: i.quantity ? i.quantity.toString() : '',
-      Sample_Fee: i.sample_fee,
-      Setup_Service_Fee: i.setup_service_fee,
-      Total: i.total,
+      Sample_Fee: i.sample_fee || 0,
+      Setup_Service_Fee: i.setup_service_fee || 0,
+      Total: i.total || 0,
       Currency: i.currency,
       Description: i.description,
       PO_id: i.po_number,
+      SKU: i.sku,
       Payment_Type: i.payment_type,
       Statement: { name: i.statement_name, id: statementID.value },
       Request_Type: '月结申请',