OrderCallback.php 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  1. <?php
  2. namespace app\common\service;
  3. use app\api\controller\Alipay;
  4. use app\common\model\ActivityApply;
  5. use app\common\model\ActivityApplyItem;
  6. use app\common\model\BillApply;
  7. use app\common\model\GoodsOrder;
  8. use app\common\model\GoodsOrderRefund;
  9. use app\common\model\GoodsSellInfo;
  10. use app\common\model\LevelOrder;
  11. use app\common\model\StoreGoods;
  12. use app\common\model\StoreGoodsItem;
  13. use app\common\model\User;
  14. use app\common\model\UserLevelRank;
  15. use app\common\model\UserMessage;
  16. use app\common\model\UserMoneyInfo;
  17. use app\common\model\UserWallet;
  18. use EasyWeChat\Factory;
  19. use library\tools\Data;
  20. use think\Db;
  21. use think\Exception;
  22. /**
  23. * 订单回调逻辑
  24. * Class OrderCallback
  25. */
  26. class OrderCallback
  27. {
  28. // 商城商品订单支付逻辑
  29. public static function goodsOrderCallBack($order_info,$pay_type)
  30. {
  31. $ret_val = true;$msg='';
  32. Db::startTrans();
  33. try{
  34. // 更改订单状态
  35. GoodsOrder::where('id',$order_info['id'])->update(['status'=>1,'pay_state'=>1,'pay_at'=>date('Y-m-d H:i:s')]);
  36. // 销售记录
  37. list($sell_data) = [[]];
  38. foreach ($order_info['order_item'] as $item_info) {
  39. array_push($sell_data, [
  40. 'goods_id'=>$item_info['goods_id'],
  41. 'spec_id'=>$item_info['spec_id'],
  42. 'goods_type'=>1,
  43. 'user_id'=>$order_info['user_id'],
  44. 'year'=> date('Y'),
  45. 'month'=> date('m'),
  46. 'day'=> date('d'),
  47. 'from_id'=> $order_info['id'],
  48. ]);
  49. StoreGoods::where('id',$item_info['goods_id'])->setInc('sale_num',$item_info['num']);// 商品销量
  50. StoreGoodsItem::where('id',$item_info['spec_id'])->setInc('sale_num',$item_info['num']);// 规格销量
  51. StoreGoodsItem::where('id',$item_info['spec_id'])->setInc('virtual',$item_info['num']);// 虚拟销量
  52. }
  53. if(!empty($sell_data)) (new GoodsSellInfo())->saveAll($sell_data);
  54. // 发票
  55. BillApply::where('order_type',2)->where('order_id',$order_info['id'])->update(['order_pay'=>1]);
  56. Db::commit();
  57. }catch (\Exception $e){
  58. $ret_val = false;
  59. $msg = $e->getMessage();
  60. Db::rollback();
  61. }
  62. return ['ret_val'=>$ret_val,'msg'=>$msg];
  63. }
  64. // 商城订单执行退款
  65. public static function refundMoney($refund_info =[],$order_info=[],$order_id = 0)
  66. {
  67. $ret = ['code'=>200,'msg'=>'退款成功'];
  68. if(empty($order_info)) $order_info = GoodsOrder::where('id',$order_id)->find()->toArray();
  69. if(empty($refund_info)) $refund_info = GoodsOrderRefund::where(['order_id'=>$order_id])->find()->toArray();
  70. if(!in_array($order_info['refund_state'],[2,3])) return ['code'=>201,'订单退款审核状态有误'];
  71. if($refund_info['refund_money'] <= 0 || $refund_info['refund_money'] > $order_info['price_total'])return ['code'=>201,'订单退款金额有误'];
  72. $refund_no = $refund_info['refund_no'] ? $refund_info['refund_no'] : get_order_sn();
  73. Db::startTrans();
  74. try {
  75. //微信退款
  76. if(in_array($order_info['pay_type'],[1,3,5,6])){
  77. $app = $order_info['pay_type'] == 3 ? Factory::payment(config('app.app_wx')) : Factory::payment(config('app.wx_pay'));
  78. $result = $app->refund->byOutTradeNumber($order_info['pay_no'], $refund_no, $order_info['price_total'] * 100, $refund_info['refund_money']*100, ['refund_desc' => '订单退款']);
  79. if($result['return_code'] != 'SUCCESS') throw new Exception('微信退款异常');
  80. if($result['result_code'] != 'SUCCESS') throw new Exception($result['err_code_des']);
  81. GoodsOrderRefund::where(['id'=>$refund_info['id']])->update(['refund_no'=>$refund_no,'status'=>3,'refund_time'=>date('Y-m-d H:i:s')]);
  82. }
  83. // 支付宝退款
  84. if(in_array($order_info['pay_type'],[2,4,7])) {
  85. $result = Alipay::aliRefund($order_info['pay_no'], $refund_info['refund_money'],$order_info['pay_type'] == 4 ?'APP':'H5');
  86. if(!$result) throw new Exception('支付宝退款异常');
  87. GoodsOrderRefund::where(['id'=>$refund_info['id']])->update(['refund_no'=>$refund_no,'status'=>3,'refund_time'=>date('Y-m-d H:i:s')]);
  88. }
  89. Db::commit();
  90. }catch (\Exception $e){
  91. $ret['code'] = 201;
  92. $ret['msg'] = $e->getMessage();
  93. Db::rollback();
  94. }
  95. return $ret;
  96. }
  97. // 商城订单退款(相关返利追回)
  98. public static function goodsOrderRefundBack($order_info , $order_id)
  99. {
  100. if(empty($order_info)) $order_info = GoodsOrder::where('id',$order_id)->find()->toArray();
  101. if($order_info['rebate_refund'] == 1) return true;
  102. $where = [];
  103. $where[] = ['order_id','=',$order_info['id']];
  104. $where[] = ['type','in',[7,8,9]];
  105. $money_list = UserMoneyInfo::where($where)->select()->toArray();
  106. foreach ($money_list as $mv) {
  107. UserWallet::userMoneyChange($mv['user_id'],$mv['money'],'佣金订单退款追回',10);
  108. }
  109. GoodsOrder::where('id',$order_info['id'])->update(['rebate_refund'=>1]);
  110. return true;
  111. }
  112. //开通会员订单支付回调
  113. public static function levelOrderCallBack($order_info,$pay_type)
  114. {
  115. $ret_val = true;$msg='';
  116. Db::startTrans();
  117. try{
  118. // 更改订单状态
  119. LevelOrder::where('id',$order_info['id'])->update(['status'=>1,'pay_state'=>1,'pay_at'=>date('Y-m-d H:i:s')]);
  120. // 是否已是会员
  121. $check_level = UserLevelRank::where(['user_id'=>$order_info['user_id']])->find();
  122. // 续费或是新开会员
  123. $start_time = $check_level && $check_level->end_time >time() ? $check_level->start_time :time();
  124. $end_time = $check_level && $check_level->end_time >time() ? strtotime('+'.$order_info['month'].' month',$check_level->end_time) : strtotime('+'.$order_info['month'].' month') ;
  125. $res= Data::save('UserLevelRank', ['user_id'=>$order_info['user_id'],'level_id'=>$order_info['level_id'],'start_time'=>$start_time,'end_time'=>$end_time,'end_date'=>date('Y-m-d H:i:s',$end_time)], 'user_id',['user_id'=>$order_info['user_id']]);
  126. //var_dump(['user_id'=>$order_info['user_id'],'level_id'=>$order_info['level_id'],'start_time'=>$start_time,'end_time'=>$end_time,'end_date'=>date('Y-m-d H:i:s',$end_time)],$res);
  127. // Data::save('UserLevelRank',['user_id'=>$order_info['user_id'],'level_id'=>$order_info['level_id'],'start_time'=>$start_time,'end_time'=>$end_time,'end_date'=>date('Y-m-d H:i:s',$end_time),'user_id',['user_id'=>$order_info['user_id'],'level_id'=>$order_info['level_id']]]);
  128. $max_level = UserLevelRank::where([['user_id','=',$order_info['user_id']],['end_time','>',time()]])->order('level_id desc')->select()->toArray();
  129. if(!empty($max_level)) User::where(['id'=>$order_info['user_id']])->update(['level_id'=>intval($max_level[0]['level_id']),'level_exp'=>$max_level[0]['end_date']]);
  130. Db::commit();
  131. }catch (\Exception $e){
  132. $ret_val = false;
  133. $msg = $e->getMessage();
  134. Db::rollback();
  135. }
  136. return ['ret_val'=>$ret_val,'msg'=>$msg];
  137. }
  138. // 活动报名
  139. public static function activityOrderCallBack($order_info)
  140. {
  141. $ret_val = true;$msg='';
  142. Db::startTrans();
  143. try{
  144. // 更改订单状态
  145. ActivityApply::where('id',$order_info['id'])->update(['status'=>1,'pay_state'=>1,'pay_at'=>date('Y-m-d H:i:s')]);
  146. $item_list = ActivityApplyItem::where('apply_id',$order_info['id'])->select()->toArray();
  147. $qrCode = new \Endroid\QrCode\QrCode();
  148. foreach ($item_list as $iv) {
  149. if($iv['sh_status'] == 1) {
  150. // 生成核销码
  151. $qr_content = $order_info['act_id'].'-'.$order_info['id'].'-'.$iv['id'];
  152. $qrCode->setText($qr_content);
  153. $qrCode->setSize(200);
  154. $dir = dirname(realpath(dirname($_SERVER['SCRIPT_FILENAME']))) . '/public/code';
  155. $filename = $dir.'/'.$iv['id'].'.png';
  156. $qrCode->writeFile($filename);
  157. $url='http://'.$_SERVER['SERVER_NAME']."/code/".$iv['id'].'.png';
  158. ActivityApplyItem::where('id',$iv['id'])->update(['status'=>1,'qr_code'=>$url,'qr_content'=>$qr_content]);
  159. $act_title = \app\common\model\Activity::where('id',$iv['act_id'])->value('title');
  160. $content = '您已成功报名"'.$act_title.'"';
  161. UserMessage::sendUserMessage($iv['user_id'],'apply',1,0,0,$iv['id'],$content,$iv['id']);
  162. UserSynth::ticketSend($iv['id']);
  163. }else{
  164. ActivityApplyItem::where('id',$iv['id'])->update(['status'=>1]);
  165. }
  166. }
  167. // 活动订单发票记录修改
  168. BillApply::where(['order_type'=>3,'order_id'=>$order_info['id']])->update(['order_pay'=>1]);
  169. //UserMessage::sendUserMessage($order_info['user_id'],'activity',1,0,0,$order_info['id'],'',$order_info['id']);
  170. Db::commit();
  171. }catch (\Exception $e){
  172. $ret_val = false;
  173. $msg = $e->getMessage();
  174. Db::rollback();
  175. }
  176. return ['ret_val'=>$ret_val,'msg'=>$msg];
  177. }
  178. }