截流自动化的商城平台
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

BargainLogic.php 14KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop开源商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | gitee下载:https://gitee.com/likeshop_gitee
  7. // | github下载:https://github.com/likeshop-github
  8. // | 访问官网:https://www.likeshop.cn
  9. // | 访问社区:https://home.likeshop.cn
  10. // | 访问手册:http://doc.likeshop.cn
  11. // | 微信公众号:likeshop技术社区
  12. // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
  13. // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
  14. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  15. // | likeshop团队版权所有并拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshop.cn.team
  18. // +----------------------------------------------------------------------
  19. namespace app\admin\logic\bargain;
  20. use app\admin\controller\finance\Shop;
  21. use app\common\basics\Logic;
  22. use app\common\model\shop\Shop as ShopModel;
  23. use app\common\model\bargain\Bargain;
  24. use app\common\model\bargain\BargainItem;
  25. use app\common\model\bargain\BargainKnife;
  26. use app\common\model\bargain\BargainLaunch;
  27. use app\common\model\goods\Goods as GoodsModel;
  28. use app\common\model\order\Order;
  29. use app\common\model\team_activity\TeamActivity as TeamActivityModel;
  30. use app\common\model\user\User;
  31. use app\common\server\UrlServer;
  32. use think\facade\Db;
  33. use think\Exception;
  34. /**
  35. * Class BargainLogic
  36. * @package app\admin\logic\bargain
  37. */
  38. class BargainLogic extends Logic
  39. {
  40. protected static $error; //错误信息
  41. /**
  42. * @notes 砍价活动列表
  43. * @param $get
  44. * @return array
  45. * @throws \think\db\exception\DataNotFoundException
  46. * @throws \think\db\exception\DbException
  47. * @throws \think\db\exception\ModelNotFoundException
  48. * @author suny
  49. * @date 2021/7/14 9:57 上午
  50. */
  51. public static function activity($get)
  52. {
  53. $where = [
  54. ['del', '=', 0],
  55. ];
  56. // 查询条件
  57. if (!empty($get['shop_name']) and $get['shop_name'] !== '') {
  58. $shopModel = new ShopModel();
  59. $ids = $shopModel->field('id,name')->where([
  60. ['name', 'like', '%' . $get['shop_name'] . '%']
  61. ])->column('id');
  62. $where[] = ['shop_id', 'in', $ids];
  63. }
  64. if (!empty($get['goods_name']) and $get['goods_name'] !== '') {
  65. $goodsModel = new GoodsModel();
  66. $ids = $goodsModel->field('id,name')->where([
  67. ['name', 'like', '%' . $get['goods_name'] . '%']
  68. ])->column('id');
  69. $where[] = ['goods_id', 'in', $ids];
  70. }
  71. if (isset($get['status']) and is_numeric($get['status'])) {
  72. $where[] = ['status', '=', (int)$get['status']];
  73. }
  74. //审核状态
  75. if (isset($get['type']) && $get['type'] != "") {
  76. $where[] = ['audit_status', '=', $get['type']];
  77. }
  78. $bargainModel = new Bargain();
  79. $count = $bargainModel->where($where)->count('id');
  80. $lists = $bargainModel->field(true)
  81. ->where($where)
  82. ->with(['goods', 'shop'])
  83. ->withCount(['launchPeopleNumber', 'successKnifePeopleNumber'])
  84. ->page($get['page'], $get['limit'])
  85. ->select();
  86. foreach ($lists as &$item) {
  87. $item['goods']['image'] = UrlServer::getFileUrl($item['goods']['image']);
  88. $item['activity_start_time'] = date('Y-m-d H:i:s', $item['activity_start_time']);
  89. $item['activity_end_time'] = date('Y-m-d H:i:s', $item['activity_end_time']);
  90. }
  91. return ['count' => $count, 'lists' => $lists];
  92. }
  93. /**
  94. * @notes 砍价活动审核
  95. * @param $post
  96. * @return Bargain
  97. * @author suny
  98. * @date 2021/7/14 9:57 上午
  99. */
  100. public static function audit($post)
  101. {
  102. $data = [
  103. 'audit_status' => $post['review_status'],
  104. 'audit_remark' => $post['description'],
  105. ];
  106. return Bargain::where(['id' => $post['id']])
  107. ->update($data);
  108. }
  109. /**
  110. * @notes 违规重审
  111. * @param $post
  112. * @return bool
  113. * @author suny
  114. * @date 2021/7/14 9:58 上午
  115. */
  116. public static function violation($post)
  117. {
  118. try {
  119. $data = [
  120. 'audit_status' => 2,
  121. 'audit_remark' => $post['description'],
  122. ];
  123. Bargain::where(['id' => $post['id']])
  124. ->update($data);
  125. BargainLaunch::where(['bargain_id' => $post['id']])
  126. ->update(['status' => 2]);//砍失败
  127. return true;
  128. } catch (Exception $e) {
  129. self::$error = $e->getMessage();
  130. return false;
  131. }
  132. }
  133. /**
  134. * @notes 切换状态
  135. * @param $post
  136. * @return bool
  137. * @throws \think\exception\PDOException
  138. * @author suny
  139. * @date 2021/7/14 9:58 上午
  140. */
  141. public static function switchStatus($post)
  142. {
  143. Db::startTrans();
  144. try {
  145. $bargainModel = new Bargain();
  146. // 切换状态
  147. $bargainModel->where(['id' => (int)$post['id']])
  148. ->update([$post['field'] => $post['status']]);
  149. Db::commit();
  150. return true;
  151. } catch (\Exception $e) {
  152. static::$error = $e->getMessage();
  153. Db::rollback();
  154. return false;
  155. }
  156. }
  157. /**
  158. * @notes 砍价列表
  159. * @param $get
  160. * @return array
  161. * @throws \think\db\exception\DataNotFoundException
  162. * @throws \think\db\exception\DbException
  163. * @throws \think\db\exception\ModelNotFoundException
  164. * @throws \think\exception\DbException
  165. * @author suny
  166. * @date 2021/7/14 9:58 上午
  167. */
  168. public static function getLaunch($get)
  169. {
  170. // 查询条件
  171. $where = [];
  172. //砍价订单编号bargain_sn
  173. if (isset($get['bargain_sn']) and $get['bargain_sn']) {
  174. $where[] = ['bargain_sn', '=', (int)$get['bargain_sn']];
  175. }
  176. if (isset($get['goods_name']) and $get['goods_name'] !== '') {
  177. $goodsModel = new GoodsModel();
  178. $ids = $goodsModel->field('id,name')->where([
  179. ['name', 'like', '%' . $get['goods_name'] . '%']
  180. ])->column('id');
  181. $where[] = ['goods_id', 'in', $ids];
  182. }
  183. if (isset($get['status']) and is_numeric($get['status'])) {
  184. $where[] = ['status', '=', (int)$get['status']];
  185. }
  186. if (isset($get['launch_start_time']) and $get['launch_start_time'] !== '') {
  187. $where[] = ['launch_start_time', '>=', strtotime($get['launch_start_time'])];
  188. }
  189. if (isset($get['launch_end_time']) and $get['launch_end_time'] !== '') {
  190. $where[] = ['launch_end_time', '<=', strtotime($get['launch_end_time'])];
  191. }
  192. if (isset($get['keyword_type']) and $get['keyword_type'] !== '') {
  193. if (isset($get['keyword']) and $get['keyword'] !== '') {
  194. switch ($get['keyword_type']) {
  195. case 'sn':
  196. $uid = User::where('sn', '=', $get['keyword'])->column('id');
  197. $where[] = ['user_id', 'in', $uid];
  198. break;
  199. case 'nickname':
  200. $uid = User::where('nickname', 'like', '%' . $get['keyword'] . '%')->column('id');
  201. $where[] = ['user_id', 'in', $uid];
  202. break;
  203. }
  204. }
  205. }
  206. $model = new BargainLaunch();
  207. $count = $model->where($where)->count('id');
  208. $lists = $model->field(true)
  209. ->where($where)
  210. ->with(['user.level'])
  211. ->order('id', 'desc')
  212. ->page($get['page'], $get['limit'])
  213. ->select()->toArray();
  214. foreach ($lists as &$item) {
  215. // 解决用户被删除及Indirect modification of overloaded element报错
  216. if (empty($item['user'])) {
  217. $user = [
  218. 'avatar' => '',
  219. 'sn' => '-',
  220. 'nickname' => '-',
  221. 'level' => [
  222. 'name' => '-'
  223. ]
  224. ];
  225. } else {
  226. $user = $item['user'];
  227. }
  228. $user['avatar'] = UrlServer::getFileUrl($user['avatar']);
  229. $item['user'] = $user;
  230. $item['launch_start_time'] = date('Y-m-d H:i:s', $item['launch_start_time']);
  231. $item['launch_end_time'] = date('Y-m-d H:i:s', $item['launch_end_time']);
  232. $item['status'] = BargainLaunch::getStatusDesc($item['status']);
  233. $item['goods_image'] = $item['goods_snap']['image'] == "" ? $item['goods_snap']['goods_iamge'] : $item['goods_snap']['image'];
  234. }
  235. return ['count' => $count, 'lists' => $lists];
  236. }
  237. /**
  238. * @notes 砍价订单详情
  239. * @param $id
  240. * @return array
  241. * @throws \think\db\exception\DataNotFoundException
  242. * @throws \think\db\exception\DbException
  243. * @throws \think\db\exception\ModelNotFoundException
  244. * @author suny
  245. * @date 2021/7/14 9:58 上午
  246. */
  247. public static function getLaunchDetail($id)
  248. {
  249. $model = new BargainLaunch();
  250. $detail = $model->field(true)
  251. ->where(['id' => (int)$id])
  252. ->with(['user.level'])
  253. ->find()->toArray();
  254. $detail['domain'] = UrlServer::getFileUrl();
  255. $detail['launch_start_time'] = date('Y-m-d H:i:s', $detail['launch_start_time']);
  256. $detail['launch_end_time'] = date('Y-m-d H:i:s', $detail['launch_end_time']);
  257. $detail['payment_where'] = $detail['bargain_snap']['payment_where'] == 1 ? '任意金额购买' : '固定金额购买';
  258. $detail['status'] = BargainLaunch::getStatusDesc($detail['status']);
  259. return $detail;
  260. }
  261. /**
  262. * @notes 砍价订单
  263. * @param $launch_id
  264. * @param $get
  265. * @return array
  266. * @throws \think\db\exception\DataNotFoundException
  267. * @throws \think\db\exception\DbException
  268. * @throws \think\db\exception\ModelNotFoundException
  269. * @author suny
  270. * @date 2021/7/14 9:59 上午
  271. */
  272. public static function getKnifeOrderRecord($launch_id, $get)
  273. {
  274. $model = new BargainLaunch();
  275. $count = $model->where(['id' => (int)$launch_id])
  276. ->where('order_id', '>', 0)->count('id');
  277. $lists = $model->field(true)
  278. ->where(['id' => (int)$launch_id])
  279. ->where('order_id', '>', 0)
  280. ->with(['user.level', 'order'])
  281. ->page($get['page'], $get['limit'])
  282. ->select();
  283. foreach ($lists as &$item) {
  284. $item['user']['avatar'] = UrlServer::getFileUrl($item['user']['avatar']);
  285. $item['order_status'] = Order::getOrderStatus($item['order']['order_status']);
  286. }
  287. return ['count' => $count, 'lists' => $lists];
  288. }
  289. /**
  290. * @notes 砍价记录
  291. * @param $launch_id
  292. * @param $get
  293. * @return array
  294. * @throws \think\db\exception\DataNotFoundException
  295. * @throws \think\db\exception\DbException
  296. * @throws \think\db\exception\ModelNotFoundException
  297. * @author suny
  298. * @date 2021/7/14 9:59 上午
  299. */
  300. public static function getKnifeRecord($launch_id, $get)
  301. {
  302. $model = new BargainKnife();
  303. $count = $model->where(['launch_id' => (int)$launch_id])->count();
  304. $lists = $model->field(true)
  305. ->where(['launch_id' => (int)$launch_id])
  306. ->with(['user.level'])
  307. ->page($get['page'], $get['limit'])
  308. ->select();
  309. foreach ($lists as &$item) {
  310. $item['user']['avatar'] = UrlServer::getFileUrl($item['user']['avatar']);
  311. $item['help_time'] = date('Y-m-d H:i:s', $item['help_time']);
  312. $item['help_price'] = '¥' . $item['help_price'];
  313. $item['surplus_price'] = '¥' . $item['surplus_price'];
  314. }
  315. return ['count' => $count, 'lists' => $lists];
  316. }
  317. /**
  318. * @notes 砍价详情
  319. * @param $get
  320. * @return array
  321. * @throws \think\db\exception\DataNotFoundException
  322. * @throws \think\db\exception\DbException
  323. * @throws \think\db\exception\ModelNotFoundException
  324. * @author suny
  325. * @date 2021/7/14 9:59 上午
  326. */
  327. public static function detail($get)
  328. {
  329. $where = [];
  330. $where['b.id'] = $get['id'];
  331. $info = Bargain::alias('b')
  332. ->join('goods g', 'b.goods_id = g.id')
  333. ->join('shop s', 's.id = b.shop_id')
  334. ->where($where)
  335. ->field('b.id,b.goods_id,b.audit_status,b.audit_remark,b.time_limit,b.payment_where,b.share_title,b.share_intro,g.image,g.name,g.min_price,g.max_price,s.id as sid,s.name as shop_name,s.type')
  336. ->find()->toArray();
  337. switch ($info['type']) {
  338. case 1 :
  339. $info['type'] = '官方自营';
  340. break;
  341. case 2 :
  342. $info['type'] = '入驻商家';
  343. break;
  344. }
  345. switch ($info['audit_status']) {
  346. case 0 :
  347. $info['audit_status'] = '待审核';
  348. break;
  349. case 1 :
  350. $info['audit_status'] = '审核通过';
  351. break;
  352. case 2 :
  353. $info['audit_status'] = '审核拒绝';
  354. break;
  355. }
  356. $info['image'] = UrlServer::getFileUrl($info['image']);
  357. return $info;
  358. }
  359. /**
  360. * @notes 获取各列表数量
  361. * @return array
  362. * @author suny
  363. * @date 2021/7/14 9:59 上午
  364. */
  365. public static function getNum()
  366. {
  367. $all = Bargain::where('del', 0)->count('id');
  368. $unaudit = Bargain::where(['audit_status' => 0, 'del' => 0])->count('id');
  369. $audit_pass = Bargain::where(['audit_status' => 1, 'del' => 0])->count('id');
  370. $audit_refund = Bargain::where(['audit_status' => 2, 'del' => 0])->count('id');
  371. $num = [
  372. 'all' => $all,
  373. 'unaudit' => $unaudit,
  374. 'audit_pass' => $audit_pass,
  375. 'audit_refund' => $audit_refund
  376. ];
  377. return $num;
  378. }
  379. }