商品下架

This commit is contained in:
2024-11-11 14:34:09 +08:00
parent 5908ce1afc
commit 5f76f1da2c

View File

@@ -931,7 +931,7 @@
select min( sku.suit ) as suit,tb.*
from tb_product tb
LEFT JOIN tb_product_sku sku ON tb.id = sku.product_id
where tb.id in (${ids}) and is_show_mall =1 and sku.is_del = 0 and sku.is_grounding=1 and tb.type_enum!='group' and tb.status = 1
where tb.id in (${ids}) and sku.is_del = 0 and tb.is_grounding=1 and tb.type_enum!='group' and tb.status = 1
group by tb.id
order by tb.sort asc
</select>