|
|
@@ -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 : "")
|