All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.quhaodian.user.controller.admin.UserLabelAction Maven / Gradle / Ivy

There is a newer version: 1.8.7
Show newest version
package com.quhaodian.user.controller.admin;

import com.quhaodian.data.utils.FilterUtils;
import com.quhaodian.user.data.so.UserLabelSo;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.dao.DataIntegrityViolationException;
import org.springframework.stereotype.Controller;
import org.springframework.ui.ModelMap;
import org.springframework.web.bind.annotation.RequestMapping;
import org.apache.shiro.authz.annotation.RequiresPermissions;

import com.quhaodian.data.page.Order;
import com.quhaodian.data.page.Page;
import com.quhaodian.data.page.Pageable;
import  com.quhaodian.user.data.entity.UserLabel;
import com.quhaodian.user.data.service.UserLabelService;
import org.springframework.web.servlet.mvc.support.RedirectAttributes;
import org.springframework.context.annotation.Scope;

/**
*
* Created by imake on 2017年12月06日15:59:13.
*/


@Scope("prototype")
@Controller
public class UserLabelAction {

	public static final String MODEL = "model";

	public static final String REDIRECT_LIST_HTML = "redirect:/admin/userlabel/view_list.htm";

	private static final Logger log = LoggerFactory.getLogger(UserLabelAction.class);

	@Autowired
	private UserLabelService manager;

	@RequiresPermissions("userlabel")
	@RequestMapping("/admin/userlabel/view_list")
	public String list(Pageable pageable,UserLabelSo so,ModelMap model) {

		if (pageable==null){
			pageable=new Pageable();
		}
		if (pageable.getOrders().isEmpty()) {
			pageable.getOrders().add(Order.desc("id"));
		}
		pageable.getFilters().addAll(FilterUtils.getFilters(so));
		Page pagination = manager.page(pageable);
		model.addAttribute("list", pagination.getContent());
		model.addAttribute("page", pagination);
		model.addAttribute("so", so);
		return "/admin/userlabel/list";
	}

	@RequiresPermissions("userlabel")
	@RequestMapping("/admin/userlabel/view_add")
	public String add(ModelMap model) {
		return "/admin/userlabel/add";
	}

	@RequiresPermissions("userlabel")
	@RequestMapping("/admin/userlabel/view_edit")
	public String edit(Pageable pageable,Long id, ModelMap model) {
		model.addAttribute(MODEL, manager.findById(id));
		model.addAttribute("page", pageable);
		return "/admin/userlabel/edit";
	}

	@RequiresPermissions("userlabel")
	@RequestMapping("/admin/userlabel/view_view")
	public String view(Long id,ModelMap model) {
		model.addAttribute(MODEL, manager.findById(id));
		return "/admin/userlabel/view";
	}

	@RequiresPermissions("userlabel")
	@RequestMapping("/admin/userlabel/model_save")
	public String save(UserLabel bean,ModelMap model) {
	
	    String view=REDIRECT_LIST_HTML;
		try {
			manager.save(bean);
			log.info("save object id={}", bean.getId());
		} catch (Exception e) {
			log.error("保存失败",e);
			model.addAttribute("erro", e.getMessage());
			view="/admin/userlabel/add";
		}
		return view;
	}

	@RequiresPermissions("userlabel")
	@RequestMapping("/admin/userlabel/model_update")
	public String update(Pageable pageable, UserLabel bean, RedirectAttributes redirectAttributes, ModelMap model) {
		
		String view=REDIRECT_LIST_HTML;
		try {
			manager.update(bean);
			initRedirectData(pageable, redirectAttributes);
		} catch (Exception e) {
			log.error("更新失败",e);
			model.addAttribute("erro", e.getMessage());
			model.addAttribute(MODEL,bean);
		    model.addAttribute("page", pageable);
			view="/admin/userlabel/edit";
		}
		return view;
	}
	@RequiresPermissions("userlabel")
	@RequestMapping("/admin/userlabel/model_delete")
	public String delete(Pageable pageable, Long id, RedirectAttributes redirectAttributes) {

		String view=REDIRECT_LIST_HTML;

		try {
			initRedirectData(pageable, redirectAttributes);
			manager.deleteById(id);
		} catch (DataIntegrityViolationException e) {
			log.error("删除失败",e);
			redirectAttributes.addFlashAttribute("erro", "该条数据不能删除,请先删除和他相关的类容!");
		}

		return view;
	}

	@RequiresPermissions("userlabel")
	@RequestMapping("/admin/userlabel/model_deletes")
	public String deletes(Pageable pageable, Long[] ids,RedirectAttributes redirectAttributes) {

		String view=REDIRECT_LIST_HTML;

		try{
				initRedirectData(pageable, redirectAttributes);
				manager.deleteByIds(ids);
			} catch (DataIntegrityViolationException e) {
				log.error("批量删除失败",e);
				redirectAttributes.addFlashAttribute("erro", "该条数据不能删除,请先删除和他相关的类容!");
			}
		return view;
	}
	private void initRedirectData(Pageable pageable, RedirectAttributes redirectAttributes) {
		redirectAttributes.addAttribute("pageNumber",pageable.getPageNumber());
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy