首页>代码>SSH开发超市后台管理系统源代码下载,适合入门学习>/SuperMarket/src/com/bzu/action/EmployerAction.java
package com.bzu.action;

import java.io.IOException;
import java.io.UnsupportedEncodingException;
import java.util.ArrayList;
import java.util.List;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpSession;

import org.apache.struts2.ServletActionContext;

import com.bzu.entity.Employer;
import com.bzu.entity.Workday;
import com.bzu.service.inter.EmployerService;
import com.bzu.service.inter.WorkdayService;
import com.opensymphony.xwork2.ActionSupport;

public class EmployerAction extends ActionSupport {
	
	
	
	
	private int index;
	
	private Employer employer;
	
	private Double startMoney ;
	
	private Double endMoney;
	
	private List<Employer> list;
	
	
	public String emplyerList(){
		
		String hql="";
		if(employer!=null){
			String username = null;
			String adress=null;
			try {
				username = new String((employer.getUsername().getBytes("ISO8859-1")),"UTF-8");
				adress= new String((employer.getAdress().getBytes("ISO8859-1")),"UTF-8");
			} catch (UnsupportedEncodingException e) {
				// TODO Auto-generated catch block
				e.printStackTrace();
			}
			
		if(username!=null&&!("".equals(username)))
			hql+=" and s.username like '%"+username+"%'";
		if(adress!=null&&!("".equals(adress)))
			hql+=" and s.adress like '%"+adress+"%'";
		if(employer.getTelephone()!=null&&!("".equals(employer.getTelephone())))
			hql+=" and s.telephone = "+employer.getTelephone();
		if(startMoney!=null && endMoney!=null)
			hql+=" and s.monthpay between '"+startMoney+"' and '"+endMoney+"'";
		
		System.out.println(hql+"000000000000000000000000000000000"+employer.getUsername());
		}
		
		List<Employer> list = index != 0 ? employerService.getByPage(index, Employer.class,hql)
				:employerService.getByPage(1, Employer.class,hql);
		
		HttpSession session=ServletActionContext.getRequest().getSession();
		session.setAttribute("list",list);
		session.setAttribute("thisindex",index==0?1:index);
		
		session.setAttribute("count",employerService.getAllEmployer(Employer.class,hql).size());
		System.out.println("0000"+list.size());
		return SUCCESS;
	}
	
	public String deleteEmployer(){
		
		employerService.deleteEmployer(employer);
		return "deletesuccess";
	}
	
	public String updateEmployerDialog(){
		
		Employer emp=employerService.getEmployer(Employer.class, employer.getId());
//		HttpSession session=ServletActionContext.getRequest().getSession();
//		session.setAttribute("emp",emp);
		ServletActionContext.getRequest().setAttribute("emp", emp);
		return "dilog";
	}
	
	public String updateEmployer() throws IOException{
		
		employer.setUsername(new String(employer.getUsername().getBytes("ISO8859-1"),"UTF-8"));
		employer.setAdress(new String(employer.getAdress().getBytes("ISO8859-1"),"UTF-8"));
		employerService.updateEmployer(employer);
		
		return "operasuccess";
	}
	
	public String addEmployer() throws IOException{
		
		employer.setUsername(new String(employer.getUsername().getBytes("ISO8859-1"),"UTF-8"));
		employer.setAdress(new String(employer.getAdress().getBytes("ISO8859-1"),"UTF-8"));
		
		employerService.addEmployer(employer);
		
		return "operasuccess";
	}
	public String workList(){
		
		
		this.emplyerList();
		
		return "worklist";
	}
	
	public String employerworks(){
		
		HttpServletRequest request=ServletActionContext.getRequest();
		String[] ids=request.getParameterValues("ids");
		
	    list=new ArrayList<Employer>();
		for (int i = 0; i < ids.length; i++) {
			System.out.println(ids[i]);
			Employer em=employerService.getEmployer(Employer.class, Integer.parseInt(ids[i]));
			list.add(em);
		}
		workdayService.addWorkday(list);
		return "employerworks";
		
	}
	
	public String todayWorkView(){
		
		List<Workday> list = new ArrayList<Workday>();
		list=workdayService.todayWorklist();
		HttpSession session=ServletActionContext.getRequest().getSession();
		session.setAttribute("todayworklist",list);
		System.out.println(list.size());
		return "todayworklist";
		
	}
	
  	public String  monthWorkMap(){
  		String root = ServletActionContext.getRequest().getRealPath("/map/map.jpg");
  		
  		workdayService.monthWorkMap(root);
  		HttpSession session=ServletActionContext.getRequest().getSession();
		session.setAttribute("file","/map/map.jpg");
		System.out.println(session.getAttribute("file"));
  		return "workMap";
  	}
	
	
	
	
	
	
	
	
	
	
	
	private EmployerService employerService;
	                       
	private WorkdayService workdayService;

	public int getIndex() {
		return index;
	}

	public void setIndex(int index) {
		this.index = index;
	}

	public Employer getEmployer() {
		return employer;
	}

	public void setEmployer(Employer employer) {
		this.employer = employer;
	}

	public Double getStartMoney() {
		return startMoney;
	}


	public void setStartMoney(Double startMoney) {
		this.startMoney = startMoney;
	}


	public Double getEndMoney() {
		return endMoney;
	}

	public void setEndMoney(Double endMoney) {
		this.endMoney = endMoney;
	}


	public EmployerService getEmployerService() {
		return employerService;
	}











	public WorkdayService getWorkdayService() {
		return workdayService;
	}

	public void setWorkdayService(WorkdayService workdayService) {
		this.workdayService = workdayService;
	}

	public void setEmployerService(EmployerService employerService) {
		this.employerService = employerService;
	}
	
	
	
	
	
}
最近下载更多
dudududa  LV2 2023年9月1日
微信网友_6308169330069504  LV2 2023年1月16日
chenhan413  LV10 2022年4月9日
and123456  LV11 2022年2月7日
HONG SIR  LV8 2022年1月4日
ericxu1116  LV24 2021年7月6日
z_lying  LV20 2021年3月31日
Kepi666  LV1 2021年1月3日
不停的奔跑  LV20 2020年11月7日
张青峰  LV10 2020年9月7日
最近浏览更多
WaZiN7  LV6 前天
帅潇潇  LV12 4月21日
WBelong  LV7 2023年12月11日
hongdongdong  LV12 2023年12月8日
草帽小小鸡  LV7 2023年11月30日
xiongwei11231  LV8 2023年11月29日
Henew168  LV2 2023年11月19日
haotzy  LV3 2023年10月5日
飞呀飞呀飞不放  LV7 2023年8月9日
yhwcoder 2023年7月3日
暂无贡献等级
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友