截流自动化的商城平台
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

ApplyLogic.php 4.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. <?php
  2. namespace app\admin\logic\distribution;
  3. use app\common\basics\Logic;
  4. use app\common\logic\DistributionLogic;
  5. use app\common\model\distribution\Distribution;
  6. use app\common\model\distribution\DistributionMemberApply;
  7. use app\common\model\user\User;
  8. use app\common\server\AreaServer;
  9. use app\common\server\UrlServer;
  10. use think\facade\Db;
  11. class ApplyLogic extends Logic
  12. {
  13. /**
  14. * @Notes: 分销申请列表
  15. * @Author: 张无忌
  16. * @param $get
  17. * @return array
  18. */
  19. public static function lists($get)
  20. {
  21. try {
  22. $where[] = ['DMA.status', '=', $get['type'] ?? 0];
  23. $where[] = ['U.user_delete', '=', 0];
  24. if (!empty($get['keyword']) and $get['keyword']) {
  25. switch ($get['keyword_type']) {
  26. case 'sn':
  27. $where[] = ['U.sn', 'like', '%'.$get['keyword'].'%'];
  28. break;
  29. case 'nickname':
  30. $where[] = ['U.nickname', 'like', '%'.$get['keyword'].'%'];
  31. break;
  32. case 'mobile':
  33. $where[] = ['U.mobile', '=', $get['keyword']];
  34. break;
  35. }
  36. }
  37. $model = new DistributionMemberApply();
  38. $lists = $model->field(['DMA.*'])->alias('DMA')
  39. ->where($where)
  40. ->with(['user.level'])
  41. ->join('user U', 'U.id = DMA.user_id')
  42. ->paginate([
  43. 'page' => $get['page'],
  44. 'list_rows' => $get['limit'],
  45. 'var_page' => 'page'
  46. ])->toArray();
  47. foreach ($lists['data'] as &$item) {
  48. if ($item['user']) {
  49. $item['user']['avatar'] = UrlServer::getFileUrl($item['user']['avatar']);
  50. }
  51. $item['region'] = AreaServer::getAddress([
  52. $item['province'],
  53. $item['city'],
  54. $item['district']]
  55. );
  56. }
  57. return ['count'=>$lists['total'], 'lists'=>$lists['data']];
  58. } catch (\Exception $e) {
  59. return ['error'=>$e->getMessage()];
  60. }
  61. }
  62. /**
  63. * @Notes: 分销申请详细
  64. * @Author: 张无忌
  65. * @param $id
  66. * @return array
  67. */
  68. public static function detail($id)
  69. {
  70. $model = new DistributionMemberApply();
  71. $detail = $model->field(true)
  72. ->with(['user.level'])
  73. ->findOrEmpty($id)
  74. ->toArray();
  75. $detail['status_text'] = DistributionMemberApply::getApplyStatus($detail['status']);
  76. $detail['region'] = AreaServer::getAddress([
  77. $detail['province'],
  78. $detail['city'],
  79. $detail['district']]
  80. );
  81. return $detail;
  82. }
  83. /**
  84. * @Notes: 审核分销申请
  85. * @Author: 张无忌
  86. * @param $post
  87. * @return bool
  88. */
  89. public static function audit($post)
  90. {
  91. Db::startTrans();
  92. try {
  93. if ($post['audit_status'] == 1) {
  94. // 审核通过
  95. $model = new DistributionMemberApply();
  96. $apply = $model->field(true)->findOrEmpty((int)$post['id'])->toArray();
  97. DistributionMemberApply::update([
  98. 'status' => $post['audit_status'],
  99. 'denial_reason' => $post['denial_reason'] ?? '',
  100. 'update_time' => time()
  101. ], ['id'=>(int)$post['id']]);
  102. $distribution = Distribution::where('user_id', $apply['user_id'])->findOrEmpty()->toArray();
  103. if (empty($distribution)) {
  104. // 生成分销基础信息表
  105. DistributionLogic::add($apply['user_id']);
  106. }
  107. // 更新分销基础信息表
  108. Distribution::where('user_id', $apply['user_id'])->update([
  109. 'is_distribution' => 1,
  110. 'distribution_time' => time()
  111. ]);
  112. } else {
  113. // 审核拒绝
  114. DistributionMemberApply::update([
  115. 'status' => $post['audit_status'],
  116. 'denial_reason' => $post['denial_reason'] ?? '',
  117. 'update_time' => time()
  118. ], ['id'=>(int)$post['id']]);
  119. }
  120. Db::commit();
  121. return true;
  122. } catch (\Exception $e) {
  123. Db::rollback();
  124. static::$error = $e->getMessage();
  125. return false;
  126. }
  127. }
  128. }