use of com.netsteadfast.greenstep.base.model.SystemMessage in project bamboobsc by billchen198318.
the class EmployeeServiceImpl method findForInKpiEmpl.
@Override
public DefaultResult<List<BbEmployee>> findForInKpiEmpl(String kpiId) throws ServiceException, Exception {
if (StringUtils.isBlank(kpiId)) {
throw new ServiceException(SysMessageUtil.get(GreenStepSysMsgConstants.PARAMS_BLANK));
}
DefaultResult<List<BbEmployee>> result = new DefaultResult<List<BbEmployee>>();
List<BbEmployee> searchList = this.employeeDAO.findForInKpiEmpl(kpiId);
if (searchList != null && searchList.size() > 0) {
result.setValue(searchList);
} else {
result.setSystemMessage(new SystemMessage(SysMessageUtil.get(GreenStepSysMsgConstants.SEARCH_NO_DATA)));
}
return result;
}
use of com.netsteadfast.greenstep.base.model.SystemMessage in project bamboobsc by billchen198318.
the class FormulaServiceImpl method findForSimple.
@Override
public DefaultResult<List<FormulaVO>> findForSimple(boolean trendsFlag) throws ServiceException, Exception {
DefaultResult<List<FormulaVO>> result = new DefaultResult<List<FormulaVO>>();
List<FormulaVO> searchList = this.formulaDAO.findForSimple((trendsFlag ? YesNo.YES : YesNo.NO));
if (searchList != null && searchList.size() > 0) {
result.setValue(searchList);
} else {
result.setSystemMessage(new SystemMessage(SysMessageUtil.get(GreenStepSysMsgConstants.SEARCH_NO_DATA)));
}
return result;
}
use of com.netsteadfast.greenstep.base.model.SystemMessage in project bamboobsc by billchen198318.
the class OrganizationLogicServiceImpl method updateParent.
@ServiceMethodAuthority(type = { ServiceMethodType.UPDATE })
@Transactional(propagation = Propagation.REQUIRED, readOnly = false, rollbackFor = { RuntimeException.class, IOException.class, Exception.class })
@Override
public DefaultResult<Boolean> updateParent(OrganizationVO organization, String parentOid) throws ServiceException, Exception {
if (organization == null || super.isBlank(organization.getOid()) || super.isBlank(parentOid)) {
throw new ServiceException(SysMessageUtil.get(GreenStepSysMsgConstants.PARAMS_BLANK));
}
DefaultResult<Boolean> result = new DefaultResult<Boolean>();
result.setValue(Boolean.FALSE);
result.setSystemMessage(new SystemMessage(SysMessageUtil.get(GreenStepSysMsgConstants.UPDATE_FAIL)));
organization = this.findOrganizationData(organization.getOid());
this.deleteParent(organization);
if ("root".equals(parentOid) || "r".equals(parentOid)) {
this.createParent(organization, BscConstants.ORGANIZATION_ZERO_ID);
} else {
OrganizationVO newParOrganization = this.findOrganizationData(parentOid);
// 找當前部門的子部門中的資料, 不因該存在要update的新父部門
if (this.foundChild(organization.getOrgId(), newParOrganization.getOrgId())) {
throw new ServiceException(SysMessageUtil.get(GreenStepSysMsgConstants.DATA_ERRORS));
}
this.createParent(organization, newParOrganization.getOrgId());
}
result.setValue(Boolean.TRUE);
result.setSystemMessage(new SystemMessage(SysMessageUtil.get(GreenStepSysMsgConstants.UPDATE_SUCCESS)));
return result;
}
use of com.netsteadfast.greenstep.base.model.SystemMessage in project bamboobsc by billchen198318.
the class OrganizationLogicServiceImpl method getOrgChartData.
/**
* 這個 Method 的 ServiceMethodAuthority 權限給查詢狀態
* 這裡的 basePath 只是要取 getTreeData 時參數要用, 再這是沒有用處的
*/
@ServiceMethodAuthority(type = { ServiceMethodType.SELECT })
@Override
public DefaultResult<Map<String, Object>> getOrgChartData(String basePath, OrganizationVO currentOrganization) throws ServiceException, Exception {
if (null != currentOrganization && !super.isBlank(currentOrganization.getOid())) {
currentOrganization = this.findOrganizationData(currentOrganization.getOid());
}
List<Map<String, Object>> treeMap = this.getTreeData(basePath, false, "");
if (null == treeMap || treeMap.size() < 1) {
throw new ServiceException(SysMessageUtil.get(GreenStepSysMsgConstants.SEARCH_NO_DATA));
}
this.resetTreeMapContentForOrgChartData(treeMap, currentOrganization);
Map<String, Object> rootMap = new HashMap<String, Object>();
rootMap.put("name", "Organization / Department hierarchy");
rootMap.put("title", "hierarchy structure");
rootMap.put("children", treeMap);
DefaultResult<Map<String, Object>> result = new DefaultResult<Map<String, Object>>();
result.setValue(rootMap);
result.setSystemMessage(new SystemMessage(SysMessageUtil.get(GreenStepSysMsgConstants.INSERT_SUCCESS)));
return result;
}
use of com.netsteadfast.greenstep.base.model.SystemMessage in project bamboobsc by billchen198318.
the class ImportDataLogicServiceImpl method importMeasureData.
@ServiceMethodAuthority(type = { ServiceMethodType.INSERT, ServiceMethodType.UPDATE })
@Transactional(propagation = Propagation.REQUIRED, readOnly = false, rollbackFor = { RuntimeException.class, IOException.class, Exception.class })
@Override
public DefaultResult<Boolean> importMeasureData(String uploadOid) throws ServiceException, Exception {
List<Map<String, String>> csvResults = UploadSupportUtils.getTransformSegmentData(uploadOid, "TRAN005");
if (csvResults.size() < 1) {
throw new ServiceException(SysMessageUtil.get(GreenStepSysMsgConstants.DATA_NO_EXIST));
}
boolean success = false;
DefaultResult<Boolean> result = new DefaultResult<Boolean>();
StringBuilder msg = new StringBuilder();
Map<String, Object> paramMap = new HashMap<String, Object>();
for (int i = 0; i < csvResults.size(); i++) {
int row = i + 1;
Map<String, String> data = csvResults.get(i);
String kpiId = data.get("KPI_ID");
String date = data.get("DATE");
String target = data.get("TARGET");
String actual = data.get("ACTUAL");
String frequency = data.get("FREQUENCY");
String orgId = data.get("ORG_ID");
String empId = data.get("EMP_ID");
if (super.isBlank(kpiId)) {
msg.append("row: " + row + " kpi id is blank." + Constants.HTML_BR);
continue;
}
if (super.isBlank(date)) {
msg.append("row: " + row + " date is blank." + Constants.HTML_BR);
continue;
}
if (super.isBlank(target)) {
msg.append("row: " + row + " target is blank." + Constants.HTML_BR);
continue;
}
if (super.isBlank(actual)) {
msg.append("row: " + row + " actual is blank." + Constants.HTML_BR);
continue;
}
if (super.isBlank(frequency)) {
msg.append("row: " + row + " frequency is blank." + Constants.HTML_BR);
continue;
}
if (super.isBlank(orgId)) {
msg.append("row: " + row + " organization-id is blank." + Constants.HTML_BR);
continue;
}
if (super.isBlank(empId)) {
msg.append("row: " + row + " employee-no is blank." + Constants.HTML_BR);
continue;
}
if (!SimpleUtils.isDate(date)) {
msg.append("row: " + row + " is not date " + date + Constants.HTML_BR);
continue;
}
if (!NumberUtils.isNumber(target)) {
msg.append("row: " + row + " target is not number." + Constants.HTML_BR);
continue;
}
if (!NumberUtils.isNumber(actual)) {
msg.append("row: " + row + " actual is not number." + Constants.HTML_BR);
continue;
}
if (BscMeasureDataFrequency.getFrequencyMap(false).get(frequency) == null) {
msg.append("row: " + row + " frequency is not found." + Constants.HTML_BR);
continue;
}
paramMap.clear();
paramMap.put("id", kpiId);
if (this.kpiService.countByParams(paramMap) < 1) {
msg.append("row: " + row + " KPI is not found " + kpiId + Constants.HTML_BR);
continue;
}
if (!BscConstants.MEASURE_DATA_ORGANIZATION_FULL.equals(orgId)) {
paramMap.clear();
paramMap.put("orgId", orgId);
if (this.organizationService.countByParams(paramMap) < 1) {
msg.append("row: " + row + " organization-id is not found " + orgId + Constants.HTML_BR);
continue;
}
}
if (!BscConstants.MEASURE_DATA_EMPLOYEE_FULL.equals(empId)) {
paramMap.clear();
paramMap.put("empId", empId);
if (this.employeeService.countByParams(paramMap) < 1) {
msg.append("row: " + row + " employee-no is not found " + empId + Constants.HTML_BR);
continue;
}
}
MeasureDataVO measureData = new MeasureDataVO();
measureData.setKpiId(kpiId);
measureData.setDate(date);
measureData.setTarget(Float.valueOf(target));
measureData.setActual(Float.valueOf(actual));
measureData.setFrequency(frequency);
measureData.setOrgId(orgId);
measureData.setEmpId(empId);
DefaultResult<MeasureDataVO> oldResult = this.measureDataService.findByUK(measureData);
if (oldResult.getValue() != null) {
// update
measureData.setOid(oldResult.getValue().getOid());
this.measureDataService.updateObject(measureData);
} else {
// insert
this.measureDataService.saveObject(measureData);
}
success = true;
}
if (msg.length() > 0) {
result.setSystemMessage(new SystemMessage(msg.toString()));
} else {
result.setSystemMessage(new SystemMessage(SysMessageUtil.get(GreenStepSysMsgConstants.UPDATE_SUCCESS)));
}
result.setValue(success);
return result;
}
Aggregations