use of org.apache.commons.chain.impl.ContextBase in project bamboobsc by billchen198318.
the class PdcaReportContentQueryAction method getContent.
@SuppressWarnings("unchecked")
private void getContent() throws ControllerException, AuthorityException, ServiceException, Exception {
this.checkFields();
Context pdcaContext = new ContextBase();
pdcaContext.put("pdcaOid", this.getFields().get("pdcaOid"));
SimpleChain chain = new SimpleChain();
ChainResultObj pdcaReportObj = chain.getResultFromResource("pdcaReportHtmlContentChain", pdcaContext);
List<ChainResultObj> bscReportResults = null;
if ("true".equals(this.getFields().get("showBscReport"))) {
bscReportResults = this.getBscReportContent("kpiReportHtmlContentChain");
}
if (pdcaReportObj.getValue() instanceof String) {
this.body = String.valueOf(pdcaReportObj.getValue());
this.pdca = (PdcaVO) pdcaContext.get("pdca");
}
this.message = super.defaultString(pdcaReportObj.getMessage()).trim();
for (int i = 0; bscReportResults != null && i < bscReportResults.size(); i++) {
ChainResultObj bscReportObj = bscReportResults.get(i);
if (bscReportObj.getValue() instanceof String) {
this.body += String.valueOf(bscReportObj.getValue());
}
if (!this.message.equals(bscReportObj.getMessage())) {
if (!"".equals(this.message)) {
this.message += super.getHtmlBr();
}
this.message += bscReportObj.getMessage();
}
}
if (!StringUtils.isBlank(this.body)) {
this.success = IS_YES;
}
}
use of org.apache.commons.chain.impl.ContextBase in project bamboobsc by billchen198318.
the class PdcaReportContentQueryAction method getBscReportChainContext.
@SuppressWarnings("unchecked")
private Context getBscReportChainContext(String pdcaOid, String visionOid, PdcaMeasureFreqVO measureFreq) throws Exception {
Context context = new ContextBase();
context.put("visionOid", visionOid);
context.put("startDate", SimpleUtils.getStrYMD(measureFreq.getStartDate(), "/"));
context.put("endDate", SimpleUtils.getStrYMD(measureFreq.getEndDate(), "/"));
context.put("startYearDate", SimpleUtils.getStrYMD(measureFreq.getStartDate(), "/"));
context.put("endYearDate", SimpleUtils.getStrYMD(measureFreq.getEndDate(), "/"));
context.put("frequency", measureFreq.getFreq());
context.put("dataFor", measureFreq.getDataType());
context.put("orgId", measureFreq.getOrgId());
context.put("empId", measureFreq.getEmpId());
context.put("account", "");
context.put("ngVer", YesNo.NO);
List<String> kpiIds = new ArrayList<String>();
Map<String, Object> paramMap = new HashMap<String, Object>();
paramMap.put("pdcaOid", pdcaOid);
List<BbPdcaKpis> pdcaKpisList = this.pdcaKpisService.findListByParams(paramMap);
for (BbPdcaKpis pdcaKpi : pdcaKpisList) {
kpiIds.add(pdcaKpi.getKpiId());
}
// 只顯示,要顯示的KPI
context.put("kpiIds", kpiIds);
return context;
}
Aggregations