From 6f05a5bbf6b8b51b6c9243b935a2ff0d0cc99c58 Mon Sep 17 00:00:00 2001 From: fengyuan_yang <1976974459@qq.com> Date: Sat, 28 Feb 2026 13:40:09 +0800 Subject: [PATCH] =?UTF-8?q?2026-02-28=20=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../service/impl/QuotationInformationServiceImpl.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/spring/modules/quotation/service/impl/QuotationInformationServiceImpl.java b/src/main/java/com/spring/modules/quotation/service/impl/QuotationInformationServiceImpl.java index 1a6da02d..5ef709de 100644 --- a/src/main/java/com/spring/modules/quotation/service/impl/QuotationInformationServiceImpl.java +++ b/src/main/java/com/spring/modules/quotation/service/impl/QuotationInformationServiceImpl.java @@ -781,10 +781,10 @@ public class QuotationInformationServiceImpl extends ServiceImpl() .eq("site", data.getSite()) - .eq("quotation_batch_no", data.getQuotationBatchNo()) + .eq("quotation_no", data.getQuotationNo()) ); if (current == null) { - throw new RuntimeException("未找到单据,quotationBatchNo: " + data.getQuotationBatchNo()); + throw new RuntimeException("未找到单据,quotationNo: " + data.getQuotationNo()); } if (!"审批中".equals(current.getQuotationStatus())) { throw new RuntimeException("单据状态已变更(当前状态:" + current.getQuotationStatus() + "),请刷新页面后重试!");