Pu Zhibing
2 天以前 5dacdee9b54c78372b68140e2b068d03a620eab9
ManagementQYTTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/system/controller/specialTrain/TIntegralGoodsController.java
@@ -4,19 +4,19 @@
import com.stylefeng.guns.core.base.controller.BaseController;
import com.stylefeng.guns.core.beetl.ShiroExtUtil;
import com.stylefeng.guns.core.common.constant.factory.PageFactory;
import com.stylefeng.guns.core.shiro.ShiroKit;
import com.stylefeng.guns.core.util.SinataUtil;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.beans.factory.annotation.Autowired;
import com.stylefeng.guns.core.log.LogObjectHolder;
import org.springframework.web.bind.annotation.RequestParam;
import com.stylefeng.guns.core.util.SinataUtil;
import com.stylefeng.guns.modular.system.model.TIntegralGoods;
import com.stylefeng.guns.modular.system.service.ITIntegralGoodsService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.ResponseBody;
import javax.annotation.Resource;
import java.util.Date;
import java.util.Map;
@@ -29,12 +29,14 @@
@Controller
@RequestMapping("/tIntegralGoods")
public class TIntegralGoodsController extends BaseController {
    private String PREFIX = "/system/tIntegralGoods/";
    @Autowired
    private ITIntegralGoodsService tIntegralGoodsService;
    @Resource
    private ShiroExtUtil shiroExtUtil;
    /**
     * 跳转到商品管理首页
     */
@@ -42,7 +44,7 @@
    public String index() {
        return PREFIX + "tIntegralGoods.html";
    }
    /**
     * 跳转到添加商品管理
     */
@@ -70,13 +72,13 @@
    public Object list(String insertTime,String name,Integer state) {
        String beginTime = null;
        String endTime = null;
        if (SinataUtil.isNotEmpty(insertTime)){
        if (SinataUtil.isNotEmpty(insertTime)) {
            String[] timeArray = insertTime.split(" - ");
            beginTime = timeArray[0];
            endTime = timeArray[1];
        }
        Page<Map<String, Object>> page = new PageFactory<Map<String, Object>>().defaultPage();
        if (ShiroExtUtil.getUser().getRoleType() != 1) {
        if (shiroExtUtil.getUser().getRoleType() != 1) {
            page.setRecords(null);
        } else {
            page.setRecords(tIntegralGoodsService.getIntegralGoodsList(page, beginTime, endTime, name, state));
@@ -91,8 +93,8 @@
    @ResponseBody
    public Object add(TIntegralGoods tIntegralGoods) {
        tIntegralGoods.setInsertTime(new Date());
        tIntegralGoods.setInsertUserId(ShiroExtUtil.getUser().getId());
        tIntegralGoods.setInsertUserRole(ShiroExtUtil.getUser().getRoleType());
        tIntegralGoods.setInsertUserId(shiroExtUtil.getUser().getId());
        tIntegralGoods.setInsertUserRole(shiroExtUtil.getUser().getRoleType());
        tIntegralGoods.setState(1);
        tIntegralGoodsService.insert(tIntegralGoods);
        return SUCCESS_TIP;