From 3c691391eb9f1d161b2ecff1b8267be881818aeb Mon Sep 17 00:00:00 2001 From: fengyuan_yang <1976974459@qq.com> Date: Wed, 19 Nov 2025 09:52:47 +0800 Subject: [PATCH] =?UTF-8?q?2025-11-19=20=E9=94=80=E5=94=AE=E6=8A=A5?= =?UTF-8?q?=E4=BB=B7-=E6=9D=A1=E7=9B=AE=E6=98=8E=E7=BB=86=E9=A1=B5?= =?UTF-8?q?=E7=AD=BE=E4=B8=AD=E5=A2=9E=E5=8A=A0=E6=9C=80=E7=BB=88=E4=BA=A4?= =?UTF-8?q?=E6=98=93=E4=BB=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/java/com/spring/modules/quote/entity/QuoteDetail.java | 2 ++ src/main/resources/mapper/quote/QuoteDetailMapper.xml | 1 + 2 files changed, 3 insertions(+) diff --git a/src/main/java/com/spring/modules/quote/entity/QuoteDetail.java b/src/main/java/com/spring/modules/quote/entity/QuoteDetail.java index cc6effb4..810c9a28 100644 --- a/src/main/java/com/spring/modules/quote/entity/QuoteDetail.java +++ b/src/main/java/com/spring/modules/quote/entity/QuoteDetail.java @@ -141,6 +141,8 @@ public class QuoteDetail { private String currency1;// 币种1 + private BigDecimal finalTransactionPrice;// 最终交易价 + private BigDecimal exchangeRate1;// 兑换率1 被当作其他税率使用 private String currency2; // 币种2 diff --git a/src/main/resources/mapper/quote/QuoteDetailMapper.xml b/src/main/resources/mapper/quote/QuoteDetailMapper.xml index 3fe7e75f..0cc4ec7c 100644 --- a/src/main/resources/mapper/quote/QuoteDetailMapper.xml +++ b/src/main/resources/mapper/quote/QuoteDetailMapper.xml @@ -66,6 +66,7 @@ qd.quote_tax_unit_price, qd.currency1, dbo.plm_get_dictDataLabel('plm_customer_information_customer_customer_currency', qd.currency1, qd.site) as currencyDesc1, + qd.final_transaction_price, qd.exchange_rate1, qd.currency2, dbo.plm_get_dictDataLabel('plm_customer_information_customer_customer_currency', qd.currency2, qd.site) as currencyDesc2,