ExchangeCode.php 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. <?php
  2. namespace app\store\controller;
  3. use library\Controller;
  4. use think\Db;
  5. /**
  6. * 兑换码
  7. * Class ExchangeCode
  8. * @package app\store\controller
  9. */
  10. class ExchangeCode extends Controller
  11. {
  12. /**
  13. * 绑定数据表
  14. * @var string
  15. */
  16. protected $table = 'GoodsCode';
  17. /**
  18. * 兑换码列表
  19. * @auth true
  20. * @menu true
  21. * @throws \think\Exception
  22. * @throws \think\db\exception\DataNotFoundException
  23. * @throws \think\db\exception\ModelNotFoundException
  24. * @throws \think\exception\DbException
  25. * @throws \think\exception\PDOException
  26. */
  27. public function index()
  28. {
  29. $this->title = '兑换码管理';
  30. $goods_id = input('id',0);
  31. $code = input('code','');
  32. $status = input('status',0);
  33. $this->goods_id = $goods_id;
  34. $query = $this->_query($this->table)->alias('c')
  35. ->field('c.*,m.name as user_name')
  36. ->join('store_member m','m.id=c.user_id','LEFT')
  37. ->where('c.goods_id',$goods_id);
  38. if($code) $query->where('c.code',$code);
  39. if($status) $query->where('c.status',$status);
  40. $query->order('status asc , id desc')->page();
  41. }
  42. /**
  43. * 数据列表处理
  44. * @auth true
  45. * @menu true
  46. * @param array $data
  47. * @throws \think\db\exception\DataNotFoundException
  48. * @throws \think\db\exception\ModelNotFoundException
  49. * @throws \think\exception\DbException
  50. */
  51. protected function _index_page_filter(&$data)
  52. {
  53. foreach ($data as $k=>&$v){
  54. }
  55. }
  56. /**
  57. * 添加兑换码
  58. * @auth true
  59. * @menu true
  60. * @throws \think\Exception
  61. * @throws \think\db\exception\DataNotFoundException
  62. * @throws \think\db\exception\ModelNotFoundException
  63. * @throws \think\exception\DbException
  64. * @throws \think\exception\PDOException
  65. */
  66. public function add()
  67. {
  68. $this->title = '添加兑换码';
  69. $goods_id = input('goods_id',0);
  70. $this->goods_id = $goods_id;
  71. $this->_form($this->table, 'form');
  72. }
  73. /**
  74. * 表单数据处理
  75. * @auth true
  76. * @menu true
  77. * @param array $data
  78. */
  79. protected function _form_filter(&$data)
  80. {
  81. if($this->request->post() && $this->request->action() == 'add'){
  82. $code_arr=[];
  83. for($i=0;$i< $data['num'];$i++){
  84. $code_str = $this->getRegisterCode($data['goods_id']);
  85. $code_arr[] = [
  86. 'code' => $code_str,
  87. 'goods_id' => $data['goods_id'],
  88. ];
  89. }
  90. Db::table('goods_code')->insertAll($code_arr);
  91. $this->success('添加成功!');
  92. }
  93. }
  94. /**
  95. * @auth true
  96. * @menu true
  97. * 兑换码下架
  98. */
  99. public function del()
  100. {
  101. $this->_delete($this->table);
  102. }
  103. public function getRegisterCode($goods_id)
  104. {
  105. $length = 13;
  106. $base_code = explode(',',"A,B,C,D,E,F,G,H,J,K,L,0,1,2,3,4,5,6,7,8,9,M,N,P,Q,R,S,T,U,V,W,X,Y,Z");
  107. $id_length = strlen($goods_id);
  108. $code_key = array_rand($base_code, $length - $id_length);
  109. $code_str = '';
  110. array_map(function ($val)use (&$code_str,$base_code){
  111. $code_str .=$base_code[$val] ;
  112. },$code_key);
  113. return $code_str.$goods_id;
  114. }
  115. }