⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 selfsellinfoaction.java

📁 一个汽车售后服务站的典型的进销管理系统,B/S模式的
💻 JAVA
字号:
/*
 * Generated by MyEclipse Struts
 * Template path: templates/java/JavaClass.vtl
 */
package com.xfaccp.struts.action.sell;

import java.util.List;

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

import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionForward;
import org.apache.struts.action.ActionMapping;

import com.xfaccp.base.BaseAction;
import com.xfaccp.form.EmployeeTable;
import com.xfaccp.form.OrderTable;

/** 
 * MyEclipse Struts
 * Creation date: 11-13-2007
 * 
 * XDoclet definition:
 * @struts.action
 */
public class SelfSellInfoAction extends BaseAction {
	/*
	 * Generated Methods
	 */

	/** 
	 * Method execute
	 * @param mapping
	 * @param form
	 * @param request
	 * @param response
	 * @return ActionForward
	 */
	public ActionForward execute(ActionMapping mapping, ActionForm form,
			HttpServletRequest request, HttpServletResponse response) {
		OrderTable order = (OrderTable) form;
		//得到全部的订单信息
		try{	
			order.setOrderState(1);
			order.setIsGiven(1);
			
			String empName = (String) request.getSession().getAttribute("saler");
			if(empName.equals("saler"))
			{
				List user = (List) request.getSession().getAttribute("user");
				for(int i = 0 ; i < user.size() ; i ++)
				{
					EmployeeTable emp = (EmployeeTable)user.get(i);
					order.setSellerName(emp.getEmpName());	
					
					List selfSellInfo = command.findByExample(order);
					HttpSession session=request.getSession(true);
					
					session.setAttribute("selfSellInfo", selfSellInfo);
					
					return mapping.findForward("info");
				}
			}
		}catch(Exception e){
			e.printStackTrace();
			System.out.println("对不起,出错了。。。。。。。");
		}
		return mapping.findForward("error");
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -