Examples of invokeSelect()


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

    //��ȡWEB-INFOĿ¼�ĸ�Ŀ¼
    File root_dir = new File(new File(current_dir.getParent()).getParent() + "/exedo/webv3/template/cms/theme/");
    File[] listDirs = root_dir.listFiles();
    DOService service = DOService .getService("cms_options_list");
    BOInstance bo = new BOInstance();
    List<BOInstance> l = service.invokeSelect(bo);
    String current_theme = "";
    if ( !l.isEmpty()){
      for(BOInstance b : l){
        System.out.println(b.getValue("opt_key"));
        if(b.getValue("opt_key").equals("themes_dir")){
View Full Code Here

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

    StringBuilder sb = new StringBuilder("<export>");
    DOBO bo = DOBO.getDOBOByName("do_application");
    BOInstance selectApp = bo.getCorrInstance();
   
    DOService findShare = DOService.getService("multi_appshare_findbyshareappid");
    List findApps = findShare.invokeSelect(selectApp.getUid());
    if(findApps!=null && findApps.size() >0 ){
      this.setEchoValue(I18n.instance().get("分享的应用必须原创APP,该应用已经分享到AppShare,不能重复分享!"));
      return NO_FORWARD;
    }
View Full Code Here

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

      // 服务下面的参数

      DOBO aBO = DOBO.getDOBOByName("do_bo");
      for (Iterator itBp = bps.iterator(); itBp.hasNext();) {
        BOInstance biBP = (BOInstance) itBp.next();
        List bos = findBO.invokeSelect(biBP.getUid());
        for (Iterator itBO = bos.iterator(); itBO.hasNext();) {
          BOInstance biBO = (BOInstance) itBO.next();
          aBO.refreshContext(biBO.getUid());
          export.exportBO(sb, biBO);
        }
View Full Code Here

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

    }

    // ///处理第二服务(统计用)
    DOService secondService = gridModel.getSecondService();
    if (secondService != null) {
      List secondResult = secondService.invokeSelect();
      if (secondResult.size() > 0) {
        BOInstance statistics = (BOInstance) secondResult.get(0);
        data.put("statistics", statistics.getMap());
        StringBuilder sb = new StringBuilder();
        List<DOFormModel> listFm = gridModel
View Full Code Here

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

    }

    // ///处理第二服务(统计用)
    DOService secondService = gridModel.getSecondService();
    if (secondService != null) {
      List secondResult = secondService.invokeSelect();
      if (secondResult.size() > 0) {
        BOInstance statistics = (BOInstance) secondResult.get(0);
        data.put("statistics", statistics.getMap());
        StringBuilder sb = new StringBuilder();
        List<DOFormModel> listFm = gridModel
View Full Code Here

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

    }

    // ///处理第二服务(统计用)
    DOService secondService = gridModel.getSecondService();
    if (secondService != null) {
      List secondResult = secondService.invokeSelect();
      if (secondResult.size() > 0) {
        BOInstance statistics = (BOInstance) secondResult.get(0);
        data.put("statistics", statistics.getMap());
        StringBuilder sb = new StringBuilder();
        List<DOFormModel> listFm = gridModel
View Full Code Here

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

   
    /**
     * 探矿权号码回收
     */
    DOService aService = DOService.getService("reuse_feihao_tankuangquan");
    List  list = aService.invokeSelect();
    if(list!=null && list.size()>0){
      BOInstance aInstance = (BOInstance)list.get(0);
      String licenceid = aInstance.getValue("withdraw_reason");
      if(licenceid!=null && licenceid.length()==18){
        return licenceid.substring(12, 18);
View Full Code Here

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

  private void dealMultiL10ns(){
   
    if(multiL10ns.size()==0){
      ///获取 对应的l10n
      DOService  aService = DOService.getService("multi_tenancy_column_findbytableid");
      List list = aService.invokeSelect();
     
     
     
     
    }
View Full Code Here

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

    DOBO userBO = userParter.getDoBO();
    BOInstance preUser = userBO.getInstance(preNI.getPerformer());
    String deptUid = preUser.getValue("unit_uid");
    DOService service = DOService.getService("zj.unit.link.findByChildUid");
    List parentDeptLinks = service.invokeSelect(deptUid);
    /**
     * 用nodeExt5代替decisionExpression.
     */
    String aRule = this.getNode().getRetNodeUID();
    if (parentDeptLinks != null) {
View Full Code Here

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

    }
   
    DOService findUser = DOService.getService("do.bx.user.findbynameAndPassword");
    String userName = DOGlobals.getInstance().getSessoinContext().getUser().getName();
   
    List users =  findUser.invokeSelect(userName,StringUtil.MD5(old_password));
   
    if(users==null || users.size()==0){
      this.setEchoValue(I18n.instance().get("您输入的的旧密码不正确"));
      return NO_FORWARD;
    }else{
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.