Pointmallvoucher.php 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  1. <?php
  2. namespace app\home\controller;
  3. use think\facade\View;
  4. use think\facade\Lang;
  5. /**
  6. * ============================================================================
  7. *
  8. * ============================================================================
  9. *
  10. * ----------------------------------------------------------------------------
  11. *
  12. * ============================================================================
  13. * 控制器
  14. */
  15. class Pointmallvoucher extends BasePointShop
  16. {
  17. public function initialize()
  18. {
  19. parent::initialize(); // TODO: Change the autogenerated stub
  20. Lang::load(base_path() . 'home/lang/' . config('lang.default_lang') . '/voucher.lang.php');
  21. if (config('ds_config.voucher_allow') != 1) {
  22. $this->error(lang('voucher_pointunavailable'), HOME_SITE_URL);
  23. }
  24. }
  25. public function index()
  26. {
  27. $this->pointmallvoucher();
  28. return View::fetch($this->template_dir . 'pointmallvoucher');
  29. }
  30. /**
  31. * 平台代金券列表
  32. */
  33. public function pointmallvoucher()
  34. {
  35. //查询会员及其附属信息
  36. parent::pointshopMInfo();
  37. $mallvouchertemplate_model = model('mallvouchertemplate');
  38. //查询会员信息
  39. $member_info = model('member')->getMemberInfoByID(session('member_id'));
  40. //查询代金券列表
  41. $where = array();
  42. $where[] = array('mallvouchertemplate_startdate', '<', TIMESTAMP);
  43. $where[] = array('mallvouchertemplate_enddate', '>', TIMESTAMP);
  44. $gc_id = intval(input('gc_id'));
  45. if ($gc_id > 0) {
  46. $gc_idarr = array();
  47. $goodsclasslist = model('goodsclass')->getChildClass($gc_id);
  48. foreach ($goodsclasslist as $k => $v) {
  49. $gc_idarr[] = $v['gc_id'];
  50. }
  51. $gccondition = implode(',', $gc_idarr);
  52. $where[] = array('mallvouchertemplate_gcid', 'in', $gccondition);
  53. }
  54. if (intval(input('price')) > 0) {
  55. $where[] = array('mallvouchertemplate_price', '=', intval(input('price')));
  56. }
  57. //查询仅我能兑换和所需积分
  58. $points_filter = array();
  59. if (intval(input('isable')) == 1) {
  60. $points_filter['isable'] = $member_info['member_points'];
  61. }
  62. if (intval(input('points_min')) > 0) {
  63. $points_filter['min'] = intval(input('points_min'));
  64. }
  65. if (intval(input('points_max')) > 0) {
  66. $points_filter['max'] = intval(input('points_max'));
  67. }
  68. if (count($points_filter) > 0) {
  69. asort($points_filter);
  70. if (count($points_filter) > 1) {
  71. $points_filter = array_values($points_filter);
  72. $where[] = array('mallvouchertemplate_points', 'between', array($points_filter[0], $points_filter[1]));
  73. } else {
  74. if (isset($points_filter['min'])) {
  75. $where[] = array('mallvouchertemplate_points', '>=', $points_filter['min']);
  76. } elseif (isset($points_filter['max'])) {
  77. $where[] = array('mallvouchertemplate_points', '<=', $points_filter['max']);
  78. } elseif (isset($points_filter['isable'])) {
  79. $where[] = array('mallvouchertemplate_points', '<=', $points_filter['isable']);
  80. }
  81. }
  82. }
  83. //排序
  84. switch (input('orderby')) {
  85. case 'pointsdesc':
  86. $orderby = 'mallvouchertemplate_points desc,';
  87. break;
  88. case 'pointsasc':
  89. $orderby = 'mallvouchertemplate_points asc,';
  90. break;
  91. default:
  92. $orderby = '';
  93. }
  94. $orderby .= 'mallvouchertemplate_id desc';
  95. $mallvoucherlist = $mallvouchertemplate_model->getMallvouchertemplateList($where, 10, $orderby);
  96. View::assign('mallvoucherlist', $mallvoucherlist);
  97. View::assign('show_page', $mallvouchertemplate_model->page_info->render());
  98. //查询平台分类
  99. $gc_list = model('goodsclass')->getGoodsclassListByParentId(0);
  100. View::assign('gc_list', $gc_list);
  101. //分类导航
  102. $nav_link = array(
  103. 0 => array('title' => lang('homepage'), 'link' => HOME_SITE_URL),
  104. 1 => array('title' => lang('integral_center'), 'link' => (string)url('Pointshop/index')),
  105. 2 => array('title' => lang('mall_voucher'))
  106. );
  107. View::assign('nav_link_list', $nav_link);
  108. }
  109. /**
  110. * 兑换代金券
  111. */
  112. public function mallvoucherexchange()
  113. {
  114. $vid = intval(input('param.vid'));
  115. $result = true;
  116. $message = "";
  117. if ($vid <= 0) {
  118. $result = false;
  119. }
  120. if ($result) {
  121. //查询可兑换代金券模板信息
  122. $template_info = model('mallvouchertemplate')->getCanChangeTemplateInfo($vid, intval(session('member_id')));
  123. if ($template_info['state'] == false) {
  124. $result = false;
  125. $message = $template_info['msg'];
  126. } else {
  127. //查询会员信息
  128. $member_info = model('member')->getMemberInfoByID(session('member_id'));
  129. View::assign('member_info', $member_info);
  130. View::assign('template_info', $template_info['info']);
  131. }
  132. }
  133. View::assign('message', $message);
  134. View::assign('result', $result);
  135. echo View::fetch($this->template_dir . 'exchange');
  136. exit;
  137. }
  138. /**
  139. * 兑换代金券保存信息
  140. *
  141. */
  142. public function mallvoucherexchange_save()
  143. {
  144. if (session('is_login') != '1') {
  145. ds_json_encode(10001, lang('param_error'));
  146. }
  147. $vid = intval(input('post.vid'));
  148. if ($vid <= 0) {
  149. ds_json_encode(10001, lang('param_error'));
  150. }
  151. $mallvouchertemplate_model = model('mallvouchertemplate');
  152. //验证是否可以兑换代金券
  153. $data = $mallvouchertemplate_model->getCanChangeTemplateInfo($vid, intval(session('member_id')));
  154. if ($data['state'] == false) {
  155. ds_json_encode(10001, $data['msg']);
  156. }
  157. //添加代金券信息
  158. $data = $mallvouchertemplate_model->exchangeMallvoucher($data['info'], session('member_id'), session('member_name'));
  159. if ($data['state'] == true) {
  160. ds_json_encode(10000, $data['msg']);
  161. } else {
  162. ds_json_encode(10001, $data['msg']);
  163. }
  164. }
  165. }