OrderCallback.php 12 KB

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