Exemplo n.º 1
0
 /**
  * 添加
  *
  * @param inv
  * @param actPintuConf
  * @param startTime
  * @param endTime
  * @param userPluginId
  * @return
  * @throws Exception
  */
 @Post("add_do")
 public String add_do(
     final Invocation inv,
     ActPintuConf actPintuConf,
     @Param("activityTime") final String activityTime,
     @Param("userPluginId") final Integer userPluginId)
     throws Exception {
   if (activityTime == null
       || activityTime.length() == 0
       || actPintuConf.getAwards() == null
       || actPintuConf.getAwards().toString().length() == 0) {
     inv.addModel("tip", "非法操作,请重试");
     inv.addModel(
         "backUrl", ReadProperties.getPara("httpPath") + "/pluginadmin/pintu/add/" + userPluginId);
     return "../pc/tip.jsp";
   }
   if (activityTime.length() != 0) {
     String[] time = activityTime.split(" - ");
     actPintuConf.setStartTime(DateUtils.converDate(time[0]));
     actPintuConf.setEndTime(DateUtils.converDate(time[1]));
   }
   actPintuConf.setCreateTime(new Date());
   actPintuConfService.save(actPintuConf, userPluginId);
   actPintuConfService.savePrize(
       actPintuConf.getActivityId(), actPintuConf.getAwards().toString());
   inv.getResponse().sendRedirect(WebApplicationUtils.getBasePath() + "/pc/my/actList");
   return null;
 }
Exemplo n.º 2
0
 @Get("exportRank/{activityId:[0-9]+}")
 public String exportRank(
     final Invocation inv,
     @Param("activityId") final Integer activityId,
     @Param("start") final Integer start,
     @Param("end") final Integer end) {
   int startRow = 0;
   int total = 0;
   if (start != null && end != null) {
     if (start > 0) startRow = start - 1;
     total = end - start + 1;
     if (total > Globals.EXCEL_MAX_EXPORT_NUMBER) {
       return "@<script>alert('"
           + "导出数量超过"
           + Globals.EXCEL_MAX_EXPORT_NUMBER
           + "');window.history.go(-1);</script>";
     }
   } else {
     total = actPintuConfService.countAllScore(activityId);
     if (total > Globals.EXCEL_MAX_EXPORT_NUMBER) {
       return "@<script>alert('"
           + "导出数量超过"
           + Globals.EXCEL_MAX_EXPORT_NUMBER
           + ",请分段导出"
           + "');window.history.go(-1);</script>";
     }
   }
   actPintuConfService.exportRank(activityId, inv, startRow, total);
   return null;
 }
Exemplo n.º 3
0
 /**
  * 编辑活动跳转
  *
  * @param inv
  * @param id 活动id activityId
  * @return
  * @throws Exception
  */
 @ActOptRequired
 @Get("edit/{activityId:[0-9]+}")
 public String edit(final Invocation inv, @Param("activityId") final Integer activityId)
     throws Exception {
   ActPintuConf actPintuConf = actPintuConfService.findByActId(activityId);
   if (actPintuConf != null) {
     List<PintuAwardsVo> pintuAwardsVoList =
         actPintuConfService.parseJson(actPintuConf.getAwards().toString());
     inv.addModel("awardslist", pintuAwardsVoList);
     inv.addModel("conf", actPintuConf);
   }
   return "pintu/edit";
 }
Exemplo n.º 4
0
 // 修改兑换状态
 @Post("changeOpStatus")
 public String changeOpStatus(final Invocation inv, @Param("id") final Integer id) {
   String res = actPintuConfService.changeOpStatus(id);
   if (res == null) {
     return "@json:" + "{\"status\":\"" + "1" + "\"}";
   } else {
     return "@json:" + "{\"status\":\"" + "0" + "\",\"exchangeTime\":\"" + res + "\"}";
   }
 }
Exemplo n.º 5
0
 @Post("updateBestScore")
 public String updateBestScore(
     final Invocation inv, @Param("id") final Integer id, @Param("score") final Integer score) {
   int res = actPintuConfService.updateBestScore(id, score);
   if (res == 0) {
     return "@json:" + "{\"status\":\"" + "1" + "\"}";
   } else {
     return "@json:" + "{\"status\":\"" + "0" + "\"}";
   }
 }
Exemplo n.º 6
0
 @ActOptRequired
 @Get("record/{activityId:[0-9]+}")
 public String record(
     final Invocation inv,
     @Param("activityId") final Integer activityId,
     @Param("currentPage") final int currentPage,
     @Param("count") final int count,
     @Param("upid") final Integer userPluginId) {
   Pagination<ActPintuRecord> paginationRecord =
       actPintuConfService.getRecordPage(activityId, currentPage, Globals.PAGE_SHOW_NUMBER);
   inv.addModel("recordVos", paginationRecord);
   inv.addModel("activityId", activityId);
   inv.addModel("userPluginId", userPluginId);
   return "pintu/record";
 }
Exemplo n.º 7
0
 @ActOptRequired
 @Get("rank/{activityId:[0-9]+}")
 public String rank(
     final Invocation inv,
     @Param("activityId") final Integer activityId,
     @Param("currentPage") final int currentPage,
     @Param("count") final int count,
     @Param("upid") final Integer userPluginId) {
   Pagination<ActPintuRecord> paginationRecord =
       actPintuConfService.getRankPage(activityId, currentPage, Globals.PAGE_SHOW_NUMBER);
   inv.addModel("recordVos", paginationRecord);
   inv.addModel("activityId", activityId);
   inv.addModel("userPluginId", userPluginId);
   inv.addModel("rankUrl", ReadProperties.getPara("httpPath") + "/cj/pintu/rank/" + activityId);
   return "pintu/rank";
 }