截流自动化的商城平台
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.

IntegralLogic.php 4.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  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\finance;
  20. use app\common\basics\Logic;
  21. use app\common\model\AccountLog;
  22. use app\common\server\ExportExcelServer;
  23. class IntegralLogic extends Logic
  24. {
  25. /**
  26. * @notes 积分明细
  27. * @param $get
  28. * @return array
  29. * @author ljj
  30. * @date 2022/2/22 5:59 下午
  31. */
  32. public static function integral($get, $is_export = false)
  33. {
  34. $where[] = ['source_type','in',AccountLog::integral_change];
  35. //用户信息
  36. if (isset($get['user_info']) && $get['user_info'] != '') {
  37. $where[] = ['u.sn|u.nickname', '=', $get['user_info']];
  38. }
  39. //开始时间
  40. if (isset($get['start_time']) && $get['start_time'] != '') {
  41. $where[] = ['al.create_time', '>=', strtotime($get['start_time'])];
  42. }
  43. //结束时间
  44. if (isset($get['end_time']) && $get['end_time'] != '') {
  45. $where[] = ['al.create_time', '<=', strtotime($get['end_time'])];
  46. }
  47. // 导出
  48. if (true === $is_export) {
  49. return self::export($where);
  50. }
  51. $lists = AccountLog::alias('al')
  52. ->join('user u', 'al.user_id = u.id')
  53. ->field('al.id,al.user_id,al.source_type,al.change_amount,al.left_amount,al.remark,al.change_type,al.create_time,u.sn as user_sn,u.nickname')
  54. ->where($where)
  55. ->page($get['page'], $get['limit'])
  56. ->order('id','desc')
  57. ->select()
  58. ->toArray();
  59. foreach ($lists as &$list) {
  60. $list['change_amount'] = $list['change_type'] == 1 ? '+'.$list['change_amount'] : '-'.$list['change_amount'];
  61. }
  62. $count = AccountLog::alias('al')
  63. ->join('user u', 'al.user_id = u.id')
  64. ->where($where)
  65. ->count();
  66. return ['count' => $count, 'lists' => $lists];
  67. }
  68. /**
  69. * @notes 导出商家账户明细Excel
  70. * @param array $where
  71. * @return array|false
  72. * @author 段誉
  73. * @date 2022/4/24 10:10
  74. */
  75. public static function export($where)
  76. {
  77. try {
  78. $lists = AccountLog::alias('al')
  79. ->join('user u', 'al.user_id = u.id')
  80. ->field('al.id,al.user_id,al.source_type,al.change_amount,al.left_amount,al.remark,al.change_type,al.create_time,u.sn as user_sn,u.nickname')
  81. ->where($where)
  82. ->order('id','desc')
  83. ->select()
  84. ->toArray();
  85. foreach ($lists as &$list) {
  86. $list['change_amount'] = $list['change_type'] == 1 ? '+'.$list['change_amount'] : '-'.$list['change_amount'];
  87. }
  88. $excelFields = [
  89. 'user_sn' => '用户编号',
  90. 'nickname' => '会员信息',
  91. 'source_type' => '变动类型',
  92. 'change_amount' => '积分变动',
  93. 'left_amount' => '剩余积分',
  94. 'remark' => '备注',
  95. 'create_time' => '变动时间',
  96. ];
  97. $export = new ExportExcelServer();
  98. $export->setFileName('积分明细');
  99. $result = $export->createExcel($excelFields, $lists);
  100. return ['url' => $result];
  101. } catch (\Exception $e) {
  102. self::$error = $e->getMessage();
  103. return false;
  104. }
  105. }
  106. }