123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157 |
- /*
- package com.kmall.admin.service.impl;
- import com.google.common.collect.ImmutableBiMap;
- import com.kmall.admin.dao.CouponDao;
- import com.kmall.admin.dao.CouponGoodsDao;
- import com.kmall.admin.dao.UserCouponDao;
- import com.kmall.admin.dao.UserDao;
- import com.kmall.admin.entity.CouponEntity;
- import com.kmall.admin.entity.CouponGoodsEntity;
- import com.kmall.admin.entity.UserCouponEntity;
- import com.kmall.admin.entity.UserEntity;
- import com.kmall.admin.service.CouponService;
- import com.kmall.common.utils.MapBeanUtil;
- import com.kmall.common.utils.R;
- import com.kmall.common.utils.RRException;
- import com.kmall.common.utils.ValidatorUtil;
- import org.apache.commons.collections.MapUtils;
- import org.apache.commons.lang.StringUtils;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.stereotype.Service;
- import java.util.Date;
- import java.util.List;
- import java.util.Map;
- */
- /**
- * Service实现类
- *
- * @author Scott
- * @email
- * @date 2017-08-19 12:53:26
- *//*
- @Service("couponService")
- public class CouponServiceImpl implements CouponService {
- @Autowired
- private CouponDao couponDao;
- @Autowired
- private UserCouponDao userCouponDao;
- @Autowired
- private CouponGoodsDao couponGoodsDao;
- @Autowired
- private UserDao userDao;
- @Override
- public CouponEntity queryObject(Integer id) {
- return couponDao.queryObject(id);
- }
- @Override
- public List<CouponEntity> queryList(Map<String, Object> map) {
- return couponDao.queryList(map);
- }
- @Override
- public int queryTotal(Map<String, Object> map) {
- return couponDao.queryTotal(map);
- }
- @Override
- public int save(CouponEntity coupon) {
- Map<String, Object> valideDate = MapBeanUtil.fromObject(coupon);
- ImmutableBiMap.Builder builder = new ImmutableBiMap.Builder();
- builder.put("merchSn", "商户");
- builder.put("storeId", "门店");
- R r = ValidatorUtil.isEmpty(builder.build(), valideDate);
- if (Integer.valueOf(r.get("code").toString()) != 0) {
- throw new RRException(r.get("msg").toString());
- }
- return couponDao.save(coupon);
- }
- @Override
- public int update(CouponEntity coupon) {
- Map<String, Object> valideDate = MapBeanUtil.fromObject(coupon);
- ImmutableBiMap.Builder builder = new ImmutableBiMap.Builder();
- builder.put("merchSn", "商户");
- builder.put("storeId", "门店");
- R r = ValidatorUtil.isEmpty(builder.build(), valideDate);
- if (Integer.valueOf(r.get("code").toString()) != 0) {
- throw new RRException(r.get("msg").toString());
- }
- return couponDao.update(coupon);
- }
- @Override
- public int delete(Integer id) {
- return couponDao.delete(id);
- }
- @Override
- public int deleteBatch(Integer[] ids) {
- return couponDao.deleteBatch(ids);
- }
- @Override
- public R publish(Map<String, Object> params) {
- // 发放方式 0:按订单发放 1:按用户发放 2:商品转发送券 3:按商品发放 4:新用户注册 5:线下发放 6评价好评红包(固定或随机红包)
- Integer sendType = MapUtils.getInteger(params, "sendType");
- Integer couponId = MapUtils.getInteger(params, "couponId");
- if (null == sendType) {
- return R.error("发放方式不能为空");
- }
- if (null == couponId) {
- return R.error("优惠券不能为空");
- }
- if (1 == sendType) {
- String userIds = MapUtils.getString(params, "userIds"); // 下发用户逗号分割
- if (StringUtils.isEmpty(userIds)) {
- return R.error("用户不能为空");
- }
- //是否发送短信通知
- boolean sendSms = "true".equals(MapUtils.getString(params, "sendSms"));
- for (String strUserId : userIds.split(",")) {
- if (StringUtils.isEmpty(strUserId)) {
- continue;
- }
- Integer userId = Integer.valueOf(strUserId);
- UserCouponEntity userCouponVo = new UserCouponEntity();
- userCouponVo.setUserId(userId);
- userCouponVo.setCouponId(couponId);
- userCouponVo.setCouponNumber("1");
- userCouponVo.setAddTime(new Date());
- userCouponDao.save(userCouponVo);
- if (sendSms) {
- UserEntity userEntity = userDao.queryObject(userId);
- // todo 发送短信
- }
- }
- } else if (3 == sendType) {
- String goodsIds = MapUtils.getString(params, "goodsIds"); // 下发商品逗号分割
- if (StringUtils.isEmpty(goodsIds)) {
- return R.error("商品Id不能为空");
- }
- for (String goodsId : goodsIds.split(",")) {
- if (StringUtils.isEmpty(goodsId)) {
- continue;
- }
- CouponGoodsEntity couponGoodsVo = new CouponGoodsEntity();
- couponGoodsVo.setCouponId(couponId);
- couponGoodsVo.setGoodsId(Integer.valueOf(goodsId));
- couponGoodsDao.save(couponGoodsVo);
- }
- } else {
- return R.error("此类优惠券不支持手动发放");
- }
- return R.ok("发放成功");
- }
- }
- */
|