基于javaweb+mysql的ssm+maven超市管理系统(java+ssm+jsp+layui+jq+mysql)

基于javaweb+mysql的ssm+maven超市管理系统(java+ssm+jsp+layui+jq+mysql)

运行环境

Java≥8、MySQL≥5.7、Tomcat≥8

开发工具

eclipse/idea/myeclipse/sts等均可配置运行

适用

课程设计,大作业,毕业设计,项目练习,学习演示等

功能说明

基于javaweb+mysql的SSM+Maven超市管理系统(java+ssm+jsp+layui+jq+mysql)

项目介绍

本项目分为超级管理员、总经理、店长、员工等角色,超级管理员可添加修改删除角色并进行角色菜单配置; 超级管理员角色包含以下功能: 商品管理:添加商品、库存查询、订单管理、商品删除查询; 销售管理:退货管理、销售统计; 基础资料管理:供应商管理、用户管理、角色管理

总经理角色包含以下功能: 商品管理:订单管理、商品删除查询; 销售管理:退货管理、销售统计; 基础资料管理:供应商管理;

店长角色包含以下功能: 商品管理:添加商品、库存查询、订单管理、商品删除查询; 销售管理:退货管理、销售统计; 员工角色包含以下功能: 商品管理:添加商品、库存查询;

环境需要

1.运行环境:最好是java jdk 1.8,我们在这个平台上运行的。其他版本理论上也可以。 2.IDE环境:IDEA,Eclipse,Myeclipse都可以。推荐IDEA; 3.tomcat环境:Tomcat 7.x,8.x,9.x版本均可 4.硬件环境:windows 7/8/10 1G内存以上;或者 Mac OS; 5.是否Maven项目: 是; 6.数据库:MySql 5.7等版本均可;

技术栈

  1. 后端:Spring、Springmvc、Mybatis 2. 前端:JSP+css+javascript+jQuery+LayUI

使用说明

  1. 使用Navicat或者其它工具,在mysql中创建对应名称的数据库,并导入项目的sql文件; 2. 使用IDEA/Eclipse/MyEclipse导入项目,Eclipse/MyEclipse导入时,若为maven项目请选择maven; 若为maven项目,导入成功后请执行maven clean;maven install命令,然后运行; 3. 将项目中applicationContext.xml配置文件中的数据库配置改为自己的配置; 4. 运行项目,在浏览器中输入http://localhost:8080/ 登录 管理员账号/密码:admin/admin 总经理账号/密码:hqh/123
}

@Controller
@RequestMapping("/supplier")
public class SupplierController {

	@Resource
	private SupplierService supplierService;

	@ResponseBody
	@RequestMapping("/supplierList")
	public Map<String, Object> userList(HttpServletRequest req, Supplier supplier,
			@RequestParam(value = "page", required = false) Integer page,
			@RequestParam(value = "limit", required = false) Integer limit) throws Exception {
		Map<String, Object> result = ResponseUtil.resultFye(page, limit);

		if (supplier.getName() != null) {
			String name = supplier.getName(); //new String(supplier.getName().getBytes("ISO-8859-1"), "UTF-8");
			result.put("name", name);
		}
		List<Supplier> supplierList = supplierService.findAll(result);
		Long count = supplierService.count(result);
		return ResponseUtil.result(supplierList, count);
	}

	@ResponseBody

