From 23ebc7322abf63b7818e4de353ababce18bff978 Mon Sep 17 00:00:00 2001
From: 廖井涛 <2265517004@qq.com>
Date: 星期一, 08 七月 2024 09:51:02 +0800
Subject: [PATCH] 产品id筛选时报错
---
north-glass-erp/src/main/resources/mapper/sd/ProductMapper.xml | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/north-glass-erp/src/main/resources/mapper/sd/ProductMapper.xml b/north-glass-erp/src/main/resources/mapper/sd/ProductMapper.xml
index cd28050..e915d83 100644
--- a/north-glass-erp/src/main/resources/mapper/sd/ProductMapper.xml
+++ b/north-glass-erp/src/main/resources/mapper/sd/ProductMapper.xml
@@ -47,7 +47,7 @@
and a.type_id like concat('%',#{glassTypeId},'%')
</if>
<if test="product.id != null and product.id != ''">
- and a.id like like concat('%',#{product.id},'%')
+ and a.id like concat('%',#{product.id},'%')
</if>
<if test="product.productName != null and product.productName != ''">
and a.product_name like concat('%',#{product.productName},'%')
--
Gitblit v1.8.0