interimAction.java 5.49 KB
Newer Older
罗绍泽 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
package com.gaowj.system.back;

import java.io.IOException;

import com.gaowj.business.action.BasicAction;
import com.gaowj.business.exception.BusinessException;
import com.gaowj.business.util.PropUtil;

public class interimAction extends BasicAction {
	
	/**
	 * 
	 */
	private static final long serialVersionUID = 1L;
	private String gwjURL;
    private String page_num;
    private String ls_myzd_id;
    private String ls_operate;
    private String ls_splx;
	@Override
	public String execute() throws BusinessException, IOException {
		String tempURL = request.getParameter("url");
		page_num = request.getParameter("page_num");
		ls_myzd_id = request.getParameter("ls_myzd_id");
		ls_operate = request.getParameter("operate");
		ls_splx = request.getParameter("splx");
罗绍泽 committed
27
		System.out.println("------------------------------page jump url=:"+tempURL);
罗绍泽 committed
28 29 30 31 32 33 34 35
		if(tempURL==null || tempURL.trim().length()==0){
//			gwjURL = "system/pages/frameDojo/main.jsp";
//			gwjURL = "system/pages/frameEasyui/main.jsp";
			gwjURL = PropUtil.getValue("login_main_url", "quartz_service", "system/pages/frameEasyui/main.jsp");
			if(gwjURL.indexOf(".jsp")== -1){
				response.sendRedirect(gwjURL);
			}
			
罗绍泽 committed
36 37
		}else if(tempURL!=null && tempURL.trim().equals("back_index")){
			gwjURL = "system/pages/frameEasyui/main.jsp";
罗绍泽 committed
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134
		}else if(tempURL!=null && tempURL.trim().equals("tempjsp")){
			gwjURL = "system/pages/frame/tempJsp.jsp";
		}else if(tempURL!=null && tempURL.trim().equals("moduleType")){
			gwjURL = "system/pages/frame/moduletype.jsp";
			if(page_num!=null && page_num.trim().length()>0){ 
				gwjURL = "system/pages/frame/moduletype.jsp?page_num="+page_num;
			}
		}else if(tempURL!=null && tempURL.trim().equals("moduleTypeEdit")){
			gwjURL = "system/pages/frame/moduletypeEDIT.jsp?page_num="+page_num+"&ls_myzd_id="+ls_myzd_id+"&operate="+ls_operate;
		}else if(tempURL!=null && tempURL.trim().equals("module")){
			gwjURL = "system/pages/frame/module.jsp";
			if(page_num!=null && page_num.trim().length()>0){ 
				gwjURL = "system/pages/frame/module.jsp?page_num="+page_num;
			}
		}else if(tempURL!=null && tempURL.trim().equals("moduleEdit")){
			gwjURL = "system/pages/frame/moduleEDIT.jsp?page_num="+page_num+"&ls_myzd_id="+ls_myzd_id+"&operate="+ls_operate;
		}else if(tempURL!=null && tempURL.trim().equals("group")){
			gwjURL = "system/pages/frame/group.jsp";
			if(page_num!=null && page_num.trim().length()>0){ 
				gwjURL = "system/pages/frame/group.jsp?page_num="+page_num;
			}
		}else if(tempURL!=null && tempURL.trim().equals("groupEdit")){
			gwjURL = "system/pages/frame/groupEDIT.jsp?page_num="+page_num+"&ls_myzd_id="+ls_myzd_id+"&operate="+ls_operate;
		}else if(tempURL!=null && tempURL.trim().equals("depart")){
			gwjURL = "system/pages/frame/depart.jsp";
			if(page_num!=null && page_num.trim().length()>0){ 
				gwjURL = "system/pages/frame/depart.jsp?page_num="+page_num;
			}
		}else if(tempURL!=null && tempURL.trim().equals("departEdit")){
			gwjURL = "system/pages/frame/departEDIT.jsp?page_num="+page_num+"&ls_myzd_id="+ls_myzd_id+"&operate="+ls_operate;
		}else if(tempURL!=null && tempURL.trim().equals("user")){
			gwjURL = "system/pages/frame/user.jsp";
			if(page_num!=null && page_num.trim().length()>0){ 
				gwjURL = "system/pages/frame/user.jsp?page_num="+page_num;
			}
		}else if(tempURL!=null && tempURL.trim().equals("userEdit")){
			String ls_depart_id = request.getParameter("ls_depart_id");
			gwjURL = "system/pages/frame/userEDIT.jsp?page_num="+page_num+"&ls_myzd_id="+ls_myzd_id+"&operate="+ls_operate;
			if(ls_depart_id!=null && ls_depart_id.trim().length()>0){
				gwjURL = "system/pages/frame/userEDIT.jsp?page_num="+page_num+"&ls_myzd_id="+ls_myzd_id+"&operate="+ls_operate+"&ls_depart_id="+ls_depart_id;
			}
		}else if(tempURL!=null && tempURL.trim().equals("log")){
			gwjURL = "system/pages/frame/log.jsp";
			if(page_num!=null && page_num.trim().length()>0){ 
				gwjURL = "system/pages/frame/log.jsp?page_num="+page_num;
			}
		}else if(tempURL!=null && tempURL.trim().equals("modipass")){
			gwjURL = "system/pages/frame/modiPass.jsp";
		}else if(tempURL!=null && tempURL.trim().equals("gcm")){
			gwjURL = "system/pages/frame/groupChoiceModule.jsp?ls_myzd_id="+ls_myzd_id;
		}else if(tempURL!=null && tempURL.trim().equals("gcu")){
			gwjURL = "system/pages/frame/groupChoiceUser.jsp?ls_myzd_id="+ls_myzd_id;
		}else if(tempURL!=null && tempURL.trim().equals("qxuu")){
			gwjURL = "system/pages/frame/userScope.jsp?ls_myzd_id="+ls_myzd_id;
		}else if(tempURL!=null && tempURL.trim().equals("sobj")){
			gwjURL = "system/pages/frame/objStatus.jsp?ls_myzd_id="+ls_myzd_id;
			if(page_num!=null && page_num.trim().length()>0){ 
				gwjURL = "system/pages/frame/objStatus.jsp?ls_myzd_id="+ls_myzd_id+"&page_num="+page_num;
			}
		}else if(tempURL!=null && tempURL.trim().equals("sobjEdit")){
			gwjURL = "system/pages/frame/objStatusEDIT.jsp?page_num="+page_num+"&ls_myzd_id="+ls_myzd_id+"&operate="+ls_operate;
		}
		return SUCCESS;
	}
		
	public String getGwjURL() {
		return gwjURL;
	}
	public void setGwjURL(String gwjURL) {
		this.gwjURL = gwjURL;
	}
	public String getPage_num() {
		return page_num;
	}
	public void setPage_num(String pageNum) {
		page_num = pageNum;
	}
	public String getLs_myzd_id() {
		return ls_myzd_id;
	}
	public void setLs_myzd_id(String lsObjectId) {
		ls_myzd_id = lsObjectId;
	}
	public String getLs_operate() {
		return ls_operate;
	}
	public void setLs_operate(String lsOperate) {
		ls_operate = lsOperate;
	}
	public String getLs_splx() {
		return ls_splx;
	}
	public void setLs_splx(String lsSplx) {
		ls_splx = lsSplx;
	}

}