	@RequestMapping("/add")
	public Map<String, Object> add(Supplier supplier) throws Exception {
		Map<String, Object> result = new HashMap<String, Object>();
		Supplier name = supplierService.findRepeat(supplier.getName());
		if (name == null) {
		List<User> userList = userService.findAll(result);
		Long count = userService.count(result);
		return ResponseUtil.result(userList, count);
	}

	/**
	 * 添加用户
	 * @param user
	 * @return
	 * @throws Exception
	 */
	@ResponseBody
	@RequestMapping("/add")
	public Map<String, Object> add(User user) throws Exception {
		Map<String, Object> result = new HashMap<String, Object>();
		User userName = userService.findByUserName(user.getUserName());
		if (userName == null) {
			userService.add(user);
			Integer s = user.getRoleId();
			UserRole userRole = new UserRole();
			userRole.setRoleId(s);
			userRole.setUserId(user.getId());
			userRoleService.add(userRole);
			result.put("success", true);
		} else {
			result.put("success", false);
			result.put("errorInfo", "用户名已存在!");
		}

		return result;
	}

	/**
	 * 删除用户 如有角色对应  删除角色对应关系
	 * @param id
	 * @return
	 * @throws Exception
	 */
	@ResponseBody
	@RequestMapping("/delete")
	public Map<String, Object> delete(@RequestParam(value = "id", required = false) Integer id) throws Exception {
		Map<String, Object> result = new HashMap<String, Object>();
		userService.delete(id);
		userRoleService.delete(id);
		result.put("success", true);
		return result;
	}

	/**

	/**
	 * 画随机线条
	 * 
	 * @param g
	 */
	private void drawRandomLine(Graphics g) {
		// 设置颜色
		g.setColor(Color.WHITE);
		// 设置线条个数并画线
		for (int i = 0; i < 5; i++) {
			int x1 = new Random().nextInt(WIDTH);
			int y1 = new Random().nextInt(HEIGHT);
			int x2 = new Random().nextInt(WIDTH);
			int y2 = new Random().nextInt(HEIGHT);
			g.drawLine(x1, y1, x2, y2);
		}

	}

	/**
	 * 画随机汉字
	 * 
	 * @param g
	 * @return
	 */
	private String drawRandomNum(Graphics2D g) {
		StringBuffer sb = new StringBuffer();
		// 设置颜色
		g.setColor(Color.WHITE);
		// 设置字体
		g.setFont(new Font("宋体", Font.BOLD, 20));
		// 准备常用汉字集
		String base = "\u7684\u4e00\u4e86\u662f\u6211\u4e0d\u5728\u4eba\u4eec\u6709\u6765\u4ed6\u8fd9\u4e0a\u7740\u4e2a\u5730\u5230\u5927\u91cc\u8bf4\u5c31\u53bb\u5b50\u5f97\u4e5f\u548c\u90a3\u8981\u4e0b\u770b\u5929\u65f6\u8fc7\u51fa\u5c0f\u4e48\u8d77\u4f60\u90fd\u628a\u597d\u8fd8\u591a\u6ca1\u4e3a\u53c8\u53ef\u5bb6\u5b66\u53ea\u4ee5\u4e3b\u4f1a\u6837\u5e74\u60f3\u751f\u540c\u8001\u4e2d\u5341\u4ece\u81ea\u9762\u524d\u5934\u9053\u5b83\u540e\u7136\u8d70\u5f88\u50cf\u89c1\u4e24\u7528\u5979\u56fd\u52a8\u8fdb\u6210\u56de\u4ec0\u8fb9\u4f5c\u5bf9\u5f00\u800c\u5df1\u4e9b\u73b0\u5c71\u6c11\u5019\u7ecf\u53d1\u5de5\u5411\u4e8b\u547d\u7ed9\u957f\u6c34\u51e0\u4e49\u4e09\u58f0\u4e8e\u9ad8\u624b\u77e5\u7406\u773c\u5fd7\u70b9\u5fc3\u6218\u4e8c\u95ee\u4f46\u8eab\u65b9\u5b9e\u5403\u505a\u53eb\u5f53\u4f4f\u542c\u9769\u6253\u5462\u771f\u5168\u624d\u56db\u5df2\u6240\u654c\u4e4b\u6700\u5149\u4ea7\u60c5\u8def\u5206\u603b\u6761\u767d\u8bdd\u4e1c\u5e2d\u6b21\u4eb2\u5982\u88ab\u82b1\u53e3\u653e\u513f\u5e38\u6c14\u4e94\u7b2c\u4f7f\u5199\u519b\u5427\u6587\u8fd0\u518d\u679c\u600e\u5b9a\u8bb8\u5feb\u660e\u884c\u56e0\u522b\u98de\u5916\u6811\u7269\u6d3b\u90e8\u95e8\u65e0\u5f80\u8239\u671b\u65b0\u5e26\u961f\u5148\u529b\u5b8c\u5374\u7ad9\u4ee3\u5458\u673a\u66f4\u4e5d\u60a8\u6bcf\u98ce\u7ea7\u8ddf\u7b11\u554a\u5b69\u4e07\u5c11\u76f4\u610f\u591c\u6bd4\u9636\u8fde\u8f66\u91cd\u4fbf\u6597\u9a6c\u54ea\u5316\u592a\u6307\u53d8\u793e\u4f3c\u58eb\u8005\u5e72\u77f3\u6ee1\u65e5\u51b3\u767e\u539f\u62ff\u7fa4\u7a76\u5404\u516d\u672c\u601d\u89e3\u7acb\u6cb3\u6751\u516b\u96be\u65e9\u8bba\u5417\u6839\u5171\u8ba9\u76f8\u7814\u4eca\u5176\u4e66\u5750\u63a5\u5e94\u5173\u4fe1\u89c9\u6b65\u53cd\u5904\u8bb0\u5c06\u5343\u627e\u4e89\u9886\u6216\u5e08\u7ed3\u5757\u8dd1\u8c01\u8349\u8d8a\u5b57\u52a0\u811a\u7d27\u7231\u7b49\u4e60\u9635\u6015\u6708\u9752\u534a\u706b\u6cd5\u9898\u5efa\u8d76\u4f4d\u5531\u6d77\u4e03\u5973\u4efb\u4ef6\u611f\u51c6\u5f20\u56e2\u5c4b\u79bb\u8272\u8138\u7247\u79d1\u5012\u775b\u5229\u4e16\u521a\u4e14\u7531\u9001\u5207\u661f\u5bfc\u665a\u8868\u591f\u6574\u8ba4\u54cd\u96ea\u6d41\u672a\u573a\u8be5\u5e76\u5e95\u6df1\u523b\u5e73\u4f1f\u5fd9\u63d0\u786e\u8fd1\u4eae\u8f7b\u8bb2\u519c\u53e4\u9ed1\u544a\u754c\u62c9\u540d\u5440\u571f\u6e05\u9633\u7167\u529e\u53f2\u6539\u5386\u8f6c\u753b\u9020\u5634\u6b64\u6cbb\u5317\u5fc5\u670d\u96e8\u7a7f\u5185\u8bc6\u9a8c\u4f20\u4e1a\u83dc\u722c\u7761\u5174\u5f62\u91cf\u54b1\u89c2\u82e6\u4f53\u4f17\u901a\u51b2\u5408\u7834\u53cb\u5ea6\u672f\u996d\u516c\u65c1\u623f\u6781\u5357\u67aa\u8bfb\u6c99\u5c81\u7ebf\u91ce\u575a\u7a7a\u6536\u7b97\u81f3\u653f\u57ce\u52b3\u843d\u94b1\u7279\u56f4\u5f1f\u80dc\u6559\u70ed\u5c55\u5305\u6b4c\u7c7b\u6e10\u5f3a\u6570\u4e61\u547c\u6027\u97f3\u7b54\u54e5\u9645\u65e7\u795e\u5ea7\u7ae0\u5e2e\u5566\u53d7\u7cfb\u4ee4\u8df3\u975e\u4f55\u725b\u53d6\u5165\u5cb8\u6562\u6389\u5ffd\u79cd\u88c5\u9876\u6025\u6797\u505c\u606f\u53e5\u533a\u8863\u822c\u62a5\u53f6\u538b\u6162\u53d4\u80cc\u7ec6";
		int x = 5;
		// 控制字数
		for (int i = 0; i < 4; i++) {
			// 设置字体旋转角度
			int degree = new Random().nextInt() % 30;
			// 截取汉字
			String ch = base.charAt(new Random().nextInt(base.length())) + "";
			sb.append(ch);
			// 正向角度
			g.rotate(degree * Math.PI / 180, x, 20);
			g.drawString(ch, x, 20);
			// 反向角度
			g.rotate(-degree * Math.PI / 180, x, 20);
		List<Menu> menuList = menuService.findByRoleIdMenu(roleId);
		List<Integer> menuIdList=new LinkedList<Integer>();
		//menuIdList 是menuList 根据角色ID查询的所有菜单
		for(Menu menu:menuList){
			menuIdList.add(menu.getId());
		}
		return getAllMenuByParentId(d_id,menuIdList).toString();// 1 和 当前角色菜单ID
	}

	/**
	 * 获取所有菜单信息
	 * 
	 * @param parentId
	 * @param roleId
	 * @return
	 */
	public JsonArray getAllMenuByParentId(Integer d_id,List<Integer> menuIdList) {//1 和当前角色菜单ID
		JsonArray jsonArray = this.getMenuByParentId(d_id,menuIdList);
		for (int i = 0; i < jsonArray.size(); i++) {
			JsonObject jsonObject = (JsonObject) jsonArray.get(i);
			if ("open".equals(jsonObject.get("menuId").getAsString())) {
				continue;
			} else {
				jsonObject.add("children", getAllMenuByParentId(jsonObject.get("p_id").getAsInt(),menuIdList));
			}
		}
		return jsonArray;
	}

	/**
	 * 根据父节点和用户角色Id查询菜单
	 * 
	 * @param parentId
	 * @param roleId
	 * @return
	 */
	public JsonArray getMenuByParentId(Integer d_id,List<Integer> menuIdList) {
		List<Menu> menuList = menuService.findByParentIdAndRoleId(d_id);//第一次传入1 
		JsonArray jsonArray = new JsonArray();
		for (Menu menu : menuList) {
			JsonObject jsonObject = new JsonObject();
			jsonObject.addProperty("id", menu.getId()); // 节点Id
			jsonObject.addProperty("name", menu.getName()); // 节点名称
			jsonObject.addProperty("p_id", menu.getP_id()); // 节点名称
			if (menu.getMenuId() == 0) {
				jsonObject.addProperty("menuId", "closed"); // 根节点
			} else {
				jsonObject.addProperty("menuId", "open"); // 叶子节点
			}
			if(menuIdList.contains(menu.getId())){
				jsonObject.addProperty("checked", true); 
			}
			jsonArray.add(jsonObject);
		}
			userRole.setUserId(user.getId());
			userRoleService.add(userRole);
		}
		result.put("success", true);
		return result;
	}
	
	/**
	 * 重置密码
	 * @param id
	 * @return
	 * @throws Exception
	 */
	@ResponseBody
	@RequestMapping("/reset")
	public Map<String, Object> reset(@RequestParam(value = "id", required = false) Integer id) throws Exception {
		Map<String, Object> result = new HashMap<String, Object>();
		userService.updateReset(id);
		result.put("success", true);
		return result;
	}
	
	@RequestMapping("/logout")
	public String logout(HttpSession session)throws Exception{
		SecurityUtils.getSubject().logout();
		return "redirect:/login.jsp";
	}
	
	@ResponseBody
	@RequestMapping("/updatepswd")
	public Map<String, Object> updatepswd(User user) throws Exception {
		Map<String, Object> result = new HashMap<String, Object>();
		userService.update(user);
		result.put("success", true);
		return result;
	}
	
}

			}
		goodsService.update(goods);
		result.put("success", true);
		return result;
	}

	
	
	@ResponseBody
	@RequestMapping("/delete")
	public Map<String, Object> delete(@RequestParam(value = "id", required = false) Integer id) throws Exception {
		Map<String, Object> result = new HashMap<String, Object>();
		Goods goods = new Goods();
		goods.setState(0);
		goods.setId(id);
		System.out.println(goods.getState());
		goodsService.update(goods);
		result.put("success", true);
		return result;
	}
	
	@ResponseBody
	@RequestMapping("/goodsDel")
	public Map<String, Object> goodsDel(HttpServletResponse response, Goods goods,
			@RequestParam(value = "page", required = false) Integer page,
			@RequestParam(value = "limit", required = false) Integer limit) throws Exception {
		Map<String, Object> result = ResponseUtil.resultFye(page, limit);
		if (goods.getName() != null) {
			String name = goods.getName(); //new String(goods.getName().getBytes("ISO-8859-1"), "UTF-8");
			result.put("name", name);
		}
		result.put("state", 0);
		List<Goods> goodsList = goodsService.findAll(result);
		Long count = goodsService.count(result);
		return ResponseUtil.result(goodsList, count);
	}
	
	@ResponseBody
	@RequestMapping("/goodsUpdate")
	public Map<String, Object> goodsUpdate(@RequestParam(value = "id", required = false) Integer id) throws Exception {
		Map<String, Object> result = new HashMap<String, Object>();
		Goods goods = new Goods();
		goods.setState(2);
		goods.setId(id);
		goodsService.update(goods);
		result.put("success", true);
		return result;
	}
	
		// 设置颜色
		g.setColor(Color.WHITE);
		// 设置线条个数并画线
		for (int i = 0; i < 5; i++) {
			int x1 = new Random().nextInt(WIDTH);
			int y1 = new Random().nextInt(HEIGHT);
			int x2 = new Random().nextInt(WIDTH);
			int y2 = new Random().nextInt(HEIGHT);
			g.drawLine(x1, y1, x2, y2);
		}

	}

	/**
	 * 画随机汉字
	 * 
	 * @param g
	 * @return
	 */
	private String drawRandomNum(Graphics2D g) {
		StringBuffer sb = new StringBuffer();
		// 设置颜色
		g.setColor(Color.WHITE);
		// 设置字体
		g.setFont(new Font("宋体", Font.BOLD, 20));
		// 准备常用汉字集
		String base = "\u7684\u4e00\u4e86\u662f\u6211\u4e0d\u5728\u4eba\u4eec\u6709\u6765\u4ed6\u8fd9\u4e0a\u7740\u4e2a\u5730\u5230\u5927\u91cc\u8bf4\u5c31\u53bb\u5b50\u5f97\u4e5f\u548c\u90a3\u8981\u4e0b\u770b\u5929\u65f6\u8fc7\u51fa\u5c0f\u4e48\u8d77\u4f60\u90fd\u628a\u597d\u8fd8\u591a\u6ca1\u4e3a\u53c8\u53ef\u5bb6\u5b66\u53ea\u4ee5\u4e3b\u4f1a\u6837\u5e74\u60f3\u751f\u540c\u8001\u4e2d\u5341\u4ece\u81ea\u9762\u524d\u5934\u9053\u5b83\u540e\u7136\u8d70\u5f88\u50cf\u89c1\u4e24\u7528\u5979\u56fd\u52a8\u8fdb\u6210\u56de\u4ec0\u8fb9\u4f5c\u5bf9\u5f00\u800c\u5df1\u4e9b\u73b0\u5c71\u6c11\u5019\u7ecf\u53d1\u5de5\u5411\u4e8b\u547d\u7ed9\u957f\u6c34\u51e0\u4e49\u4e09\u58f0\u4e8e\u9ad8\u624b\u77e5\u7406\u773c\u5fd7\u70b9\u5fc3\u6218\u4e8c\u95ee\u4f46\u8eab\u65b9\u5b9e\u5403\u505a\u53eb\u5f53\u4f4f\u542c\u9769\u6253\u5462\u771f\u5168\u624d\u56db\u5df2\u6240\u654c\u4e4b\u6700\u5149\u4ea7\u60c5\u8def\u5206\u603b\u6761\u767d\u8bdd\u4e1c\u5e2d\u6b21\u4eb2\u5982\u88ab\u82b1\u53e3\u653e\u513f\u5e38\u6c14\u4e94\u7b2c\u4f7f\u5199\u519b\u5427\u6587\u8fd0\u518d\u679c\u600e\u5b9a\u8bb8\u5feb\u660e\u884c\u56e0\u522b\u98de\u5916\u6811\u7269\u6d3b\u90e8\u95e8\u65e0\u5f80\u8239\u671b\u65b0\u5e26\u961f\u5148\u529b\u5b8c\u5374\u7ad9\u4ee3\u5458\u673a\u66f4\u4e5d\u60a8\u6bcf\u98ce\u7ea7\u8ddf\u7b11\u554a\u5b69\u4e07\u5c11\u76f4\u610f\u591c\u6bd4\u9636\u8fde\u8f66\u91cd\u4fbf\u6597\u9a6c\u54ea\u5316\u592a\u6307\u53d8\u793e\u4f3c\u58eb\u8005\u5e72\u77f3\u6ee1\u65e5\u51b3\u767e\u539f\u62ff\u7fa4\u7a76\u5404\u516d\u672c\u601d\u89e3\u7acb\u6cb3\u6751\u516b\u96be\u65e9\u8bba\u5417\u6839\u5171\u8ba9\u76f8\u7814\u4eca\u5176\u4e66\u5750\u63a5\u5e94\u5173\u4fe1\u89c9\u6b65\u53cd\u5904\u8bb0\u5c06\u5343\u627e\u4e89\u9886\u6216\u5e08\u7ed3\u5757\u8dd1\u8c01\u8349\u8d8a\u5b57\u52a0\u811a\u7d27\u7231\u7b49\u4e60\u9635\u6015\u6708\u9752\u534a\u706b\u6cd5\u9898\u5efa\u8d76\u4f4d\u5531\u6d77\u4e03\u5973\u4efb\u4ef6\u611f\u51c6\u5f20\u56e2\u5c4b\u79bb\u8272\u8138\u7247\u79d1\u5012\u775b\u5229\u4e16\u521a\u4e14\u7531\u9001\u5207\u661f\u5bfc\u665a\u8868\u591f\u6574\u8ba4\u54cd\u96ea\u6d41\u672a\u573a\u8be5\u5e76\u5e95\u6df1\u523b\u5e73\u4f1f\u5fd9\u63d0\u786e\u8fd1\u4eae\u8f7b\u8bb2\u519c\u53e4\u9ed1\u544a\u754c\u62c9\u540d\u5440\u571f\u6e05\u9633\u7167\u529e\u53f2\u6539\u5386\u8f6c\u753b\u9020\u5634\u6b64\u6cbb\u5317\u5fc5\u670d\u96e8\u7a7f\u5185\u8bc6\u9a8c\u4f20\u4e1a\u83dc\u722c\u7761\u5174\u5f62\u91cf\u54b1\u89c2\u82e6\u4f53\u4f17\u901a\u51b2\u5408\u7834\u53cb\u5ea6\u672f\u996d\u516c\u65c1\u623f\u6781\u5357\u67aa\u8bfb\u6c99\u5c81\u7ebf\u91ce\u575a\u7a7a\u6536\u7b97\u81f3\u653f\u57ce\u52b3\u843d\u94b1\u7279\u56f4\u5f1f\u80dc\u6559\u70ed\u5c55\u5305\u6b4c\u7c7b\u6e10\u5f3a\u6570\u4e61\u547c\u6027\u97f3\u7b54\u54e5\u9645\u65e7\u795e\u5ea7\u7ae0\u5e2e\u5566\u53d7\u7cfb\u4ee4\u8df3\u975e\u4f55\u725b\u53d6\u5165\u5cb8\u6562\u6389\u5ffd\u79cd\u88c5\u9876\u6025\u6797\u505c\u606f\u53e5\u533a\u8863\u822c\u62a5\u53f6\u538b\u6162\u53d4\u80cc\u7ec6";
		int x = 5;
		// 控制字数
		for (int i = 0; i < 4; i++) {
			// 设置字体旋转角度
			int degree = new Random().nextInt() % 30;
			// 截取汉字
			String ch = base.charAt(new Random().nextInt(base.length())) + "";
			sb.append(ch);
			// 正向角度
			g.rotate(degree * Math.PI / 180, x, 20);
			g.drawString(ch, x, 20);
			// 反向角度
			g.rotate(-degree * Math.PI / 180, x, 20);
			x += 30;
		}
		System.out.println(sb.toString());
		return sb.toString();
	}
    
}
		return null;
	}

}

