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

import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Iterator;
import java.util.List;
import java.util.Map;

import javax.servlet.http.HttpSession;

import org.apache.struts2.ServletActionContext;

import com.bzu.entity.Employer;
import com.bzu.entity.EmployerWage;
import com.bzu.entity.GoodsSpend;
import com.bzu.entity.IntoGoods;
import com.bzu.service.inter.EmployerService;
import com.bzu.service.inter.EmployerWageService;
import com.bzu.service.inter.IntoGoodsService;
import com.bzu.service.inter.WorkdayService;
import com.bzu.util.ToolMethodUtil;
import com.opensymphony.xwork2.ActionSupport;

public class EmployerWageAction extends ActionSupport {

	private EmployerWage employerWage;

	private EmployerWageService employerWageService;
	
	private IntoGoodsService intoGoodsService;

	private Double beginWage;

	private Double endWage;

	private int index;

	public String employerWageList() {

		String hql = "";
		if (employerWage != null) {

			if (employerWage.getEmployer().getId() != -1)
				hql += " and s.employer.id = "
						+ employerWage.getEmployer().getId();

			if (beginWage != null && endWage != null)
				hql += " and s.wage between " + beginWage + " and " + endWage
						+ "";
		}

		List<EmployerWage> list = index != 0 ? employerWageService.getByPage(
				index, EmployerWage.class, hql) : employerWageService
				.getByPage(1, EmployerWage.class, hql);

		HttpSession session = ServletActionContext.getRequest().getSession();
		session.setAttribute("list", list);
		session.setAttribute("thisindex", index == 0 ? 1 : index);

		session.setAttribute("count", employerWageService.getAllEmployerWage(
				EmployerWage.class, hql).size());

		Map<Integer, String> map = employerWageService.getAllEmployer(
				Employer.class, "");
		ServletActionContext.getRequest().setAttribute("map", map);
		return "employerWageList";

	}

	private EmployerService employerService;

	private WorkdayService workdayService;

	public String createWage() {

		List<Employer> emplist = employerService.getAllEmployer(Employer.class,
				"");// 获得所有的员工
		// List<EmployerWage> wagelist=new ArrayList<EmployerWage>();

		String months = ToolMethodUtil.getYearAndMonth();
		String num = ((List) (employerWageService
				.getInfo("select count(*) from EmployerWage e where e.months='"
						+ months + "'"))).get(0).toString();
		if (Integer.parseInt(num) != 0)
			return "createWageSuccess";

		for (Iterator iterator = emplist.iterator(); iterator.hasNext();) {// 遍历所有的员工,通过他们的id获得到他们的月薪
			Employer employer = (Employer) iterator.next();

			double monthpay = employer.getMonthpay();

			int workday = workdayService.getWorkday(employer.getId());
			Double dempWage = (monthpay * (((float) workday) / 30));
			int empWage = dempWage.intValue();
			EmployerWage employerWage = new EmployerWage(employer, months,
					empWage);

			employerWageService.addempWage(employerWage);

			// wagelist.add(employerWage);

		}
		return "createWageSuccess";
	}

	public String createGoodsSpend() {

		String date = ToolMethodUtil.getDate();
		
		String num = ((List) (employerWageService//getInfo方法就是通过hql语句获得list的集合,这里是查询物品消费表里面是否有本月的记录
				.getInfo("select count(*) from GoodsSpend g where month(g.intoGoods.intoDate)=month('"
						+ date + "')"))).get(0).toString();
		System.out.println(num);
		if (Integer.parseInt(num) != 0)
			return "createWageSuccess";
		
		List<IntoGoods> inglist=intoGoodsService.getAllIntoGoods(IntoGoods.class, " and month(s.intoDate)=month('"
						+ date + "')");//获得所有本月的进货记录
		
		for (Iterator iterator = inglist.iterator(); iterator.hasNext();) {
			IntoGoods intoGoods = (IntoGoods) iterator.next();
			
			double money=intoGoods.getNum()*intoGoods.getGoods().getInputPrise();
			
			GoodsSpend goodSpend=new GoodsSpend(intoGoods, money);
			
			intoGoodsService.addGoodsSpend(goodSpend);
			
		}

		return "createWageSuccess";//创建货物花费金额成功,为了少写一个result,就直接返回createWageSuccess。
	}
	
	public String goodsSpendList(){
		
		String date = ToolMethodUtil.getDate();
		List<GoodsSpend> list=intoGoodsService.getGoodsSpendList(GoodsSpend.class, "and month(s.intoGoods.intoDate)=month('"+date + "')");
		
		HttpSession session = ServletActionContext.getRequest().getSession();
		session.setAttribute("spendlist", list);
		
		return "spendlist";
		
	}

	public WorkdayService getWorkdayService() {
		return workdayService;
	}

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

	public EmployerService getEmployerService() {
		return employerService;
	}

	public void setEmployerService(EmployerService employerService) {
		this.employerService = employerService;
	}

	public Double getBeginWage() {
		return beginWage;
	}

	public void setBeginWage(Double beginWage) {
		this.beginWage = beginWage;
	}

	public Double getEndWage() {
		return endWage;
	}

	public void setEndWage(Double endWage) {
		this.endWage = endWage;
	}

	public int getIndex() {
		return index;
	}

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

	public EmployerWageService getEmployerWageService() {
		return employerWageService;
	}

	public void setEmployerWageService(EmployerWageService employerWageService) {
		this.employerWageService = employerWageService;
	}

	public EmployerWage getEmployerWage() {
		return employerWage;
	}

	public void setEmployerWage(EmployerWage employerWage) {
		this.employerWage = employerWage;
	}

	
	public IntoGoodsService getIntoGoodsService() {
		return intoGoodsService;
	}

	public void setIntoGoodsService(IntoGoodsService intoGoodsService) {
		this.intoGoodsService = intoGoodsService;
	}

	public static void main(String[] args) {
		Date date = new Date(System.currentTimeMillis());
		SimpleDateFormat format = new SimpleDateFormat("yy-MM-dd");
		String date1 = format.format(date);
		System.out.println(date1);
		//
		System.out.println("20" + date1.substring(0, date1.indexOf("-")));
		System.out.println(date1.substring(date1.indexOf("-") + 1, date1
				.indexOf("-") + 3));
	}
}
最近下载更多
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日
最近浏览更多
ssdasfdsdsf 6月18日
暂无贡献等级
WaZiN7  LV6 4月25日
帅潇潇  LV12 4月21日
WBelong  LV7 2023年12月11日
hongdongdong  LV14 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日
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友