From a512286963a6ba4c5842f82038a5f64858e104e6 Mon Sep 17 00:00:00 2001 From: aike <17730485278@139.com> Date: Thu, 5 Mar 2026 14:23:32 +0800 Subject: [PATCH] =?UTF-8?q?demand:=20=20=20tms-=E6=88=90=E6=9C=AC=E7=AE=A1?= =?UTF-8?q?=E7=90=86-=E8=BF=90=E5=8D=95=E5=88=A9=E6=B6=A6=E7=BB=9F?= =?UTF-8?q?=E8=AE=A1-=E7=BB=9F=E8=AE=A1=E8=BF=90=E5=8D=95=E5=88=A9?= =?UTF-8?q?=E6=B6=A6=E5=89=94=E9=99=A4=E9=97=AE=E9=A2=98=E4=BB=B6=E7=B1=BB?= =?UTF-8?q?=E5=9E=8B=E4=B8=BA=E9=9D=A2=E5=8D=95=E5=88=A0=E9=99=A4=E7=9A=84?= =?UTF-8?q?=E8=BF=90=E5=8D=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- emis-biz/src/main/resources/mapper/EmisTmsCostProfitMapper.xml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/emis-biz/src/main/resources/mapper/EmisTmsCostProfitMapper.xml b/emis-biz/src/main/resources/mapper/EmisTmsCostProfitMapper.xml index b8a255def..ab85bc8ba 100644 --- a/emis-biz/src/main/resources/mapper/EmisTmsCostProfitMapper.xml +++ b/emis-biz/src/main/resources/mapper/EmisTmsCostProfitMapper.xml @@ -56,6 +56,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" from emis_tms_cost_profit b,emis_waybill a a.bill_code=b.bill_code and a.del_flag='0' and b.del_flag='0' + and not EXISTS ( + select 1 from emis_waybill_problem_info ewpi where a.bill_code=ewpi.bill_code and ewpi.del_flag='0' and ewpi.`problem_type` in(151) + ) and b.id = #{id} and ( FIND_IN_SET(b.`bill_code`,#{billCode}) ) and b.standard_fee = #{standardFee}