|
@@ -60,6 +60,9 @@ public class PortalController extends BaseController {
|
|
|
demand = demandService.findOrgPortalDemandDetail(id);
|
|
demand = demandService.findOrgPortalDemandDetail(id);
|
|
|
}
|
|
}
|
|
|
if (null != demand) {
|
|
if (null != demand) {
|
|
|
|
|
+ if (null != demand.getBudgetCost()) {
|
|
|
|
|
+ demand.setBudgetCostS(demand.getBudgetCost() + UNIT);
|
|
|
|
|
+ }
|
|
|
Integer industryCategoryA = demand.getIndustryCategoryA();
|
|
Integer industryCategoryA = demand.getIndustryCategoryA();
|
|
|
String industryCategory = "";
|
|
String industryCategory = "";
|
|
|
boolean a = Boolean.FALSE;
|
|
boolean a = Boolean.FALSE;
|
|
@@ -81,7 +84,7 @@ public class PortalController extends BaseController {
|
|
|
industryCategory += (a ? s.getIndustryCategoryAS() : "") + (a && b ? DELIMITER : "")
|
|
industryCategory += (a ? s.getIndustryCategoryAS() : "") + (a && b ? DELIMITER : "")
|
|
|
+ (b ? s.getIndustryCategoryBS() : "");
|
|
+ (b ? s.getIndustryCategoryBS() : "");
|
|
|
s.setIndustryCategory(industryCategory);
|
|
s.setIndustryCategory(industryCategory);
|
|
|
- if (null != s.getBudgetCost()){
|
|
|
|
|
|
|
+ if (null != s.getBudgetCost()) {
|
|
|
s.setBudgetCostS(s.getBudgetCost() + UNIT);
|
|
s.setBudgetCostS(s.getBudgetCost() + UNIT);
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
@@ -101,7 +104,7 @@ public class PortalController extends BaseController {
|
|
|
industryCategory += (a ? demand.getIndustryCategoryAS() : "") + (a && b ? DELIMITER : "")
|
|
industryCategory += (a ? demand.getIndustryCategoryAS() : "") + (a && b ? DELIMITER : "")
|
|
|
+ (b ? demand.getIndustryCategoryBS() : "");
|
|
+ (b ? demand.getIndustryCategoryBS() : "");
|
|
|
demand.setIndustryCategory(industryCategory);
|
|
demand.setIndustryCategory(industryCategory);
|
|
|
-
|
|
|
|
|
|
|
+
|
|
|
String location = "";
|
|
String location = "";
|
|
|
String province = demand.getProvince();
|
|
String province = demand.getProvince();
|
|
|
String city = demand.getCity();
|
|
String city = demand.getCity();
|
|
@@ -202,6 +205,5 @@ public class PortalController extends BaseController {
|
|
|
mv.addObject("achievement", achievement);
|
|
mv.addObject("achievement", achievement);
|
|
|
return mv;
|
|
return mv;
|
|
|
}
|
|
}
|
|
|
-
|
|
|
|
|
|
|
|
|
|
}
|
|
}
|