yujian
2019-12-07 8c93d2e3b22ac543f8f94c2cf0eb982258fb708b
fanli/src/main/java/com/yeshi/fanli/controller/client/v1/UserCouponController.java
@@ -31,6 +31,7 @@
import com.yeshi.fanli.service.inter.user.UserInfoExtraService;
import com.yeshi.fanli.service.inter.user.UserLotteryRecordService;
import com.yeshi.fanli.service.inter.user.UserSystemCouponService;
import com.yeshi.fanli.service.inter.user.vip.UserVIPInfoService;
import com.yeshi.fanli.util.Constant;
import com.yeshi.fanli.vo.user.UserSystemCouponRecordVO;
import com.yeshi.fanli.vo.user.UserSystemCouponVO;
@@ -78,7 +79,8 @@
   @Resource
   private UserLotteryRecordService userLotteryRecordService;
   
   @Resource
   private UserVIPInfoService userVIPInfoService;
   /**
    * 用户券列表查询
@@ -119,13 +121,11 @@
            changeJump = true;
         }
         
         long count = 0;
         long count = UserSystemCouponService.countCouponOld(uid);
         List<UserSystemCouponVO> resultList = UserSystemCouponService
               .getUserCouponVOList((page - 1) * Constant.PAGE_SIZE, Constant.PAGE_SIZE, uid, changeJump);
         if (resultList != null && resultList.size() > 0) {
            count = UserSystemCouponService.countUserCouponList(uid);
         } else if (resultList == null) {
          if (resultList == null) {
            resultList = new ArrayList<UserSystemCouponVO>();
         }
@@ -291,13 +291,18 @@
         return;
      }
      if (userVIPInfoService.isVIP(uid)) {
         out.print(JsonUtil.loadFalseResult("超级会员不可使用奖励券"));
         return;
      }
      if (goodsType == null || goodsType > 3 || goodsType < 1) {
         goodsType = Constant.SOURCE_TYPE_TAOBAO;
      }
      
      try {
         UserSystemCouponService.useOrderCoupon(uid, cid, orderNo, goodsType);
         JSONObject data = commonOrderService.getRewardJumpInfo(orderNo);
         UserSystemCouponService.useOrderCoupon(uid, cid, orderNo, goodsType, acceptData);
         JSONObject data = commonOrderService.getRewardJumpInfo(orderNo, goodsType);
         out.print(JsonUtil.loadTrueResult(data));
      } catch (UserSystemCouponException e) {
         out.print(JsonUtil.loadFalseResult(e.getCode(), e.getMsg()));
@@ -367,7 +372,7 @@
    * @param uid
    * @param out
    */
   @RequestMapping(value = "getLotteryCount")
   // @RequestMapping(value = "getLotteryCount")
   public void getLotteryCount(String callback, AcceptData acceptData, Long uid, PrintWriter out) {
      try {
         // 1、已登录系统
@@ -422,7 +427,7 @@
    * @param uid
    * @param out
    */
   @RequestMapping(value = "getLotteryResult")
   // @RequestMapping(value = "getLotteryResult")
   public void getLotteryResult(String callback, AcceptData acceptData, Long uid, PrintWriter out) {
      try {
@@ -548,7 +553,7 @@
    * @param uid
    * @param out
    */
   @RequestMapping(value = "getDailyCount")
   // @RequestMapping(value = "getDailyCount")
   public void getDailyCount(String callback, AcceptData acceptData, Long uid, PrintWriter out) {
      try {
         JsonUtil.printMode(out, callback, JsonUtil.loadTrueResult(userLotteryRecordService.getLotteryCountDaily(uid)));
@@ -567,7 +572,7 @@
    * @param uid
    * @param out
    */
   @RequestMapping(value = "getDailyResult")
   // @RequestMapping(value = "getDailyResult")
   public void getDailyResult(String callback, AcceptData acceptData, Long uid, PrintWriter out) {
      try {
         JsonUtil.printMode(out, callback, JsonUtil.loadTrueResult(userLotteryRecordService.executeLotteryDaily(uid)));