|
|
@@ -81,7 +81,7 @@ public class ReportsController extends BladeController {
|
|
|
.like(ObjectUtils.isNotNull(reports.getCnName()), Reports::getCnName, reports.getCnName())
|
|
|
.apply(ObjectUtils.isNotNull(reports.getCode()), "find_in_set(code,'" + reports.getCode() + "')")
|
|
|
.apply(ObjectUtils.isNotNull(reports.getGroupCode()), "find_in_set(group_code,'" + reports.getGroupCode() + "')")
|
|
|
- .eq(ObjectUtils.isNotNull(reports.getBusinessType()), Reports::getBusinessType, reports.getBusinessType());
|
|
|
+ .apply(ObjectUtils.isNotNull(reports.getBusinessType()), "find_in_set(business_type,'" + reports.getBusinessType() + "')");
|
|
|
if ("AMEND".equals(reports.getBusinessType())) {
|
|
|
lambdaQueryWrapper.apply(ObjectUtils.isNotNull(reports.getClassifyCode()), "find_in_set(classify_code,'" + reports.getClassifyCode() + "')");
|
|
|
} else {
|