Beispiel #1
0
  public String getWorkSpace() {

    List<WorkSpace> workSpaces = baseBervice.findAll(WorkSpace.class);
    Integer total = workSpaces.size(); // 这是查询出所有的记录
    String json = "";
    for (WorkSpace ws : workSpaces) {
      Long id = ws.getId();
      String workSpace = ws.getName() + "#" + ws.getMailServer();
      json += "{\"id\":\"" + id + "\",\"workSpace\":\"" + workSpace + "\" },";
    }
    if (json.length() == 0) {
      json = "{success:true,rowCount:" + "1" + ",data:[" + json.substring(0, json.length()) + "]}";
    } else {
      json =
          "{success:true,rowCount:"
              + total
              + ",data:["
              + json.substring(0, json.length() - 1)
              + "]}";
    }
    return json;
  }
Beispiel #2
0
  public synchronized String hRJobStartItilAccount(String josnData) {
    Date currentDate = DateUtil.getCurrentDate();
    String json = "";
    JSONObject jsonObj = JSONObject.fromObject(josnData);
    UserInfo user = (UserInfo) baseBervice.findUnique(UserInfo.class, "userName", "admin");
    String applyUserItCode = jsonObj.getString("applyUser");
    UserInfo applyUser =
        (UserInfo) baseBervice.findUnique(UserInfo.class, "userName", applyUserItCode);
    // add by lee for 如果本地无审批人信息,直接去R3去人员信息 in 20100119 begin
    if (applyUser == null) {
      //			 SAPExecute sap=new SAPExecute();
      //				Map userMap=sap.getUserInfo(null, applyUserItCode.toUpperCase());
      SenseServicesUitl ssUtil = new SenseServicesUitl();
      Map userMap = ssUtil.getUserInfo(applyUserItCode.toUpperCase());
      if (userMap.isEmpty()) json = "{success:false}";
      else {
        userMap.put("password", "000000");
        userMap.put("enabled", 1);
        userMap.put("isLock", 0);
        userMap.put("specialUser", 0);
        applyUser = (UserInfo) metaDataManager.saveEntityData(UserInfo.class, userMap);
      }
    }
    // add by lee for 如果本地无审批人信息,直接去R3去人员信息 in 20100119 end
    ServiceItemProcess serviceItemProcess =
        (ServiceItemProcess) baseBervice.find(ServiceItemProcess.class, "195");
    AccountApplyMainTable aam = accountService.findUserApply(serviceItemProcess, applyUser, "0");
    if (aam != null) {
      json = "{success:false}";
    } else {
      // add by liuying at 20100302 for 验证是否存在可用的邮件和域账号 start
      List<PersonFormalAccount> accs = accountService.findAllPersonAccount(applyUser);
      if (!accs.isEmpty()) {
        for (PersonFormalAccount p : accs) {
          if (p.getAccountType().getAccountType().equals("DomainAccount")
              || p.getAccountType().getAccountType().equals("MailAccount")) {
            json = "{success:false}";
          }
        }
      }
      if (!json.equals("{success:false}")) {
        // add by liuying at 20100302 for 验证是否存在可用的邮件和域账号 end
        String delegateApplyUserItCode = jsonObj.getString("delegateApplyUser"); // 代申请人信息
        UserInfo delegateApplyUser =
            (UserInfo)
                baseBervice.findUnique(
                    UserInfo.class, "itcode", delegateApplyUserItCode.toUpperCase());
        // add by lee for 如果本地无审批人信息,直接去R3去人员信息 in 20100119 begin
        if (delegateApplyUser == null) {
          //	    			 SAPExecute sap=new SAPExecute();
          //	 				 Map userMap=sap.getUserInfo(null, applyUserItCode.toUpperCase());
          SenseServicesUitl ssUtil = new SenseServicesUitl();
          Map userMap = ssUtil.getUserInfo(applyUserItCode.toUpperCase());
          if (userMap.isEmpty()) json = "{success:false}";
          else {
            userMap.put("password", "000000");
            userMap.put("enabled", 1);
            userMap.put("isLock", 0);
            userMap.put("specialUser", 0);
            delegateApplyUser = (UserInfo) metaDataManager.saveEntityData(UserInfo.class, userMap);
          }
        }
        // add by lee for 如果本地无审批人信息,直接去R3去人员信息 in 20100119 end
        String sameEmailDept = jsonObj.getString("sameEmailDept");
        SameMailDept dept =
            (SameMailDept)
                baseBervice.findUnique(SameMailDept.class, "id", Long.valueOf(sameEmailDept));
        String workSpace = jsonObj.getString("workSpace");
        WorkSpace workSpaces =
            (WorkSpace) baseBervice.findUnique(WorkSpace.class, "id", Long.valueOf(workSpace));
        String mailServer = workSpaces.getMailServer();
        MailServer ms = (MailServer) baseBervice.findUnique(MailServer.class, "name", mailServer);
        applyUser.setWorkSpace(workSpaces);
        applyUser.setSameMailDept(dept);
        applyUser.setMailServer(ms);
        Object us = baseBervice.save(applyUser);
        Map mainMap = new HashMap();
        mainMap.put("createDate", currentDate);
        mainMap.put("createUser", delegateApplyUser);
        mainMap.put("applyUser", applyUser);
        if (applyUser.getTelephone() != null) {
          mainMap.put("applyUserTel", applyUser.getTelephone());
        }
        mainMap.put("applyDate", currentDate);
        mainMap.put("delegateApplyUser", delegateApplyUser);
        if (delegateApplyUser.getTelephone() != null) {
          mainMap.put("delegateApplyTel", delegateApplyUser.getTelephone());
        }
        mainMap.put("processType", 0);
        mainMap.put("status", Constants.STATUS_DRAFT);
        mainMap.put("serviceItemProcess", 195);
        mainMap.put("serviceItem", 301);
        // mainMap.put("name", "AC-0000001884");
        SystemMainTable msmts =
            systemMainTableService.findSystemMainTableByClazz(
                AccountApplyMainTable.class); // 获取被关联表
        String msmtNames = msmts.getTableName(); // 获取被关联表英文表名
        Class accountApply = this.toClass(msmts.getClassName());
        BaseObject mainObject =
            (BaseObject)
                metaDataManager.saveEntityDataForUser(accountApply, mainMap, user); // 保存被关联主实体

        /**
         * *******************************保存HR招聘单触发帐号实体START*************************************************
         */
        SystemMainTable msmt =
            systemMainTableService.findSystemMainTableByClazz(PersonFormalAccount.class); // 获取被关联表
        String msmtName = msmt.getTableName(); // 获取被关联表英文表名
        Class account = this.toClass(msmt.getClassName());
        Map temp = new HashMap();
        Map domain = new HashMap();
        Map www = new HashMap();
        Map telephone = new HashMap();
        String mailValue = jsonObj.getString("mailValue");
        MailVolume mv =
            (MailVolume)
                baseBervice.findUnique(MailVolume.class, "value", Integer.parseInt(mailValue));
        String mailRemark = jsonObj.getString("mailRemark");

        temp.put("accountState", "0");
        temp.put("applyId", mainObject);
        temp.put("accountType", "2");
        temp.put("mailValue", mv.getId());
        temp.put("department", applyUser.getDepartment());
        temp.put("remarkDesc", mailRemark);
        temp.put("accountowner", applyUser);
        temp.put("mailServer", mailServer);
        temp.put("workSpace", workSpace);
        temp.put("costCenterCode", applyUser.getCostCenterCode());
        temp.put("sameMailDept", sameEmailDept);

        domain.put("accountState", "0");
        domain.put("applyId", mainObject);
        domain.put("department", applyUser.getDepartment());
        domain.put("accountType", "1");
        domain.put("accountowner", applyUser);
        domain.put("mailServer", mailServer);
        domain.put("sameMailDept", sameEmailDept);
        domain.put("costCenterCode", applyUser.getCostCenterCode());
        domain.put("workSpace", workSpace);

        BaseObject object = (BaseObject) metaDataManager.saveEntityData(account, temp); // 保存关联实体
        BaseObject domianObject =
            (BaseObject) metaDataManager.saveEntityData(account, domain); // 保存关联实体
        String wwwFlag = jsonObj.getString("wwwFlag");
        if (wwwFlag.equals("1")) {
          String wwwValue = jsonObj.getString("wwwValue");
          WWWScanType wwws =
              (WWWScanType)
                  baseBervice.findUnique(WWWScanType.class, "value", Integer.parseInt(wwwValue));
          String wwwRemark = jsonObj.getString("wwwRemark");
          www.put("accountState", "0");
          www.put("applyId", mainObject);
          www.put("accountType", "3");
          www.put("department", applyUser.getDepartment());
          www.put("accountowner", applyUser);
          www.put("wwwAccountValue", wwws.getId());
          www.put("applyReason", wwwRemark);
          www.put("mailServer", mailServer);
          www.put("sameMailDept", sameEmailDept);
          www.put("costCenterCode", applyUser.getCostCenterCode());
          www.put("workSpace", workSpace);
          BaseObject wwwObject =
              (BaseObject) metaDataManager.saveEntityData(account, www); // 保存关联实体
        }
        String telephoneFlag = jsonObj.getString("telephoneFlag");
        if (telephoneFlag.equals("1")) {
          String telephoneType = jsonObj.getString("telephoneType");
          String stationNumber = jsonObj.getString("stationNumber");
          Double yearMoney = jsonObj.getDouble("yearMoney");
          telephone.put("accountState", "0");
          telephone.put("applyId", mainObject);
          telephone.put("accountType", "15");
          telephone.put("accountowner", applyUser);
          telephone.put("department", applyUser.getDepartment());
          telephone.put("yearMoney", yearMoney);
          telephone.put("telephoneType", telephoneType);
          telephone.put("stationNumber", stationNumber);
          telephone.put("mailServer", mailServer);
          telephone.put("sameMailDept", sameEmailDept);
          telephone.put("workSpace", workSpace);
          telephone.put("costCenterCode", applyUser.getCostCenterCode());
          BaseObject telephoneObject =
              (BaseObject) metaDataManager.saveEntityData(account, telephone); // 保存关联实体
        }

        String definitionName = "AR_NewITAccountApply1255086207953";
        List<TelephoneAudit> audit =
            baseBervice.find(TelephoneAudit.class, "workSpace", workSpaces.getName());
        String accountManger = "";
        if (audit != null) {
          for (TelephoneAudit te : audit) {
            accountManger = te.getAuditManger();
          }
        }
        Map<String, String> mapBizz = new HashMap<String, String>();
        String buzzParameters =
            "{dataId :'"
                + mainObject.getId()
                + "',applyId : '"
                + mainObject.getId()
                + "',accountName:'"
                + mainObject.getName()
                + "',applyType: 'acproject',"
                + "applyTypeName: '新员工IT帐号申请',"
                + "customer:'',serviceItemId:'"
                + "301"
                + "'}";
        if (buzzParameters != null && !buzzParameters.equals("")) {
          JSONObject jo = JSONObject.fromObject(buzzParameters);
          Iterator it = jo.keys();
          while (it.hasNext()) {
            String key = (String) it.next();
            String value = (String) jo.get(key);
            mapBizz.put(key, value);
          }
        }
        mapBizz.put(
            "workflowHistory", "com.digitalchina.itil.service.entity.ServiceItemApplyAuditHis");
        String serviceItemId = mapBizz.get("serviceItemId");
        ServiceItem servcieItem = (ServiceItem) baseBervice.find(ServiceItem.class, serviceItemId);
        ServiceItemUserTable siut =
            (ServiceItemUserTable)
                baseBervice.findUnique(ServiceItemUserTable.class, "serviceItem", servcieItem);
        String className = siut.getClassName();
        Object obj = baseBervice.find(this.toClass(className), mainObject.getId().toString());
        BeanWrapper bWrapper = new BeanWrapperImpl(obj);
        mapBizz.put("applyNum", mainObject.getName());
        mapBizz.put("applyName", mainObject.getName());
        mapBizz.put("hrJob", "true");
        String dynCounterSignStr = "confirmByAM:";
        AccountApplyMainTable mainObj =
            (AccountApplyMainTable)
                baseBervice.find(
                    AccountApplyMainTable.class, mainObject.getId().toString(), true); // 得到面板主实体
        List<PersonFormalAccount> accounts =
            baseBervice.find(PersonFormalAccount.class, "applyId", mainObj);
        for (PersonFormalAccount acc : accounts) {
          Long at = acc.getAccountType().getId();
          AccountType ac = (AccountType) baseBervice.findUnique(AccountType.class, "id", at);
          // AccountType ac=acc.getAccountType();
          if (ac.getAccountType().equals("Telephone")) {
            dynCounterSignStr += "1" + "+";
            dynCounterSignStr += accountManger;
            String type = "&" + ac.getName() + "管理员处理";
            dynCounterSignStr += type;
            dynCounterSignStr += ";";
          } else {
            //	        		Role role=ac.getRole();
            //	        		Set<UserInfo> userinfos=role.getUserInfos();
            Long roles = ac.getRole().getId();
            Role role = (Role) baseBervice.findUnique(Role.class, "id", roles);
            List<UserRole> userRole = baseBervice.find(UserRole.class, "role", role);
            List<UserInfo> userinfos = new ArrayList();
            for (UserRole ur : userRole) {
              userinfos.add(ur.getUserInfo());
            }
            if (userinfos.size() > 1) {
              dynCounterSignStr += "1" + "+";
              for (UserInfo userinfo : userinfos) {
                dynCounterSignStr += userinfo.getUserName() + ",";
              }
              dynCounterSignStr = dynCounterSignStr.substring(0, dynCounterSignStr.length() - 1);
              String type = "&" + ac.getName() + "管理员处理";
              dynCounterSignStr += type;
              dynCounterSignStr += ";";
            } else {
              for (UserInfo userinfo : userinfos) {
                dynCounterSignStr += "1" + "+" + userinfo.getUserName();
              }
              String type = "&" + ac.getName() + "管理员处理";
              dynCounterSignStr += type;
              dynCounterSignStr += ";";
            }
          }
        }

        if (dynCounterSignStr.endsWith(";")) {
          dynCounterSignStr = dynCounterSignStr.substring(0, dynCounterSignStr.length() - 1);
        }

        mapBizz.put("dynCounterSign", dynCounterSignStr); // 放入流程参数中
        String creator = applyUser.getUserName();
        Long instanceId = null;
        String meg = "";
        try {
          instanceId = ps.createProcess(definitionName, creator, mapBizz);
          json = "{success:true}";
        } catch (Exception e) {
          meg = e.getMessage();
          json = "{success:true,Exception:'" + meg + "'}";
        }
      }
    }

    return json;
  }