Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jiedao-api-boot-master
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lanbaoming
jiedao-api-boot-master
Commits
355d67ee
Commit
355d67ee
authored
Mar 18, 2025
by
honghy
Committed by
wux
Mar 20, 2025
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bug310 (生产bug)【订单-入仓/入仓修改】“品牌”无法通过英文标题和法文标题进行查询
parent
2e656e99
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
ProductBrankMapper.java
...le/product/dal/mysql/productbrank/ProductBrankMapper.java
+3
-1
No files found.
yudao-module-product/yudao-module-product-core/src/main/java/cn/iocoder/yudao/module/product/dal/mysql/productbrank/ProductBrankMapper.java
View file @
355d67ee
...
...
@@ -77,7 +77,9 @@ public interface ProductBrankMapper extends AbstractMapper<ProductBrankDO> {
.
eqIfPresent
(
ProductBrankDO:
:
getFiling
,
reqVO
.
getFiling
())
.
betweenIfPresent
(
ProductBrankDO:
:
getCreateTime
,
reqVO
.
getBeginCreateTime
(),
reqVO
.
getEndCreateTime
());
if
(
StringUtils
.
isNotEmpty
(
reqVO
.
getTitleZh
()))
{
productBrankDOLambdaQueryWrapper
.
apply
(
" lower(title_zh) like concat('%', '"
+
reqVO
.
getTitleZh
().
toLowerCase
()+
"','%')"
);
productBrankDOLambdaQueryWrapper
.
apply
(
" (lower(title_zh) like concat('%', '"
+
reqVO
.
getTitleZh
().
toLowerCase
()+
"','%')"
+
" or lower(title_fr) like concat('%', '"
+
reqVO
.
getTitleZh
().
toLowerCase
()+
"','%')"
+
" or lower(title_en) like concat('%', '"
+
reqVO
.
getTitleZh
().
toLowerCase
()+
"','%'))"
);
}
productBrankDOLambdaQueryWrapper
.
orderByDesc
(
ProductBrankDO:
:
getId
);
return
selectPage
(
reqVO
,
productBrankDOLambdaQueryWrapper
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment