Examples of invokeUpdate()


Examples of com.exedosoft.plat.bo.DOService.invokeUpdate()

          .getService("do_wfi_nodeinstance_deletebypiuid");
      deleteNIs.invokeUpdate(processInstance.getObjUid());

      DOService deleteNIRels = DOService
          .getService("do_wfi_ni_dependency_deleterubbish");
      deleteNIRels.invokeUpdate();

    } catch (Exception ex1) {
      ts.rollback();
      ex1.printStackTrace();
      throw new WFException("流程结束,保存结束状态出错::" + ex1.toString(), ex1);
View Full Code Here

Examples of com.exedosoft.plat.bo.DOService.invokeUpdate()

      this.setEchoValue(I18n.instance().get("您输入的的旧密码不正确"));
      return NO_FORWARD;
    }else{
     
      DOService updatePassword = DOService.getService("do.bx.user.update.passowrd");
      updatePassword.invokeUpdate(StringUtil.MD5(new_password1),DOGlobals.getInstance().getSessoinContext().getUser().getUid());
    }
 
    return DEFAULT_FORWARD;
  }
 
View Full Code Here

Examples of com.exedosoft.plat.bo.DOService.invokeUpdate()

  }
 
  public static void main(String[] args) throws ExedoException{
   
    DOService aService = DOService.getService("DO_ORG_ACCOUNT_ResetPassword");
    aService.invokeUpdate("a","a");
   
   
  }

}
View Full Code Here

Examples of com.exedosoft.plat.bo.DOService.invokeUpdate()

          updateService.removeMetaParameter(aPara);
          DAOUtil.INSTANCE().delete(aPara);
        }
//////////////////////////////  DO_Parameter_Service_deleterubbish 这个 sql需要改写 
        DOService deletes = DOService.getService("DO_Parameter_Service_deleterubbish");
        deletes.invokeUpdate();
     
       
//////////////////////表格元素
        for(int i = 0 ;i < 10;i++){
          DOFormModel aFm = DOFormModel.getFormModelByProperty(dop.getObjUid());
View Full Code Here

Examples of com.exedosoft.plat.bo.DOService.invokeUpdate()

      aLog.putValue("old_value", oldInstance.getName() + "-------详细信息:"
          + oldInstance.toString());
    }

    try {
      aLogService.invokeUpdate(aLog);
    } catch (ExedoException e) {
      // TODO Auto-generated catch block
      e.printStackTrace();
    }
View Full Code Here

Examples of com.exedosoft.plat.bo.DOService.invokeUpdate()

      try {
        BOInstance aInstance = new BOInstance();
        aInstance.putValue("logoffTime", new Timestamp(System
            .currentTimeMillis()));
        aInstance.putValue("sessionid", se.getSession().getId());
        updateService.invokeUpdate(aInstance);
        // aInstance.invokeUpdate();
      } catch (ExedoException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
      }
View Full Code Here

Examples of com.exedosoft.plat.bo.DOService.invokeUpdate()

    if(users==null || users.size()==0){
      this.setEchoValue(I18n.instance().get("您输入的的旧密码不正确"));
      return NO_FORWARD;
    }else{
      DOService updatePassword = DOService.getService("tbemployee.change.password");
      updatePassword.invokeUpdate(StringUtil.MD5(new_password1),DOGlobals.getInstance().getSessoinContext().getUser().getUid());
    }
 
    return DEFAULT_FORWARD;
  }
View Full Code Here

Examples of com.exedosoft.plat.bo.DOService.invokeUpdate()

     
      // /删除选中模板的节点
      if (curPt != null) {
        DOService deleService = DOService
            .getService("do_pt_node_deletebyptuid");
        deleService.invokeUpdate(curPt.getUid());

        ////删除关联
        DOService deleRelations = DOService
        .getService("do_pt_node_denpendency_deleterubbish");
        deleRelations.invokeUpdate();
View Full Code Here

Examples of com.exedosoft.plat.bo.DOService.invokeUpdate()

        deleService.invokeUpdate(curPt.getUid());

        ////删除关联
        DOService deleRelations = DOService
        .getService("do_pt_node_denpendency_deleterubbish");
        deleRelations.invokeUpdate();
      }else{
        this.setEchoValue(I18n.instance().get("当前Session丢失,请重新登录!"));

        return NO_FORWARD;
      }
View Full Code Here

Examples of com.exedosoft.plat.bo.DOService.invokeUpdate()

    // TODO Auto-generated method stub
    DOService insertLoginLog = DOService.getService("do_log_insert");
    Map map = new HashMap();
    map.put("userName", "tttt");
    map.put("sessionid", "aaaaaaaaaaa");
    insertLoginLog.invokeUpdate(map);

  }

}
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.