Search in sources :

Example 1 with PdcaOwnerVO

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

the class PdcaLogicServiceImpl method createOwner.

private void createOwner(PdcaVO pdca, List<String> emplOids) throws ServiceException, Exception {
    for (String oid : emplOids) {
        EmployeeVO employee = this.findEmployeeData(oid);
        PdcaOwnerVO pdcaOwner = new PdcaOwnerVO();
        pdcaOwner.setPdcaOid(pdca.getOid());
        pdcaOwner.setEmpId(employee.getEmpId());
        this.pdcaOwnerService.saveObject(pdcaOwner);
    }
}
Also used : PdcaOwnerVO(com.netsteadfast.greenstep.vo.PdcaOwnerVO) EmployeeVO(com.netsteadfast.greenstep.vo.EmployeeVO)

Aggregations

EmployeeVO (com.netsteadfast.greenstep.vo.EmployeeVO)1 PdcaOwnerVO (com.netsteadfast.greenstep.vo.PdcaOwnerVO)1