Нема описа
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.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. <?php
  2. /**
  3. * 易优CMS
  4. * ============================================================================
  5. * 版权所有 2016-2028 海口快推科技有限公司,并保留所有权利。
  6. * 网站地址: http://www.eyoucms.com
  7. * ----------------------------------------------------------------------------
  8. * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
  9. * ============================================================================
  10. * Author: 陈风任 <491085389@qq.com>
  11. * Date: 2020-05-07
  12. */
  13. namespace app\api\model\v1;
  14. use think\Db;
  15. use think\Cache;
  16. use think\Config;
  17. /**
  18. * 微信小程序商城订单模型
  19. */
  20. load_trait('controller/Jump');
  21. class Order extends UserBase
  22. {
  23. use \traits\controller\Jump;
  24. private $miniproInfo = [];
  25. //初始化
  26. protected function initialize()
  27. {
  28. // 需要调用`Model`的`initialize`方法
  29. parent::initialize();
  30. $dataConf = tpSetting("OpenMinicode.conf_" . self::$provider, [], self::$lang);
  31. $this->miniproInfo = json_decode($dataConf, true);
  32. }
  33. //视频订单列表
  34. public function mediaOrderList()
  35. {
  36. $param = input('param.');
  37. $page = !empty($param['page']) ? intval($param['page']) : 1;
  38. $pagesize = empty($param['pagesize']) ? config('paginate.list_rows') : 10;
  39. $condition['a.users_id'] = $this->users_id;
  40. $condition['a.order_status'] = 1;//默认查询已购买
  41. $paginate = ['page' => $page];
  42. $pages = Db::name('media_order')->where($condition)
  43. ->field('a.*,c.aid,c.typeid,c.channel,d.*,a.add_time as order_add_time')
  44. ->alias('a')
  45. ->join('__ARCHIVES__ c', 'a.product_id = c.aid', 'LEFT')
  46. ->join('__ARCTYPE__ d', 'c.typeid = d.id', 'LEFT')
  47. ->order('a.order_id desc')
  48. ->paginate($pagesize, false, $paginate);
  49. $result = $pages->toArray();
  50. if (!empty($result['data'])) {
  51. foreach ($result['data'] as $key => $value) {
  52. $result['data'][$key]['product_litpic'] = get_default_pic($value['product_litpic'], true);
  53. $result['data'][$key]['pay_time'] = date('Y-m-d H:i:s',$value['pay_time']);
  54. }
  55. }
  56. return $result;
  57. }
  58. // 视频订单详情页
  59. public function mediaOrderDetails()
  60. {
  61. $order_id = input('param.order_id');
  62. if (!empty($order_id)) {
  63. // 查询订单信息
  64. $OrderData = Db::name('media_order')
  65. ->field('a.*, product_id,c.aid,c.typeid,c.channel,d.*')
  66. ->alias('a')
  67. ->join('__ARCHIVES__ c', 'a.product_id = c.aid', 'LEFT')
  68. ->join('__ARCTYPE__ d', 'c.typeid = d.id', 'LEFT')
  69. ->find($order_id);
  70. $OrderData['product_litpic'] = get_default_pic($OrderData['product_litpic'], true);
  71. return $OrderData;
  72. }
  73. return [];
  74. }
  75. //播放记录列表
  76. public function playList()
  77. {
  78. $param = input('param.');
  79. $page = !empty($param['page']) ? intval($param['page']) : 1;
  80. $pagesize = empty($param['pagesize']) ? config('paginate.list_rows') : 10;
  81. $condition['a.users_id'] = $this->users_id;
  82. $paginate = ['page' => $page];
  83. $total_field = 'select sum(file_time) as total_time from ' . PREFIX . 'media_file where aid= a.aid';
  84. // 数据查询
  85. $list = Db::name('media_play_record')
  86. ->where($condition)
  87. ->alias('a')
  88. ->field("a.id as play_id,a.file_id,a.aid,sum(a.play_time) as sum_play_time,max(a.update_time) as last_update_time,c.*,b.*,({$total_field}) as total_time,(sum(a.play_time)/({$total_field})) as process,a.users_id")
  89. ->join('archives b', 'a.aid=b.aid', 'inner')
  90. ->join('arctype c', 'b.typeid=c.id', 'left')
  91. ->group('a.aid')
  92. ->order('process desc')
  93. ->paginate($pagesize, false, $paginate);
  94. $list = $list->toArray();
  95. $total_time = 0;
  96. if (!empty($list['data'])) {
  97. // 订单处理
  98. foreach ($list['data'] as $key => $val) {
  99. $total_time += $val['sum_play_time'];
  100. $val['process'] = (round($val['process'], 2) * 100) . "%";
  101. $val['sum_play_time'] = gmSecondFormat($val['sum_play_time'], ':');
  102. $val['sum_file_time'] = gmSecondFormat($val['total_time'], ':');
  103. $val['last_update_time'] = date('Y-m-d H:i:s', $val['last_update_time']);
  104. $val['litpic'] = get_default_pic($val['litpic'], true);
  105. $list['data'][$key] = $val;
  106. }
  107. $total_time = gmSecondFormat($total_time, ':');
  108. }
  109. $list['total_time'] = $total_time;
  110. return $list;
  111. }
  112. //获取会员升级订单列表
  113. public function getUpgradeLevelOrderList()
  114. {
  115. $param = input('param.');
  116. $page = !empty($param['page']) ? intval($param['page']) : 1;
  117. $pagesize = empty($param['pagesize']) ? config('paginate.list_rows') : 10;
  118. $condition['a.users_id'] = $this->users_id;
  119. $condition['a.status'] = 2;//默认查询已购买
  120. $condition['a.cause_type'] = 0;//默认查询已购买
  121. $condition['a.level_id'] = ['gt', 0];//默认查询已购买
  122. $paginate = ['page' => $page];
  123. $list = Db::name('users_money')
  124. ->where($condition)
  125. ->alias('a')
  126. ->order('a.moneyid desc')
  127. ->paginate($pagesize, false, $paginate);
  128. $list = $list->toArray();
  129. if (!empty($list['data'])) {
  130. foreach ($list['data'] as $key => $val) {
  131. $list['data'][$key]['cause'] = !empty($val['cause']) ? unserialize($val['cause']) : '';
  132. $list['data'][$key]['pay_details'] = !empty($val['pay_details']) ? unserialize($val['pay_details']) : '';
  133. }
  134. }
  135. return $list;
  136. }
  137. }