CommonLogic.php 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305
  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. //单价
  107. if ($item['activity_status'] == ServiceModel::$activity_status_ing) $price = $rs['activity_price'];
  108. else $price = $rs['original_price'];
  109. $total_price = bcmul($price, $num[$item['id']] ?? 0, 2);//总价
  110. $amount = bcadd($amount, $total_price, 2);//总金额
  111. $insert_service[] = [
  112. 'orderCode' => make_no('FW'),
  113. 'pay_info_id' => $pay_info_id,
  114. 'uid' => self::$aid,
  115. 'service_id' => $item['id'],
  116. 'num' => $num[$item['id']] ?? 0,
  117. 'addr_id' => $data['addr_id'],
  118. 'price' => $price,
  119. 'total_price' => $total_price,
  120. 'status' => CommonModel::$order_status_wait_pay,
  121. 'is_del' => CommonModel::$del_normal,
  122. 'createrid' => self::$aid,
  123. 'creater' => self::$aname,
  124. 'addtime' => $date,
  125. 'updaterid' => self::$aid,
  126. 'updater' => self::$aname,
  127. 'updatetime' => $date,
  128. ];
  129. }
  130. //向服务订单表写数据
  131. Db::name('order_service')->insertAll($insert_service);
  132. } else {
  133. //购买商城商品
  134. $order_insert = [];
  135. $rs = GoodModel::field('id,price,good_name')
  136. ->whereIn('id', array_column($data['list'], 'id'))
  137. ->where(['is_del' => CommonModel::$del_normal, 'status' => CommonModel::$status_normal])
  138. ->select()
  139. ->toArray();
  140. if (empty($rs)) throw new Exception('购买的商品不存在或已禁用');
  141. $i = 0;
  142. $orderCode = make_no('QR');
  143. $orderCode = substr($orderCode, 0, -2) . str_pad($i, 2, '0', STR_PAD_LEFT);
  144. foreach ($rs as $item) {
  145. $total_price = bcmul($item['price'], $num[$item['id']] ?? 0, 2);//总价
  146. $order_insert[] = [
  147. 'orderCode' => $orderCode,
  148. 'pay_info_id' => $pay_info_id,
  149. 'company_id' => self::$company_id,
  150. 'card_id' => self::$card_id,
  151. 'uid' => self::$aid,
  152. 'good_id' => $item['id'],
  153. 'num' => $num[$item['id']],
  154. 'price' => $item['price'],
  155. 'total_price' => $total_price,
  156. 'addr_id' => $data['addr_id'],
  157. 'type' => CommonModel::$pay_type_shopping_good,
  158. 'status' => CommonModel::$order_status_wait_pay,
  159. 'is_del' => CommonModel::$del_normal,
  160. 'createrid' => self::$aid,
  161. 'creater' => self::$aname,
  162. 'addtime' => $date,
  163. 'updaterid' => self::$aid,
  164. 'updater' => self::$aname,
  165. 'updatetime' => $date,
  166. ];
  167. $amount = bcadd($amount, $total_price, 2);
  168. $i++;
  169. }
  170. }
  171. //获取预支付信息,
  172. //@todo body要写什么????????
  173. $result = WechatLogic::getPrepayId($openId, '', $code, $amount);
  174. //更新pay_info表
  175. Db::name('pay_info')
  176. ->where('id', $pay_info_id)
  177. ->update([
  178. 'prepay_info' => $result,
  179. 'amount' => $amount,
  180. 'expiretime' => date('Y-m-d H:i:s', time() + 5 * 60),
  181. ]);
  182. //@todo 要给前端返回什么信息?
  183. $res = '';
  184. Db::commit();
  185. return json_show(CommonModel::$success, '微信支付预下单成功', $res);
  186. } catch (Exception $exception) {
  187. Db::rollback();
  188. return json_show(CommonModel::$success, '微信支付预下单失败' . $exception->getMessage());
  189. }
  190. }
  191. //微信支付成功后的异步通知及订单处理
  192. public static function Notify()
  193. {
  194. Db::startTrans();
  195. try {
  196. $notifyInfo = WechatLogic::Notify();
  197. $pay_info = PayInfoModel::field('id,type,status')
  198. ->where('code', $notifyInfo['out_trade_no'])
  199. ->findOrEmpty();
  200. if ($pay_info->isEmpty()) throw new Exception('该支付信息不存在');
  201. //待处理
  202. if ($pay_info->status == CommonModel::$order_status_wait_pay) {
  203. $updatetime = date('Y-m-d H:i:s');
  204. PayInfoModel::where(['code' => $notifyInfo['out_trade_no'], 'status' => CommonModel::$order_status_wait_pay])
  205. ->save([
  206. 'status' => CommonModel::$order_status_not_deliver,
  207. 'updaterid' => '0',
  208. 'updater' => '微信支付',
  209. 'updatetime' => $updatetime,
  210. 'transaction_id' => $notifyInfo['transaction_id'],
  211. 'trade_type' => $notifyInfo['trade_type'],
  212. 'notify_result' => json_encode($notifyInfo, JSON_UNESCAPED_UNICODE),
  213. ]);
  214. if ($pay_info->type == GoodModel::$type_exchange) {
  215. //兑换商品订单
  216. Db::name('order')
  217. ->where(['is_del' => CommonModel::$del_normal, 'pay_info_id' => $pay_info->id, 'status' => CommonModel::$order_status_wait_pay])
  218. ->update([
  219. 'updaterid' => '0',
  220. 'updater' => '微信支付',
  221. 'updatetime' => $updatetime,
  222. 'status' => CommonModel::$order_status_not_deliver
  223. ]);
  224. } else {
  225. //服务订单
  226. Db::name('order_service')
  227. ->where(['is_del' => CommonModel::$del_normal, 'pay_info_id' => $pay_info->id, 'status' => CommonModel::$order_status_wait_pay])
  228. ->update([
  229. 'updaterid' => '0',
  230. 'updater' => '微信支付',
  231. 'updatetime' => $updatetime,
  232. 'status' => CommonModel::$order_status_not_deliver
  233. ]);
  234. }
  235. }
  236. Db::commit();
  237. return xml(['return_code' => 'SUCCESS', 'return_msg' => 'DEAL WITH SUCCESS']);
  238. } catch (Exception $exception) {
  239. Db::rollback();
  240. return xml(['return_code' => 'FAIL', 'return_msg' => $exception->getMessage()]);
  241. }
  242. // 返回XML状态,至于XML数据可以自己生成,成功状态是必须要返回的。
  243. // <xml>
  244. // return_code><![CDATA[SUCCESS]]></return_code>
  245. // return_msg><![CDATA[OK]]></return_msg>
  246. // </xml>
  247. }
  248. }