use of com.netsteadfast.greenstep.po.hbm.BbOrganization in project bamboobsc by billchen198318.
the class ApiWebServiceImpl method getScorecard2.
@WebMethod
@GET
@Path("/scorecard2/")
@Override
public BscApiServiceResponse getScorecard2(@WebParam(name = "visionId") @QueryParam("visionId") String visionId, @WebParam(name = "startDate") @QueryParam("startDate") String startDate, @WebParam(name = "endDate") @QueryParam("endDate") String endDate, @WebParam(name = "startYearDate") @QueryParam("startYearDate") String startYearDate, @WebParam(name = "endYearDate") @QueryParam("endYearDate") String endYearDate, @WebParam(name = "frequency") @QueryParam("frequency") String frequency, @WebParam(name = "dataFor") @QueryParam("dataFor") String dataFor, @WebParam(name = "measureDataOrganizationId") @QueryParam("measureDataOrganizationId") String measureDataOrganizationId, @WebParam(name = "measureDataEmployeeId") @QueryParam("measureDataEmployeeId") String measureDataEmployeeId, @WebParam(name = "contentFlag") @QueryParam("contentFlag") String contentFlag) throws Exception {
HttpServletRequest request = null;
if (this.getWebServiceContext() != null && this.getWebServiceContext().getMessageContext() != null) {
request = (HttpServletRequest) this.getWebServiceContext().getMessageContext().get(MessageContext.SERVLET_REQUEST);
}
Subject subject = null;
BscApiServiceResponse responseObj = new BscApiServiceResponse();
responseObj.setSuccess(YesNo.NO);
try {
subject = WsAuthenticateUtils.login();
@SuppressWarnings("unchecked") IVisionService<VisionVO, BbVision, String> visionService = (IVisionService<VisionVO, BbVision, String>) AppContext.getBean("bsc.service.VisionService");
@SuppressWarnings("unchecked") IEmployeeService<EmployeeVO, BbEmployee, String> employeeService = (IEmployeeService<EmployeeVO, BbEmployee, String>) AppContext.getBean("bsc.service.EmployeeService");
@SuppressWarnings("unchecked") IOrganizationService<OrganizationVO, BbOrganization, String> organizationService = (IOrganizationService<OrganizationVO, BbOrganization, String>) AppContext.getBean("bsc.service.OrganizationService");
String visionOid = "";
String measureDataOrganizationOid = "";
String measureDataEmployeeOid = "";
DefaultResult<VisionVO> visionResult = visionService.findForSimpleByVisId(visionId);
if (visionResult.getValue() == null) {
throw new Exception(visionResult.getSystemMessage().getValue());
}
visionOid = visionResult.getValue().getOid();
if (StringUtils.isBlank(measureDataOrganizationId)) {
measureDataOrganizationOid = BscBaseLogicServiceCommonSupport.findEmployeeDataByEmpId(employeeService, measureDataOrganizationId).getOid();
}
if (StringUtils.isBlank(measureDataEmployeeId)) {
measureDataEmployeeOid = BscBaseLogicServiceCommonSupport.findOrganizationDataByUK(organizationService, measureDataEmployeeId).getOid();
}
this.processForScorecard(responseObj, request, visionOid, startDate, endDate, startYearDate, endYearDate, frequency, dataFor, measureDataOrganizationOid, measureDataEmployeeOid, contentFlag);
} catch (Exception e) {
responseObj.setMessage(e.getMessage());
} finally {
if (!YesNo.YES.equals(responseObj.getSuccess())) {
responseObj.setMessage(SysMessageUtil.get(GreenStepSysMsgConstants.SEARCH_NO_DATA));
}
WsAuthenticateUtils.logout(subject);
}
subject = null;
return responseObj;
}
use of com.netsteadfast.greenstep.po.hbm.BbOrganization in project bamboobsc by billchen198318.
the class CommonLoadDataAction method loadMeasureDataOptions.
private void loadMeasureDataOptions() throws ControllerException, AuthorityException, ServiceException, Exception {
this.transformFields2ValueObject(this.kpi, new String[] { "oid" });
DefaultResult<KpiVO> result = this.kpiService.findObjectByOid(kpi);
if (result.getValue() == null) {
throw new ServiceException(result.getSystemMessage().getValue());
}
this.kpi = result.getValue();
DefaultResult<List<BbOrganization>> orgResult = this.organizationService.findForInKpiOrga(this.kpi.getId());
DefaultResult<List<BbEmployee>> empResult = this.employeeService.findForInKpiEmpl(this.kpi.getId());
Map<String, String> firstMap = new HashMap<String, String>();
firstMap.put("key", Constants.HTML_SELECT_NO_SELECT_ID);
firstMap.put("value", Constants.HTML_SELECT_NO_SELECT_NAME);
this.resetPleaseSelectDataMapFromLocaleLang(firstMap);
this.kpiOrga.add(firstMap);
this.kpiEmpl.add(firstMap);
if (orgResult.getValue() != null) {
for (BbOrganization organization : orgResult.getValue()) {
Map<String, String> dataMap = new HashMap<String, String>();
dataMap.put("key", organization.getOid());
dataMap.put("value", organization.getName());
this.kpiOrga.add(dataMap);
}
}
if (empResult.getValue() != null) {
for (BbEmployee employee : empResult.getValue()) {
Map<String, String> dataMap = new HashMap<String, String>();
dataMap.put("key", employee.getOid());
dataMap.put("value", employee.getFullName());
this.kpiEmpl.add(dataMap);
}
}
this.success = IS_YES;
}
Aggregations