Search in sources :

Example 1 with KpiOrgaVO

use of com.netsteadfast.greenstep.vo.KpiOrgaVO in project bamboobsc by billchen198318.

the class KpiLogicServiceImpl method createKpiOrganization.

private void createKpiOrganization(KpiVO kpi, List<String> organizationOids) throws ServiceException, Exception {
    if (kpi == null || organizationOids == null || organizationOids.size() < 1) {
        return;
    }
    for (String oid : organizationOids) {
        OrganizationVO organization = this.findOrganizationData(oid);
        KpiOrgaVO kpiOrga = new KpiOrgaVO();
        kpiOrga.setKpiId(kpi.getId());
        kpiOrga.setOrgId(organization.getOrgId());
        this.kpiOrgaService.saveObject(kpiOrga);
    }
}
Also used : OrganizationVO(com.netsteadfast.greenstep.vo.OrganizationVO) KpiOrgaVO(com.netsteadfast.greenstep.vo.KpiOrgaVO)

Aggregations

KpiOrgaVO (com.netsteadfast.greenstep.vo.KpiOrgaVO)1 OrganizationVO (com.netsteadfast.greenstep.vo.OrganizationVO)1