From fd409f667398ab16fe99c065431efd1c410d3018 Mon Sep 17 00:00:00 2001 From: liujiang <569804566@qq.com> Date: Fri, 22 Aug 2025 15:31:56 +0800 Subject: [PATCH] =?UTF-8?q?master=EF=BC=9A=E5=AE=A2=E6=88=B7=E9=94=80?= =?UTF-8?q?=E5=94=AE=E5=AE=9A=E4=BB=B7bug=E4=BF=AE=E5=A4=8D=EF=BC=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../main/resources/mapper/StoreProductColorPriceMapper.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xkt/src/main/resources/mapper/StoreProductColorPriceMapper.xml b/xkt/src/main/resources/mapper/StoreProductColorPriceMapper.xml index 2553e7c2d..035701064 100644 --- a/xkt/src/main/resources/mapper/StoreProductColorPriceMapper.xml +++ b/xkt/src/main/resources/mapper/StoreProductColorPriceMapper.xml @@ -98,10 +98,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" store_product_color_price spcp JOIN store_product sp ON spcp.store_prod_id = sp.id JOIN store_product_color spc ON spcp.store_prod_id = spc.store_prod_id AND spc.store_color_id = spcp.store_color_id AND spc.del_flag = 0 - JOIN store_customer_product_discount scpd ON scpd.store_prod_color_id = spc.id AND scpd.del_flag = 0 + LEFT JOIN store_customer_product_discount scpd ON scpd.store_prod_color_id = spc.id AND scpd.del_flag = 0 WHERE spcp.del_flag = 0 - AND spc.id = #{storeProdColorId} + AND spc.id = #{storeProdColorId} \ No newline at end of file