From 9bde7bf6ace50683b8b356ce8e6daba1720e85b9 Mon Sep 17 00:00:00 2001 From: fengyuan_yang <1976974459@qq.com> Date: Sun, 20 Sep 2026 09:13:25 +0800 Subject: [PATCH] =?UTF-8?q?2026-09-20=20=E9=94=80=E5=94=AE=E6=8A=A5?= =?UTF-8?q?=E4=BB=B7=E2=80=9C=E9=A1=B9=E7=9B=AE=E5=B9=B4=E9=94=80=E5=94=AE?= =?UTF-8?q?=E9=A2=9DCNY(K)=E2=80=9D=E5=8F=96=E5=80=BC=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../spring/modules/quote/service/impl/QuoteServiceImpl.java | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/main/java/com/spring/modules/quote/service/impl/QuoteServiceImpl.java b/src/main/java/com/spring/modules/quote/service/impl/QuoteServiceImpl.java index 0cc59eca..204cfe8b 100644 --- a/src/main/java/com/spring/modules/quote/service/impl/QuoteServiceImpl.java +++ b/src/main/java/com/spring/modules/quote/service/impl/QuoteServiceImpl.java @@ -889,11 +889,6 @@ public class QuoteServiceImpl extends ServiceImpl implements return project; } - private void fillAnnualSalesFromProject(Quote quote) { - PlmProjectInfo project = getProjectOrThrow(quote.getSite(), quote.getProjectNo()); - quote.setAnnualSales(project.getProjectAmount()); - } - private PlmProjectInfo getProjectOrThrow(String site, String projectId) { if (!StringUtils.hasText(site) || !StringUtils.hasText(projectId)) { throw new RuntimeException("项目号不能为空");