From a764c6c50fde5dcbf409d83a262ee7bbe7f01776 Mon Sep 17 00:00:00 2001 From: zhangjing1 Date: Mon, 23 Mar 2026 13:59:51 +0800 Subject: [PATCH] fix(ECX-8150): pass individual title when submitting personal invoice Use individual_title for company_title param when invoice_type is not enterprise instead of empty string so backend receives the correct personal invoice title. Made-with: Cursor --- src/subpages/trade/invoice.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/subpages/trade/invoice.js b/src/subpages/trade/invoice.js index c7ade0908..c6ed67e24 100644 --- a/src/subpages/trade/invoice.js +++ b/src/subpages/trade/invoice.js @@ -163,7 +163,7 @@ function Invoice(props) { invoice_type_code: info?.invoice_type_code, invoice_type: info?.invoice_type, company_title: - info?.invoice_type == 'enterprise' ? info?.company_title : '', + info?.invoice_type == 'enterprise' ? info?.company_title : info?.individual_title, email: info?.email } if (params.invoice_type === 'enterprise') {