暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

Memgift.php 11KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294
  1. <?php
  2. /**
  3. * 易优CMS
  4. * ============================================================================
  5. * 版权所有 2016-2028 海南赞赞网络科技有限公司,并保留所有权利。
  6. * 网站地址: http://www.eyoucms.com
  7. * ----------------------------------------------------------------------------
  8. * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
  9. * ============================================================================
  10. * Author: 陈风任 <491085389@qq.com>
  11. * Date: 2019-7-3
  12. */
  13. namespace app\user\controller;
  14. use think\Db;
  15. use think\Config;
  16. use think\Verify;
  17. use think\Page;
  18. use think\Request;
  19. /**
  20. * 积分兑换
  21. */
  22. class Memgift extends Base
  23. {
  24. public function _initialize()
  25. {
  26. parent::_initialize();
  27. // 积分兑换是否已在用
  28. $shopLogic = new \app\admin\logic\ShopLogic;
  29. $useFunc = $shopLogic->useFuncLogic();
  30. if (!in_array('memgift', $useFunc)) {
  31. $this->error('内置功能已废弃!');
  32. }
  33. //积分名称
  34. $score = getUsersConfigData('score');
  35. $this->score_name = $score['score_name'];
  36. $this->assign('score_name', $this->score_name);
  37. }
  38. // 积分商品列表
  39. public function users_gift_list()
  40. {
  41. //全部积分商品
  42. $condition = ['stock' => ['gt', 0], 'is_del' => 0, 'status' => 1];
  43. $list = Db::name('memgift')->field('a.*')
  44. ->alias('a')
  45. ->where($condition)
  46. ->order('a.sort_order asc')
  47. ->select();
  48. foreach ($list as $key => $val) {
  49. $list[$key]['litpic'] = get_default_pic($val['litpic']);
  50. }
  51. $this->assign('list', $list);
  52. $pagesize = config('paginate.list_rows');
  53. //积分兑换记录列表
  54. $where = ['a.users_id' => $this->users_id];
  55. $count = Db::name('memgiftget')->alias('a')->where($where)->count();
  56. $Page = new Page($count, $pagesize);
  57. $order_list = Db::name('memgiftget')->alias('a')
  58. ->field('a.*,b.litpic')
  59. ->join('memgift b', 'a.gift_id = b.gift_id', 'left')
  60. ->where($where)
  61. ->order('a.add_time desc,a.gid desc')
  62. ->limit($Page->firstRow . ',' . $Page->listRows)
  63. ->select();
  64. foreach ($order_list as $key => $val) {
  65. $val['key'] = ($Page->nowPage - 1) * $pagesize + $key + 1;
  66. $val['litpic'] = get_default_pic($val['litpic']);
  67. $order_list[$key] = $val;
  68. }
  69. $show = $Page->show();
  70. $this->assign('page', $show);
  71. $this->assign('order_list', $order_list);
  72. $this->assign('pager', $Page);
  73. return $this->fetch();
  74. }
  75. //展示积分商品详情
  76. public function users_gift_detail()
  77. {
  78. $post = input('param.');
  79. if (empty($post)) {
  80. $this->error("没有数据");
  81. }
  82. $field = Db::name('memgift')->where(['gift_id' => $post['gift_id']])->find();
  83. if (empty($field)) {
  84. $this->error("没有数据");
  85. }
  86. $field['litpic'] = get_default_pic($field['litpic']);
  87. $this->assign('field', $field);
  88. return $this->fetch();
  89. }
  90. //兑换实物
  91. public function users_gift_shiwu()
  92. {
  93. $post = input('param.');
  94. if (IS_POST) {
  95. $gift_id = !empty($post['gift_id']) ? intval($post['gift_id']) : 0;
  96. $name = !empty($post['name']) ? $post['name'] : '';
  97. $mobile = !empty($post['mobile']) ? $post['mobile'] : '';
  98. $address = !empty($post['address']) ? $post['address'] : '';
  99. $scores = $this->users['scores'];
  100. $time = getTime();
  101. if (empty($gift_id)) {
  102. $this->error('请选择正确的商品!');
  103. }
  104. $row = Db::name("memgift")->where(['gift_id' => $gift_id])->find();
  105. if (empty($row)) {
  106. $this->error('商品不存在!');
  107. }
  108. $giftname = $row['giftname'];
  109. $score = $row['score'];
  110. if (empty($row['status'])) {
  111. $this->error('该商品目前处于非兑换状态!');
  112. }
  113. if ($row['stock'] < 1) {
  114. $this->error('该商品库存不足!');
  115. }
  116. if ($score > $scores) {
  117. $this->error("您的{$this->score_name}还不够兑换该商品!");
  118. }
  119. $insert_data = [
  120. 'giftname' => $giftname,
  121. 'gift_id' => $gift_id,
  122. 'score' => $score,
  123. 'users_id' => $this->users_id,
  124. 'add_time' => $time,
  125. 'update_time' => $time,
  126. 'name' => $name,
  127. 'mobile' => $mobile,
  128. 'address' => $address,
  129. ];
  130. $gid = Db::name('memgiftget')->insertGetId($insert_data);
  131. if ($gid) {
  132. //日志记录
  133. $data = [
  134. 'users_id' => $this->users_id,
  135. 'info' => "积分兑换,gid={$gid}",
  136. 'score' => '-' . $score,
  137. 'type' => 9,
  138. 'add_time' => getTime(),
  139. 'update_time' => getTime(),
  140. 'current_score' => $this->users['scores'],
  141. 'current_devote' => $this->users['devote'],
  142. ];
  143. Db::name('users_score')->insert($data);
  144. $update_users = Db::name("users")->where(['users_id' => $this->users_id])->update(['scores' => Db::Raw("scores-" . $score), 'update_time' => getTime()]);
  145. if ($update_users) {
  146. $memgift_data = [
  147. 'num' => Db::raw('num+1'),
  148. 'stock' => Db::raw('stock-1'),
  149. 'update_time' => getTime(),
  150. ];
  151. Db::name("memgift")->where(['gift_id' => $gift_id])->update($memgift_data);
  152. $this->success("成功兑换商品,请等待发货!");
  153. }
  154. }
  155. $this->error('兑换失败!');
  156. }
  157. $this->assign('post', $post);
  158. $field = Db::name("memgiftget")->field("name,mobile,address")->where(['users_id' => $this->users_id, 'name' => ['neq', '']])->find();
  159. $this->assign('field', $field);
  160. return $this->fetch();
  161. }
  162. public function users_gift_vip()
  163. {
  164. if (IS_POST) {
  165. $post = input('param.');
  166. $gift_id = !empty($post['gift_id']) ? intval($post['gift_id']) : 0;
  167. if (empty($gift_id)) {
  168. $this->error('请选择正确的商品!');
  169. }
  170. $long = !empty($post['long']) ? intval($post['long']) : 0;
  171. $scores = $this->users['scores'];
  172. $row = Db::name('memgift')->where(['gift_id' => $gift_id])->find();
  173. $type_id = $row['type_id'];
  174. if (empty($row)) {
  175. $this->error('商品不存在!');
  176. }
  177. $giftname = $row['giftname'];
  178. $score = $row['score'];
  179. if (empty($row['status'])) {
  180. $this->error('该商品目前处于非兑换状态!');
  181. }
  182. if ($row['stock'] < 1) {
  183. $this->error('该商品库存不足!');
  184. }
  185. if ($score > $scores) {
  186. $this->error("您的{$this->score_name}还不够兑换该商品!");
  187. }
  188. //才做到这里,下面的逻辑没捋完 2022.07.08 大黄
  189. //兑换的vip套餐
  190. $users_type_manage = Db::name('users_type_manage')
  191. ->where('type_id', $type_id)
  192. ->find();
  193. if (empty($long) && $this->users['level_maturity_days'] > 0) {
  194. if ($users_type_manage['level_id'] != $this->users['level_id']) {
  195. $res = [
  196. 'code' => 2,
  197. 'msg' => "您已经是{$this->users['level_name']}(有效期:{$this->users['level_maturity_days']}天)啦,还要继续兑换吗?继续兑换将会覆盖原会员!",
  198. ];
  199. exit(json_encode($res));
  200. } else {
  201. $res = [
  202. 'code' => 2,
  203. 'msg' => "您已经是{$this->users['level_name']}(有效期:{$this->users['level_maturity_days']}天)啦,还要继续兑换吗?",
  204. ];
  205. exit(json_encode($res));
  206. }
  207. }
  208. //会员期限定义数组
  209. $limit_arr = Config::get('global.admin_member_limit_arr');
  210. // 会员升级级别
  211. $limit_id = $users_type_manage['limit_id'];
  212. // 到期天数
  213. $maturity_days = $limit_arr[$limit_id]['maturity_days'];
  214. // 更新会员属性表的数组
  215. $result = [
  216. 'level' => $users_type_manage['level_id'],
  217. 'update_time' => getTime()
  218. ];
  219. //用户当前是某个级别会员
  220. if ($this->users['level_maturity_days'] > 0) {
  221. //当前级别与兑换会员级别不同 直接覆盖天数
  222. if ($users_type_manage['level_id'] != $this->users['level_id']) {
  223. $result['level_maturity_days'] = $maturity_days;
  224. $result['open_level_time'] = getTime();
  225. } else {
  226. //当前级别与兑换会员级别相同 累加天数
  227. $result['level_maturity_days'] = Db::raw('level_maturity_days+' . ($maturity_days));
  228. }
  229. } else {
  230. //不是会员
  231. $result['level_maturity_days'] = $maturity_days;
  232. $result['open_level_time'] = getTime();
  233. }
  234. $insert_data = [
  235. 'giftname' => $giftname,
  236. 'gift_id' => $gift_id,
  237. 'score' => $score,
  238. 'users_id' => $this->users_id,
  239. 'add_time' => getTime(),
  240. 'update_time' => getTime(),
  241. 'status' => 1
  242. ];
  243. $gid = Db::name('memgiftget')->insertGetId($insert_data);
  244. if ($gid) {
  245. //-库存 + 兑换次数
  246. $memgift_update = [
  247. 'num' => Db::Raw('num+1'),
  248. 'stock' => Db::Raw('stock-1'),
  249. 'update_time' => getTime()
  250. ];
  251. Db::name('memgift')->where(['gift_id' => $gift_id])->update($memgift_update);
  252. //日志记录
  253. $data = [
  254. 'users_id' => $this->users_id,
  255. 'info' => "积分兑换,gid={$gift_id}",
  256. 'score' => '-' . $score,
  257. 'type' => 9,
  258. 'add_time' => getTime(),
  259. 'update_time' => getTime(),
  260. 'current_score' => $this->users['scores'],
  261. 'current_devote' => $this->users['devote'],
  262. ];
  263. Db::name('users_score')->insert($data);
  264. $result['scores'] = Db::Raw("scores-" . $score);
  265. Db::name('users')->where('users_id', $this->users_id)->update($result);
  266. $this->success('兑换成功!');
  267. } else {
  268. $this->error('兑换失败!');
  269. }
  270. }
  271. }
  272. }