CommonLogic.php 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228
  1. <?php
  2. namespace app\mobile\logic;
  3. use app\model\AccountModel;
  4. use app\model\AddrModel;
  5. use app\model\CommonModel;
  6. use app\model\GoodModel;
  7. use app\model\GroupModel;
  8. use app\model\OrderModel;
  9. use app\model\PayInfoModel;
  10. use app\model\ServiceModel;
  11. use app\model\ThemeModel;
  12. use app\model\VideoModel;
  13. use think\Exception;
  14. use think\facade\Db;
  15. use think\response\Json;
  16. //公共
  17. class CommonLogic extends BaseLogic
  18. {
  19. //视频列表
  20. public static function getVideoList(array $data = []): Json
  21. {
  22. $rs = AccountModel::field('id,video_ids')
  23. ->where(['id' => self::$aid, 'is_del' => CommonModel::$del_normal])
  24. ->findOrEmpty()
  25. ->toArray();
  26. if (empty($rs)) return json_show(CommonModel::$error_param, '该账户不存在');
  27. $db = VideoModel::where(['is_del' => CommonModel::$del_normal, 'status' => CommonModel::$status_normal])
  28. ->whereIn('id', $rs['video_ids']);
  29. $count = $db->count('id');
  30. $list = $db
  31. ->field('id,video_sn,video_name,video_url,video_img')
  32. ->page($data['page'], $data['size'])
  33. ->order(['weight' => 'desc', 'id' => 'desc'])
  34. ->select()
  35. ->toArray();
  36. return json_show(CommonModel::$success, '获取视频列表成功', ['count' => $count, 'list' => $list]);
  37. }
  38. //手机主题
  39. public static function theme(): Json
  40. {
  41. $rs = ThemeModel::field('id,code')
  42. ->where(['is_del' => CommonModel::$del_normal, 'group_id' => self::$group_id, 'status' => CommonModel::$status_normal])
  43. ->append(['modular'])
  44. ->withAttr('modular', function ($val, $data) {
  45. return Db::name('theme_modular')
  46. ->field('id,title,type')
  47. ->where(['is_del' => CommonModel::$del_normal, 'theme_id' => $data['id'], 'status' => CommonModel::$status_normal])
  48. ->order(['addtime' => 'desc', 'id' => 'desc'])
  49. ->append(['data'])
  50. ->withAttr('data', function ($v, $d) {
  51. return Db::name('theme_modular_data')
  52. ->field('id,img,jump_type,jump_param,good_name,good_id,style_type')
  53. ->where(['is_del' => CommonModel::$del_normal, 'theme_modular_id' => $d['id']])
  54. ->order(['addtime' => 'desc', 'id' => 'desc'])
  55. ->select()
  56. ->toArray();
  57. })
  58. ->select()
  59. ->toArray();
  60. })
  61. ->findOrEmpty()
  62. ->toArray();
  63. return empty($rs) ? json_show(CommonModel::$error_param, '该手机主题不存在') : json_show(CommonModel::$success, '获取手机主题成功', $rs);
  64. }
  65. //微信支付预下单
  66. public static function getPrepayId(array $data = []): json
  67. {
  68. $openId = AccountModel::where(['id' => self::$aid, 'is_del' => CommonModel::$del_normal])
  69. ->value('wx_openId', '');
  70. if ($openId == '') return json_show(CommonModel::$error_token, '获取账户openId失败,请重新登录');
  71. Db::startTrans();
  72. try {
  73. $rs = AddrModel::field('id')
  74. ->where(['is_del' => CommonModel::$del_normal, 'id' => $data['addr_id'], 'uid' => self::$aid])
  75. ->findOrEmpty()
  76. ->isEmpty();
  77. if ($rs) throw new Exception('该地址不存在');
  78. $amount = '0';//支付金额
  79. $num = array_column($data['list'], 'num', 'id');//
  80. $date = date('Y-m-d H:i:s');
  81. $code = make_no('ZF');
  82. //支付信息表
  83. $pay_info_id = Db::name('pay_info')->insertGetId([
  84. 'code' => $code,
  85. 'wx_openId' => $openId,
  86. 'type' => $data['type'],
  87. 'ids' => json_encode($data['list']),
  88. 'status' => CommonModel::$order_status_wait_pay,
  89. 'createrid' => self::$aid,
  90. 'creater' => self::$aname,
  91. 'addtime' => $date,
  92. 'updaterid' => self::$aid,
  93. 'updater' => self::$aname,
  94. 'updatetime' => $date,
  95. ]);
  96. if ($data['type'] == CommonModel::$pay_type_service) {
  97. //购买服务
  98. $rs = ServiceModel::field('id,original_price,activity_price,title,activity_status')
  99. ->whereIn('id', array_column($data['list'], 'id'))
  100. ->where(['is_del' => CommonModel::$del_normal, 'status' => CommonModel::$status_normal])
  101. ->select()
  102. ->toArray();
  103. if (empty($rs)) throw new Exception('购买的服务不存在或已下架');
  104. $insert_service = [];
  105. foreach ($rs as $item) {
  106. if ($item['activity_status'] == ServiceModel::$activity_status_ing) $total = bcmul($rs['activity_price'], $num[$item['id']] ?? 0, 2);
  107. else $total = bcmul($rs['original_price'], $num[$item['id']] ?? 0, 2);
  108. $amount = bcadd($amount, $total, 2);//总金额
  109. $insert_service[] = [
  110. 'orderCode' => make_no('FW'),
  111. 'pay_info_id' => $pay_info_id,
  112. 'uid' => self::$aid,
  113. 'service_id' => $item['id'],
  114. 'num' => $num[$item['id']] ?? 0,
  115. 'addr_id' => $data['addr_id'],
  116. 'amount' => $total,
  117. 'status' => CommonModel::$order_status_wait_pay,
  118. 'is_del' => CommonModel::$del_normal,
  119. 'createrid' => self::$aid,
  120. 'creater' => self::$aname,
  121. 'addtime' => $date,
  122. 'updaterid' => self::$aid,
  123. 'updater' => self::$aname,
  124. 'updatetime' => $date,
  125. ];
  126. }
  127. //向服务订单表写数据
  128. Db::name('order_service')->insertAll($insert_service);
  129. } else {
  130. //购买商城商品
  131. $order_insert = [];
  132. $rs = GoodModel::field('id,price,good_name')
  133. ->whereIn('id', array_column($data['list'], 'id'))
  134. ->where(['is_del' => CommonModel::$del_normal, 'status' => CommonModel::$status_normal])
  135. ->select()
  136. ->toArray();
  137. if (empty($rs)) throw new Exception('购买的商品不存在或已禁用');
  138. $i = 0;
  139. $orderCode = make_no('QR');
  140. $orderCode = substr($orderCode, 0, -2) . str_pad($i, 2, '0', STR_PAD_LEFT);
  141. foreach ($rs as $item) {
  142. $total_price = bcmul($item['price'], $num[$item['id']] ?? 0, 2);//总价
  143. $order_insert[] = [
  144. 'orderCode' => $orderCode,
  145. 'pay_info_id' => $pay_info_id,
  146. 'company_id' => self::$company_id,
  147. 'card_id' => self::$card_id,
  148. 'uid' => self::$aid,
  149. 'good_id' => $item['id'],
  150. 'num' => $num[$item['id']],
  151. 'price' => $item['price'],
  152. 'total_price' => $total_price,
  153. 'addr_id' => $data['addr_id'],
  154. 'type' => CommonModel::$pay_type_shopping_good,
  155. 'status' => CommonModel::$order_status_wait_pay,
  156. 'is_del' => CommonModel::$del_normal,
  157. 'createrid' => self::$aid,
  158. 'creater' => self::$aname,
  159. 'addtime' => $date,
  160. 'updaterid' => self::$aid,
  161. 'updater' => self::$aname,
  162. 'updatetime' => $date,
  163. ];
  164. $amount = bcadd($amount, $total_price, 2);
  165. $i++;
  166. }
  167. }
  168. //获取预支付信息,
  169. //@todo body要写什么????????
  170. $result = WechatLogic::getPrepayId($openId, '', $code, $amount);
  171. //更新pay_info表
  172. Db::name('pay_info')
  173. ->where('id', $pay_info_id)
  174. ->update([
  175. 'prepay_info' => $result,
  176. 'amount' => $amount,
  177. 'expiretime' => date('Y-m-d H:i:s', time() + 5 * 60),
  178. ]);
  179. //@todo 要给前端返回什么信息?
  180. $res = '';
  181. Db::commit();
  182. return json_show(CommonModel::$success, '微信支付预下单成功', $res);
  183. } catch (Exception $exception) {
  184. Db::rollback();
  185. return json_show(CommonModel::$success, '微信支付预下单失败' . $exception->getMessage());
  186. }
  187. }
  188. }