UserBill.php 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357
  1. <?php
  2. /**
  3. * Created by CRMEB.
  4. * Copyright (c) 2017~2019 http://www.crmeb.com All rights reserved.
  5. * Author: liaofei <136327134@qq.com>
  6. * Date: 2019/3/27 21:44
  7. */
  8. namespace app\models\user;
  9. use app\models\store\StoreOrder;
  10. use app\models\store\StoreOrderRelease;
  11. use think\facade\Cache;
  12. use crmeb\traits\ModelTrait;
  13. use crmeb\basic\BaseModel;
  14. /**
  15. * TODO 用户消费新增金额明细 model
  16. * Class UserBill
  17. * @package app\models\user
  18. */
  19. class UserBill extends BaseModel
  20. {
  21. /**
  22. * 数据表主键
  23. * @var string
  24. */
  25. protected $pk = 'id';
  26. /**
  27. * 模型名称
  28. * @var string
  29. */
  30. protected $name = 'user_bill';
  31. use ModelTrait;
  32. public static function income($title, $uid, $category, $type, $number, $link_id = 0, $balance = 0, $mark = '', $status = 1)
  33. {
  34. $pm = 1;
  35. $add_time = time();
  36. return self::create(compact('title', 'uid', 'link_id', 'category', 'type', 'number', 'balance', 'mark', 'status', 'pm', 'add_time'));
  37. }
  38. public static function expend($title, $uid, $category, $type, $number, $link_id = 0, $balance = 0, $mark = '', $status = 1)
  39. {
  40. $pm = 0;
  41. $add_time = time();
  42. return self::create(compact('title', 'uid', 'link_id', 'category', 'type', 'number', 'balance', 'mark', 'status', 'pm', 'add_time'));
  43. }
  44. /**
  45. * 积分/佣金 使用记录
  46. * @param $uid
  47. * @param $page
  48. * @param $limit
  49. * @param string $category
  50. * @return array|\think\Collection
  51. * @throws \think\db\exception\DataNotFoundException
  52. * @throws \think\db\exception\ModelNotFoundException
  53. * @throws \think\exception\DbException
  54. */
  55. public static function userBillList($uid, $page, $limit, $category = 'integral', $where = [])
  56. {
  57. if ($page) {
  58. $list = self::where('uid', $uid)
  59. ->where('category', $category)
  60. ->field('mark,pm,number,add_time')
  61. ->where('status', 1)
  62. ->where($where)
  63. ->order('add_time DESC')
  64. ->page((int)$page, (int)$limit)
  65. ->select();
  66. } else {
  67. $list = self::where('uid', $uid)
  68. ->where('category', $category)
  69. ->field('mark,pm,number,add_time')
  70. ->where('status', 1)
  71. ->where($where)
  72. ->order('add_time DESC')
  73. ->select();
  74. }
  75. $data['list'] = count($list) ? $list->toArray() : [];
  76. if ($category == 'integral'){
  77. $data['jrsf'] = UserRelease::where('uid', $uid)->whereBetweenTime('create_time', strtotime('today'), strtotime('tomorrow'))->sum('release');
  78. $data['dsf'] = round(StoreOrderRelease::where('uid', $uid)->sum('to_release') - StoreOrderRelease::where('uid', $uid)->sum('already'), 2);
  79. }
  80. $data['zc'] = self::where('uid', $uid)->where('category', $category)->where('pm', 0)->sum('number');
  81. $data['sr'] = self::where('uid', $uid)->where('category', $category)->where('pm', 1)->sum('number');
  82. foreach ($data['list'] as &$v) {
  83. $v['add_time'] = date('Y/m/d H:i', $v['add_time']);
  84. $v['number'] = floatval($v['number']);
  85. }
  86. return $data;
  87. }
  88. /**
  89. * 获取昨日佣金
  90. * @param $uid
  91. * @return float
  92. */
  93. public static function yesterdayCommissionSum($uid)
  94. {
  95. return self::where('uid', $uid)->where('category', 'now_money')->where('type', 'brokerage')->where('pm', 1)
  96. ->where('status', 1)->whereTime('add_time', 'yesterday')->sum('number');
  97. }
  98. /**
  99. * 获取总佣金
  100. * @param $uid
  101. * @return float
  102. */
  103. public static function getBrokerage($uid)
  104. {
  105. $count1 = self::where('uid', $uid)->where('category', 'now_money')->where('type', 'brokerage')->where('pm', 1)
  106. ->where('status', 1)->sum('number');
  107. $count2 = self::where('uid', $uid)->where('category', 'now_money')->where('type', 'brokerage')->where('pm', 0)
  108. ->where('status', 1)->sum('number');
  109. $count = $count1 - $count2;
  110. return $count;
  111. }
  112. /**
  113. * 获取后台添加的余额
  114. * @param $uid
  115. * @return float
  116. */
  117. public static function getSystemAdd($uid)
  118. {
  119. return self::where('uid', $uid)->where('category', 'now_money')->where('type', 'system_add')->where('pm', 1)
  120. ->where('status', 1)->sum('number');
  121. }
  122. /**
  123. * 累计充值
  124. * @param $uid
  125. * @return float
  126. */
  127. public static function getRecharge($uid)
  128. {
  129. return self::where('uid', $uid)
  130. ->where('category', 'now_money')
  131. ->where('type', 'recharge')
  132. ->where('pm', 1)
  133. ->where('status', 1)
  134. ->sum('number');
  135. }
  136. /*
  137. * 获取用户账单明细
  138. * @param int $uid 用户uid
  139. * @param int $page 页码
  140. * @param int $limit 展示多少条
  141. * @param int $type 展示类型
  142. * @return array
  143. * */
  144. public static function getUserBillList($uid, $page, $limit, $type)
  145. {
  146. if (!$limit) return [];
  147. $model = self::where('uid', $uid)->where('category', 'now_money')->order('add_time desc')->where('number', '<>', 0)
  148. ->field('FROM_UNIXTIME(add_time,"%Y-%m") as time,group_concat(id SEPARATOR ",") ids')->group('time');
  149. switch ((int)$type) {
  150. case 1:
  151. $model = $model->where('type', '<>', 'brokerage')->where('pm', 0);
  152. break;
  153. case 2:
  154. $model = $model->where('type', '<>', 'brokerage')->where('pm', 1);
  155. break;
  156. case 3:
  157. $model = $model->where('type', 'brokerage')->where('pm', 1);
  158. break;
  159. case 4:
  160. $model = $model->where('type', 'brokerage')->where('pm', 0);
  161. break;
  162. }
  163. if ($page) $model = $model->page((int)$page, (int)$limit);
  164. $list = ($list = $model->select()) ? $list->toArray() : [];
  165. $data = [];
  166. foreach ($list as $item) {
  167. $value['time'] = $item['time'];
  168. $value['list'] = self::where('id', 'in', $item['ids'])->field('FROM_UNIXTIME(add_time,"%Y-%m-%d %H:%i") as add_time,number,pm,mark as title')->order('add_time DESC')->select();
  169. array_push($data, $value);
  170. }
  171. return $data;
  172. }
  173. /**
  174. * TODO 获取用户记录 按月查找
  175. * @param $uid $uid 用户编号
  176. * @param int $page $page 分页起始值
  177. * @param int $limit $limit 查询条数
  178. * @param string $category $category 记录类型
  179. * @param string $type $type 记录分类
  180. * @return mixed
  181. */
  182. public static function getRecordList($uid, $page = 1, $limit = 8, $category = 'now_money', $type = '')
  183. {
  184. $model = new self;
  185. $model = $model->alias('b');
  186. $model = $model->field("FROM_UNIXTIME(b.add_time, '%Y-%m') as time");
  187. $model = $model->where('b.uid', $uid);
  188. $model = $model->join('StoreOrder o', 'o.id=b.link_id');
  189. $model = $model->where('o.refund_status', 0);
  190. if (strlen(trim($type))) $model = $model->whereIn('b.type', $type);
  191. $model = $model->where('b.category', $category);
  192. $model = $model->group("FROM_UNIXTIME(b.add_time, '%Y-%m')");
  193. $model = $model->order('time desc');
  194. $model = $model->page($page, $limit);
  195. return $model->select();
  196. }
  197. /**
  198. * TODO 按月份查找用户记录
  199. * @param $uid $uid 用户编号
  200. * @param int $addTime $addTime 月份
  201. * @param string $category $category 记录类型
  202. * @param string $type $type 记录分类
  203. * @return mixed
  204. */
  205. public static function getRecordListDraw($uid, $addTime = 0, $category = 'now_money', $type = '')
  206. {
  207. if (!$uid) [];
  208. $model = new self;
  209. $model = $model->field("title,FROM_UNIXTIME(add_time, '%Y-%m-%d %H:%i') as time,number,pm");
  210. $model = $model->where('uid', $uid);
  211. $model = $model->where("FROM_UNIXTIME(add_time, '%Y-%m')= '{$addTime}'");
  212. $model = $model->where('category', $category);
  213. if (strlen(trim($type))) $model = $model->where('type', 'in', $type);
  214. $model = $model->order('add_time desc');
  215. $list = $model->select();
  216. if ($list) return $list->toArray();
  217. else [];
  218. }
  219. /**
  220. * TODO 获取订单返佣记录
  221. * @param $uid
  222. * @param int $addTime
  223. * @param string $category
  224. * @param string $type
  225. * @return mixed
  226. */
  227. public static function getRecordOrderListDraw($uid, $addTime = 0, $category = 'now_money', $type = 'brokerage')
  228. {
  229. if (!strlen(trim($uid))) return [];
  230. $uids = User::where('spread_uid', $uid)->column('uid');
  231. // $uidss = User::whereIn('spread_uid',$uids)->column('uid');
  232. // $uidsss = array_merge($uids,$uidss);
  233. // $order = StoreOrder::alias('o')->join('User u', 'u.uid=o.uid', 'right')->whereIn('o.uid',$uidsss)->where(['o.paid'=>1,'o.refund_status'=>0,'o.is_del'=>0])->feild("o.id,o.order_id,FROM_UNIXTIME(o.add_time, '%Y-%m-%d %H:%i') as time,u.avatar,u.nickname")->select()->toArray();
  234. // $orderId = array_column($order, 'id');
  235. // $orderAgent = self::whereIn('link_id',$orderId)->where(['type'=>'brokerage','category'=>'now_money','pm'=>1])->feild('link_id,number')->select()->toArray();
  236. // foreach ($order as &$v1) {
  237. // $number = array_filter($orderAgent,function($item) use ($v1){
  238. // if($item['link_id']==$v1['id']){
  239. // return $item['number'];
  240. // }
  241. // });
  242. // if($number){
  243. // $v1['number'] = $number;
  244. // }else{
  245. // $v1['number'] = 0;
  246. // }
  247. // }
  248. // return $order;
  249. $model = new self;
  250. $model = $model->alias('b');
  251. $model = $model->join('StoreOrder o', 'o.id=b.link_id');
  252. $model = $model->join('User u', 'u.uid=o.uid', 'right');
  253. $model = $model->where('o.refund_status', 0);
  254. $model = $model->where(function ($query) use ($uid, $type, $uids) {
  255. $query->where(function ($query1) use ($uid, $type) {
  256. $query1->where('b.uid', $uid)->where('b.type', $type);
  257. })->whereOr(function ($query2) use ($uids, $type) {
  258. $query2->where('b.uid', 'in', $uids)->where('b.type', 'pay_money');
  259. });
  260. });
  261. $model = $model->where("FROM_UNIXTIME(b.add_time, '%Y-%m')= '{$addTime}'");
  262. $model = $model->where('b.category', $category);
  263. $model = $model->where('b.take', 0);
  264. $model = $model->order('b.add_time desc');
  265. $model = $model->field("o.order_id,FROM_UNIXTIME(b.add_time, '%Y-%m-%d %H:%i') as time,b.number,u.avatar,u.nickname,b.type");
  266. $list = $model->select();
  267. if ($list) return $list->toArray();
  268. else return [];
  269. }
  270. /**
  271. * TODO 获取用户记录总和
  272. * @param $uid
  273. * @param string $category
  274. * @param string $type
  275. * @return mixed
  276. */
  277. public static function getRecordCount($uid, $category = 'now_money', $type = '', $time = '', $pm = false)
  278. {
  279. $model = new self;
  280. $model = $model->where('uid', $uid);
  281. $model = $model->where('category', $category);
  282. $model = $model->where('status', 1);
  283. if (strlen(trim($type))) $model = $model->where('type', 'in', $type);
  284. if ($time) $model = $model->whereTime('add_time', $time);
  285. if ($pm) {
  286. $model = $model->where('pm', 0);
  287. }
  288. return $model->sum('number');
  289. }
  290. /**
  291. * TODO 获取订单返佣记录总数
  292. * @param $uid
  293. * @param string $category
  294. * @param string $type
  295. * @return mixed
  296. */
  297. public static function getRecordOrderCount($uid, $category = 'now_money', $type = 'brokerage')
  298. {
  299. $uids = User::where('spread_uid', $uid)->column('uid');
  300. $model = new self;
  301. $model = $model->alias('b');
  302. $model = $model->join('StoreOrder o', 'o.id=b.link_id');
  303. $model = $model->where('o.refund_status', 0);
  304. $model = $model->where(function ($query) use ($uid, $type, $uids) {
  305. $query->where(function ($query1) use ($uid, $type) {
  306. $query1->where('b.uid', $uid)->where('b.type', $type);
  307. })->whereOr(function ($query2) use ($uids, $type) {
  308. $query2->where('b.uid', 'in', $uids)->where('b.type', 'pay_product');
  309. });
  310. });
  311. $model = $model->where('b.category', $category);
  312. $model = $model->where('b.take', 0);
  313. return $model->count();
  314. }
  315. /*
  316. * 记录分享次数
  317. * @param int $uid 用户uid
  318. * @param int $cd 冷却时间
  319. * @return Boolean
  320. * */
  321. public static function setUserShare($uid, $cd = 300)
  322. {
  323. $user = User::where('uid', $uid)->find();
  324. if (!$user) return self::setErrorInfo('用户不存在!');
  325. $cachename = 'Share_' . $uid;
  326. if (Cache::has($cachename)) return false;
  327. self::income('用户分享记录', $uid, 'share', 'share', 1, 0, 0, date('Y-m-d H:i:s', time()) . ':用户分享');
  328. Cache::set($cachename, 1, $cd);
  329. event('UserLevelAfter', [$user]);
  330. return true;
  331. }
  332. }