Antiloveg 8 years ago
parent
commit
9e5a0d67ae

+ 2 - 2
src/main/java/com/goafanti/common/controller/PortalController.java

@@ -72,10 +72,10 @@ public class PortalController extends BaseController {
 						a = Boolean.FALSE;
 						b = Boolean.FALSE;
 						industryCategory = "";
-						if (StringUtils.isBlank(s.getIndustryCategoryAS())) {
+						if (StringUtils.isNotBlank(s.getIndustryCategoryAS())) {
 							a = Boolean.TRUE;
 						}
-						if (StringUtils.isBlank(s.getIndustryCategoryBS())) {
+						if (StringUtils.isNotBlank(s.getIndustryCategoryBS())) {
 							b = Boolean.TRUE;
 						}
 						industryCategory += (a ? s.getIndustryCategoryAS() : "") + (a && b ? DELIMITER : "")