截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ApplyLogic.php 7.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235
  1. <?php
  2. namespace app\admin\logic\shop;
  3. use app\common\basics\Logic;
  4. use app\common\enum\NoticeEnum;
  5. use app\common\enum\ShopEnum;
  6. use app\common\model\shop\Shop;
  7. use app\common\model\shop\ShopAdmin;
  8. use app\common\model\shop\ShopApply;
  9. use app\common\server\UrlServer;
  10. use Exception;
  11. use think\facade\Db;
  12. class ApplyLogic extends Logic
  13. {
  14. /**
  15. * NOTE: 获取申请列表
  16. * @param array $get
  17. * @return array
  18. * @author 张无忌
  19. */
  20. public static function lists($get)
  21. {
  22. try {
  23. $type = [
  24. ['audit_status', '=', ShopEnum::AUDIT_STATUS_STAY],
  25. ['audit_status', '=', ShopEnum::AUDIT_STATUS_OK],
  26. ['audit_status', '=', ShopEnum::AUDIT_STATUS_REFUSE]
  27. ];
  28. $get['type'] = $get['type'] ?? 1;
  29. $where[] = $type[intval($get['type']) - 1];
  30. if (!empty($get['name']) and $get['name'])
  31. $where[] = ['name', 'like', '%'.$get['name'].'%'];
  32. if (!empty($get['nickname']) and $get['nickname'])
  33. $where[] = ['nickname', 'like', '%'.$get['nickname'].'%'];
  34. if (!empty($get['apply_start_time']) and $get['apply_start_time'])
  35. $where[] = ['apply_time', '>=', strtotime($get['apply_start_time'])];
  36. if (!empty($get['apply_end_time']) and $get['apply_end_time'])
  37. $where[] = ['apply_time', '<=', strtotime($get['apply_end_time'])];
  38. $model = new ShopApply();
  39. $lists = $model->field(true)
  40. ->where($where)
  41. ->where(['del'=>0])
  42. ->with(['category'])
  43. ->paginate([
  44. 'page' => $get['page'],
  45. 'list_rows' => $get['limit'],
  46. 'var_page' => 'page'
  47. ])
  48. ->toArray();
  49. foreach ($lists['data'] as &$item) {
  50. $item['category'] = $item['category']['name'] ?? '未知类目';
  51. $item['audit_status_desc'] = ShopEnum::getAuditStatusDesc($item['audit_status']);
  52. $license = [];
  53. foreach ($item['license'] as $url) {
  54. $license[] = UrlServer::getFileUrl($url);
  55. }
  56. $item['license'] = $license;
  57. }
  58. return ['count'=>$lists['total'], 'lists'=>$lists['data']];
  59. } catch (Exception $e) {
  60. return ['error'=>$e->getMessage()];
  61. }
  62. }
  63. /**
  64. * NOTE: 统计
  65. * @author: 张无忌
  66. * @return array
  67. */
  68. public static function totalCount()
  69. {
  70. $type = [
  71. ['audit_status', '=', ShopEnum::AUDIT_STATUS_STAY],
  72. ['audit_status', '=', ShopEnum::AUDIT_STATUS_OK],
  73. ['audit_status', '=', ShopEnum::AUDIT_STATUS_REFUSE]
  74. ];
  75. $model = new ShopApply();
  76. $ok = $model->where(['del'=>0])->where([$type[ShopEnum::AUDIT_STATUS_OK - 1]])->count();
  77. $stay = $model->where(['del'=>0])->where([$type[ShopEnum::AUDIT_STATUS_STAY - 1]])->count();
  78. $refuse = $model->where(['del'=>0])->where([$type[ShopEnum::AUDIT_STATUS_REFUSE - 1]])->count();
  79. return [
  80. 'ok' => $ok,
  81. 'stay' => $stay,
  82. 'refuse' => $refuse
  83. ];
  84. }
  85. /**
  86. * NOTE: 详细
  87. * @param $id
  88. * @return array
  89. * @author: 张无忌
  90. */
  91. public static function detail($id)
  92. {
  93. $model = new ShopApply();
  94. $detail = $model->field(true)
  95. ->where(['id'=>(int)$id])
  96. ->with(['category'])
  97. ->findOrEmpty()->toArray();
  98. $detail['category'] = $detail['category']['name'] ?? '未知类目';
  99. $detail['audit_status'] = ShopEnum::getAuditStatusDesc($detail['audit_status']);
  100. $detail['audit_explain'] = $detail['audit_explain'] == '' ? '无' : $detail['audit_explain'];
  101. return $detail;
  102. }
  103. /**
  104. * NOTE: 审核
  105. * @param $post
  106. * @return bool
  107. * @author: 张无忌
  108. */
  109. public static function audit($post)
  110. {
  111. Db::startTrans();
  112. try {
  113. ShopApply::update([
  114. 'audit_status' => $post['audit_status'],
  115. 'audit_explain' => $post['audit_explain'] ?? ''
  116. ], ['id'=>(int)$post['id']]);
  117. $model = new ShopApply();
  118. $shopApply = $model->field(true)->findOrEmpty((int)$post['id'])->toArray();
  119. if ($post['audit_status'] == ShopEnum::AUDIT_STATUS_OK) {
  120. // 新增商家信息
  121. $shop = Shop::create([
  122. 'cid' => $shopApply['cid'],
  123. 'type' => ShopEnum::SHOP_TYPE_IN,
  124. 'name' => $shopApply['name'],
  125. 'nickname' => $shopApply['nickname'],
  126. 'mobile' => $shopApply['mobile'],
  127. 'license' => $shopApply['license'],
  128. 'logo' => '',
  129. 'background' => '',
  130. 'keywords' => '',
  131. 'intro' => '',
  132. 'weight' => 0,
  133. 'trade_service_fee' => 0,
  134. 'is_run' => ShopEnum::SHOP_RUN_CLOSE,
  135. 'is_freeze' => ShopEnum::SHOP_FREEZE_NORMAL,
  136. 'is_product_audit' => ShopEnum::PRODUCT_AUDIT_TRUE,
  137. 'is_recommend' => ShopEnum::SHOP_RECOMMEND_FALSE,
  138. 'del' => 0,
  139. 'expire_time' => 0,
  140. ]);
  141. // 新增商家登录账号
  142. $time = time();
  143. $salt = substr(md5($time . $shopApply['name']), 0, 4);//随机4位密码盐
  144. ShopAdmin::create([
  145. 'shop_id' => $shop->id,
  146. 'name' => '超级管理员',
  147. 'account' => $shopApply['account'],
  148. 'password' => generatePassword($shopApply['password'], $salt),
  149. 'salt' => $salt,
  150. 'role_id' => 0,
  151. 'create_time' => $time,
  152. 'update_time' => $time,
  153. 'disable' => 0,
  154. 'del' => 0
  155. ]);
  156. //成功通知
  157. event('Notice', [
  158. 'scene' => NoticeEnum::SHOP_APPLY_SUCCESS_NOTICE,
  159. 'mobile' => $shopApply['mobile'],
  160. 'params' => [
  161. 'user_id' => $shopApply['user_id'],
  162. 'shop_name' => $shopApply['name'],
  163. // 'shop_admin_url' => request()->domain().'/shop',
  164. 'shop_admin_account' => $shopApply['account'],
  165. ]
  166. ]);
  167. } else {
  168. //失败通知
  169. event('Notice', [
  170. 'scene' => NoticeEnum::SHOP_APPLY_ERROR_NOTICE,
  171. 'mobile' => $shopApply['mobile'],
  172. 'params' => [
  173. 'user_id' => $shopApply['user_id'],
  174. 'shop_name' => $shopApply['name'],
  175. ]
  176. ]);
  177. }
  178. Db::commit();
  179. return true;
  180. } catch (Exception $e) {
  181. Db::rollback();
  182. static::$error = $e->getMessage();
  183. return false;
  184. }
  185. }
  186. /**
  187. * NOTE: 删除
  188. * @author: 张无忌
  189. * @param $id
  190. * @return bool
  191. */
  192. public static function del($id)
  193. {
  194. try {
  195. ShopApply::update([
  196. 'del' => 1,
  197. 'update_time' => time()
  198. ], ['id'=>(int)$id]);
  199. return true;
  200. } catch (Exception $e) {
  201. static::$error = $e->getMessage();
  202. return false;
  203. }
  204. }
  205. }