@Controller
@RequestMapping("/supplier")
public class SupplierController {

	@Resource
	private SupplierService supplierService;

	@ResponseBody
	@RequestMapping("/supplierList")
	public Map<String, Object> userList(HttpServletRequest req, Supplier supplier,
			@RequestParam(value = "page", required = false) Integer page,
			@RequestParam(value = "limit", required = false) Integer limit) throws Exception {
		Map<String, Object> result = ResponseUtil.resultFye(page, limit);

		if (supplier.getName() != null) {
			String name = supplier.getName(); //new String(supplier.getName().getBytes("ISO-8859-1"), "UTF-8");
			result.put("name", name);
		}
		List<Supplier> supplierList = supplierService.findAll(result);
		Long count = supplierService.count(result);
			if(number>0){ 
				goods.setNumber(number);
			}else{
				result.put("success", false);
				result.put("errorInfo", "卖你妈逼,都没了,还卖");
				return result;
			}
		goodsService.update(goods);
		result.put("success", true);
		return result;
	}
}

@Controller
@RequestMapping("/menu")
public class MenuController {

	@Resource
	public MenuService menuService;
	
	@Resource
			} else {
				jsonObject.add("children", getAllMenuByParentId(jsonObject.get("id").getAsInt()));
			}
		}
		return jsonArray;
	}

	/**
	 * 根据父节点查询商品类别
	 * 
	 * @param parentId
	 * @param roleId
	 * @return
	 */
	public JsonArray getMenuByParentId(Integer parentId) {
		List<GoodsType> goodsTypeList = goodsTypeService.findByGoodsType(parentId);
		JsonArray jsonArray = new JsonArray();
		for (GoodsType goodsType : goodsTypeList) {
			JsonObject jsonObject = new JsonObject();
			jsonObject.addProperty("id", goodsType.getId()); // 节点Id
			jsonObject.addProperty("name", goodsType.getName()); // 节点名称
			jsonObject.addProperty("p_id", goodsType.getP_id()); // 节点名称
			jsonObject.addProperty("states", goodsType.getState()); // 节点名称
			jsonObject.addProperty("spread", true);
			if (goodsType.getState() == 1) {
				jsonObject.addProperty("state", "closed"); // 根节点
			} else {
				jsonObject.addProperty("state", "open"); // 叶子节点
			}
			jsonArray.add(jsonObject);
		}
		return jsonArray;
	}

	@ResponseBody
	@RequestMapping("/typelist")
	public String typeList(HttpServletResponse response) throws Exception {
		JsonArray jsonArray = new JsonArray();
		List<GoodsType> typeList = goodsTypeService.findAll(null);
		for (GoodsType goodsType : typeList) {
			JsonObject jsonObject = new JsonObject();
			jsonObject.addProperty("id", goodsType.getId());
			jsonObject.addProperty("name", goodsType.getName());
			jsonArray.add(jsonObject);
		}
		ResponseUtil.write(response, jsonArray);
		return null;
	}

	@ResponseBody
		}
		return jsonArray;
	}

	@ResponseBody
	@RequestMapping("/typelist")
	public String typeList(HttpServletResponse response) throws Exception {
		JsonArray jsonArray = new JsonArray();
		List<GoodsType> typeList = goodsTypeService.findAll(null);
		for (GoodsType goodsType : typeList) {
			JsonObject jsonObject = new JsonObject();
			jsonObject.addProperty("id", goodsType.getId());
			jsonObject.addProperty("name", goodsType.getName());
			jsonArray.add(jsonObject);
		}
		ResponseUtil.write(response, jsonArray);
		return null;
	}

	@ResponseBody
	@RequestMapping("/delete")
	public Map<String, Object> delete(@RequestParam(value = "id", required = false) Integer id) throws Exception {
		Map<String, Object> result = new HashMap<String, Object>();
		if (goodsTypeService.findByPid(id) != null) {
			result.put("success", false);
			result.put("errorInfo", "请先删除子节点");
		} else if (goodsService.findByTypeId(id) == null) {
			goodsTypeService.delete(id);
			result.put("success", true);
		} else {
			result.put("success", false);
			result.put("errorInfo", "该商品类别已经被使用");
		}
		return result;
	}

	@ResponseBody
	@RequestMapping("/update")
	public Map<String, Object> update(GoodsType goodsType) throws Exception {
		Map<String, Object> result = new HashMap<String, Object>();
		GoodsType goodsTypes = goodsTypeService.isEchoes(goodsType.getName());
		if (goodsTypes == null) {
			goodsTypeService.update(goodsType);
			result.put("success", true);
		} else {
	 * @throws Exception
	 */
	@ResponseBody
	@RequestMapping("/loadGoodstypeInfo")
	public String loadGoodstypeInfo() throws Exception {
		return getAllMenuByParentId(-1).toString();
	}

	/**
	 * 获取所有商品类别
	 * 
	 * @param parentId
	 * @param roleId
	 * @return
	 */
	public JsonArray getAllMenuByParentId(Integer parentId) {
		JsonArray jsonArray = this.getMenuByParentId(parentId);
		for (int i = 0; i < jsonArray.size(); i++) {
			JsonObject jsonObject = (JsonObject) jsonArray.get(i);
			if ("open".equals(jsonObject.get("state").getAsString())) {
				continue;
			} else {
				jsonObject.add("children", getAllMenuByParentId(jsonObject.get("id").getAsInt()));
			}
		}
		return jsonArray;
	}

	/**
	 * 根据父节点查询商品类别
	 * 
	 * @param parentId
	 * @param roleId
	 * @return
	 */
	public JsonArray getMenuByParentId(Integer parentId) {
		List<GoodsType> goodsTypeList = goodsTypeService.findByGoodsType(parentId);
		JsonArray jsonArray = new JsonArray();
		for (GoodsType goodsType : goodsTypeList) {
			JsonObject jsonObject = new JsonObject();
			jsonObject.addProperty("id", goodsType.getId()); // 节点Id
			jsonObject.addProperty("name", goodsType.getName()); // 节点名称
			jsonObject.addProperty("p_id", goodsType.getP_id()); // 节点名称
			jsonObject.addProperty("states", goodsType.getState()); // 节点名称
			jsonObject.addProperty("spread", true);
			if (goodsType.getState() == 1) {
				jsonObject.addProperty("state", "closed"); // 根节点
			} else {
				jsonObject.addProperty("state", "open"); // 叶子节点

@Controller
@RequestMapping("/menu")
public class MenuController {

	@Resource
	public MenuService menuService;
	
	@Resource
	public RoleMenuService roleMenuService;
	
	
	/**
	 * 加载权限菜单
	 * 
	 * @param session
	 * @param parentId
	 * @return
	 * @throws Exception
	 */
	@ResponseBody
	@RequestMapping("/loadMenuInfo")
	public String loadMenuInfo(HttpSession session, Integer d_id,Integer roleId) throws Exception {
		List<Menu> menuList = menuService.findByRoleIdMenu(roleId);
		List<Integer> menuIdList=new LinkedList<Integer>();
		//menuIdList 是menuList 根据角色ID查询的所有菜单
		for(Menu menu:menuList){
			menuIdList.add(menu.getId());
		}
		return getAllMenuByParentId(d_id,menuIdList).toString();// 1 和 当前角色菜单ID
	}

		}
		goodsService.update(goods);
		result.put("success", true);
		return result;
	}
	
	@ResponseBody
	@RequestMapping("/updateReturn")
	public Map<String, Object> updateReturn(Goods goods) throws Exception {
		Map<String, Object> result = new HashMap<String, Object>();
			Goods goodsNumber = goodsService.findById(goods.getId());
			Integer number = goodsNumber.getNumber()- goods.getReturnnumber();
			if(number>0){
				goods.setNumber(number);
			}else{
				result.put("success", false);
				result.put("errorInfo", "退你妈逼,都没了,还退");
				return result;
			}
		goodsService.update(goods);
		result.put("success", true);
		return result;
	}

	
	
	@ResponseBody
	@RequestMapping("/delete")
	public Map<String, Object> delete(@RequestParam(value = "id", required = false) Integer id) throws Exception {
		Map<String, Object> result = new HashMap<String, Object>();
		Goods goods = new Goods();
		goods.setState(0);
		goods.setId(id);
		System.out.println(goods.getState());
		goodsService.update(goods);
		result.put("success", true);
		return result;
	}
	
	@ResponseBody
	@RequestMapping("/goodsDel")
	public Map<String, Object> goodsDel(HttpServletResponse response, Goods goods,
			@RequestParam(value = "page", required = false) Integer page,
			@RequestParam(value = "limit", required = false) Integer limit) throws Exception {
		Map<String, Object> result = ResponseUtil.resultFye(page, limit);
		if (goods.getName() != null) {
			String name = goods.getName(); //new String(goods.getName().getBytes("ISO-8859-1"), "UTF-8");
			result.put("name", name);
		}
		result.put("state", 0);
		List<Goods> goodsList = goodsService.findAll(result);
		Long count = supplierService.count(result);
		return ResponseUtil.result(supplierList, count);
	}

	@ResponseBody

	@RequestMapping("/add")
	public Map<String, Object> add(Supplier supplier) throws Exception {
		Map<String, Object> result = new HashMap<String, Object>();
		Supplier name = supplierService.findRepeat(supplier.getName());
		if (name == null) {
			supplierService.add(supplier);
			result.put("success", true);
		} else {
			result.put("success", false);
			result.put("errorInfo", "供应商已存在!");
		}
		return result;
	}

	@ResponseBody
	@RequestMapping("/delete")
	public Map<String, Object> delete(@RequestParam(value = "id", required = false) Integer id) throws Exception {
		Map<String, Object> result = new HashMap<String, Object>();
		supplierService.delete(id);
		result.put("success", true);
		return result;
	}

	
	@ResponseBody
	@RequestMapping("/update")
	public Map<String, Object> update(Supplier supplier) throws Exception {
		Map<String, Object> result = new HashMap<String, Object>();
		supplierService.update(supplier);
		result.put("success", true);
		return result;
	}
	
	@ResponseBody
	@RequestMapping("/supplierlist")
	public Map<String, Object> supplier() throws Exception {
		Map<String, Object> result = new HashMap<String, Object>();
		List<Supplier> supplierList = supplierService.findAll(null);
		result.put("success", true);
		result.put("supplierList", supplierList);
		return result;
	}

}
		}
	}

	/**
	 * 查询所有用户 按条件搜索
	 * @param user
	 * @param page
	 * @param limit
	 * @return
	 * @throws Exception
	 */
	@ResponseBody
	@RequestMapping("/userList")
	public Map<String, Object> userList(User user, @RequestParam(value = "page", required = false) Integer page,
			@RequestParam(value = "limit", required = false) Integer limit) throws Exception {
		Map<String, Object> result = ResponseUtil.resultFye(page, limit);
		if(user.getUserName()!=null){
			String userName = user.getUserName(); //new String(user.getUserName().getBytes("ISO-8859-1"), "UTF-8");
			result.put("userName", userName);
		}
		List<User> userList = userService.findAll(result);
		Long count = userService.count(result);
		return ResponseUtil.result(userList, count);
	}

	/**
	 * 添加用户
	 * @param user
	 * @return
	 * @throws Exception
	 */
	@ResponseBody
	@RequestMapping("/add")
	public Map<String, Object> add(User user) throws Exception {
		Map<String, Object> result = new HashMap<String, Object>();
		User userName = userService.findByUserName(user.getUserName());
		if (userName == null) {
			userService.add(user);
			Integer s = user.getRoleId();
			UserRole userRole = new UserRole();
			userRole.setRoleId(s);
			userRole.setUserId(user.getId());
	public Map<String, Object> goodsUpdate(@RequestParam(value = "id", required = false) Integer id) throws Exception {
		Map<String, Object> result = new HashMap<String, Object>();
		Goods goods = new Goods();
		goods.setState(2);
		goods.setId(id);
		goodsService.update(goods);
		result.put("success", true);
		return result;
	}
	
	
	@ResponseBody
	@RequestMapping("/updatenumber")
	public Map<String, Object> updatenumber(Goods goods) throws Exception {
		Map<String, Object> result = new HashMap<String, Object>();
			Goods goodsNumber = goodsService.findById(goods.getId());
			goods.setSalenumber(goods.getNumber());
			Integer number = goodsNumber.getNumber()- goods.getNumber();
			if(number>0){ 
				goods.setNumber(number);
			}else{
				result.put("success", false);
				result.put("errorInfo", "卖你妈逼,都没了,还卖");
				return result;
			}
		goodsService.update(goods);
		result.put("success", true);
		return result;
	}
}

请添加图片描述
请添加图片描述
请添加图片描述
请添加图片描述
请添加图片描述
请添加图片描述
请添加图片描述
请添加图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值