|
@@ -1,2332 +0,0 @@
|
|
|
-<?php
|
|
|
-
|
|
|
-namespace app\common\model;
|
|
|
-
|
|
|
-use app\common\library\Hecheng;
|
|
|
-use app\common\library\token\driver\Redis;
|
|
|
-use app\common\library\WxMerchPay;
|
|
|
-use think\Model;
|
|
|
-use app\common\library\Common;
|
|
|
-use think\Db;
|
|
|
-use app\common\library\WxPay;
|
|
|
-use app\common\library\AliPay;
|
|
|
-use Workerman\Protocols\Websocket;
|
|
|
-use EasyWeChat\Factory;
|
|
|
-
|
|
|
-/**
|
|
|
- * 订单model
|
|
|
- */
|
|
|
-class Order Extends Model
|
|
|
-{
|
|
|
-
|
|
|
- // 开启自动写入时间戳字段
|
|
|
- protected $autoWriteTimestamp = 'TIMESTAMP';
|
|
|
- // 定义时间戳字段名
|
|
|
- protected $createTime = 'create_at';
|
|
|
- protected $updateTime = false;
|
|
|
- // 追加属性
|
|
|
- protected $append = [
|
|
|
- ];
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- public static function hecheng($money,$pay_type){
|
|
|
- $hc = new Hecheng();
|
|
|
- return $hc->hecheng($money,$pay_type);
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * 获取可使用优惠券列表
|
|
|
- */
|
|
|
- public static function getCouponList($money){
|
|
|
- $user = app()->session->get('us');
|
|
|
- CouponUser::couponsTimeOut($user['id']);
|
|
|
- $list1 = CouponUser::where('user_id',$user['id'])
|
|
|
- ->where('validity',0)
|
|
|
- ->where('coupon_price','<',$money)
|
|
|
- ->where('status',0)
|
|
|
- ->select();
|
|
|
- if ($list1) $list1 = $list1->toArray();
|
|
|
- $list2 = CouponUser::where('user_id',$user['id'])
|
|
|
- ->where('end_time','>=',time())
|
|
|
- ->where('validity','neq',0)
|
|
|
- ->where('coupon_price','<',$money)
|
|
|
- ->where('status',0)
|
|
|
- ->select();
|
|
|
- if ($list2) $list2 = $list2->toArray();
|
|
|
- $list = array_merge($list1,$list2);
|
|
|
- array_multisort(array_column($list,'coupon_price'),SORT_DESC,$list);
|
|
|
- return Common::return_success('成功',$list);
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- /**
|
|
|
- * 判断优惠券是否可以用
|
|
|
- */
|
|
|
- public static function checkCoupon($user_id,$coupon_id,$money,$type = 1){
|
|
|
- $coupon = CouponUser::where('user_id',$user_id)
|
|
|
- ->where('id',$coupon_id)
|
|
|
- ->where('coupon_price','<',$money)
|
|
|
- ->where('status',0)
|
|
|
- ->find();
|
|
|
- if (!$coupon){
|
|
|
- return false;
|
|
|
- } else{
|
|
|
- if ($type==1)
|
|
|
- CouponUser::where('id',$coupon_id)->update(['use_time'=>time(),'status'=>1]);
|
|
|
- return $coupon->toArray();
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- /**
|
|
|
- * 下单(普通商品)
|
|
|
- */
|
|
|
- public static function setOrder($product_id,$num,$mobile,$note,$pay_type,$difference_pay_type,$coupon_id,$come,$pay_pass=''){
|
|
|
- $user = app()->session->get('us');
|
|
|
- $data['user_id'] = $user['id'];
|
|
|
- $order_no = Common::getNewOrderId($user['id']);
|
|
|
- $data['order_no'] = $order_no;
|
|
|
- $data['total_num'] = $num;
|
|
|
- $verify_code = self::nonceStr();
|
|
|
- $data['verify_code'] = $verify_code;
|
|
|
- $data['verify_code_img'] = Common::generate_qrcode($verify_code);
|
|
|
- $data['product_id'] = $product_id;
|
|
|
- $prodcut = Product::where('id',$product_id)->where('is_del',1)->find();
|
|
|
- if (!$prodcut)
|
|
|
- return Common::return_error('商品不存在');
|
|
|
- $prodcut = $prodcut->toArray();
|
|
|
- $data['merch_id'] = $prodcut['merch_id'];
|
|
|
- $data['mobile'] = $mobile;
|
|
|
- $data['note'] = $note;
|
|
|
-
|
|
|
-
|
|
|
- $prodcut_price = $prodcut['price'];
|
|
|
-
|
|
|
- if ($prodcut['first_price']>0){
|
|
|
- $order = self::where('user_id',$user['id'])->where('product_id',$product_id)->whereNotIn('status','0,4')->count();
|
|
|
- if (!$order){
|
|
|
- if ($num>1)
|
|
|
- return Common::return_error('商品数量错误');
|
|
|
- $prodcut_price = $prodcut['first_price'];
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- $price = $prodcut_price*$num;
|
|
|
- $data['price'] = $price;
|
|
|
- $data['pay_type'] = $pay_type;
|
|
|
- //获取商家的类别
|
|
|
- $type = UserMerchInfo::where('a.id',$prodcut['merch_id'])
|
|
|
- ->alias('a')
|
|
|
- ->join('Category b','a.category_one_id=b.id')
|
|
|
- ->field('b.type,b.proportion,a.collection_type')
|
|
|
- ->find();
|
|
|
- if ($type['type']!=1){
|
|
|
- return Common::return_error('商品信息错误,无法下单');
|
|
|
- }
|
|
|
-
|
|
|
- if ($pay_type=='yue'){
|
|
|
- if (!$difference_pay_type){
|
|
|
- $password = User::where('id',$user['id'])->value('with_password');
|
|
|
- if ($password!=md5($pay_pass)) return Common::return_error('支付密码错误');
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- $openid = User::where('id',$user['id'])->value('openid');
|
|
|
-
|
|
|
- $order_sn = date('YmdHis').rand(1000, 9999);//商户订单号;
|
|
|
- $data['merch_order_no'] = $order_sn;
|
|
|
- $data['type'] = $type['type'];
|
|
|
- $merch_proportion = $type['proportion'];
|
|
|
- $data['merch_proportion'] = $merch_proportion;
|
|
|
- $merch_proportion_money = sprintf("%.2f",substr(sprintf("%.4f", ($price*($merch_proportion/100))), 0, -2));
|
|
|
- $data['merch_proportion_money'] = $merch_proportion_money;
|
|
|
- $data['merch_money'] = $price-$merch_proportion_money;
|
|
|
- $data['coupon_id'] = $coupon_id ? $coupon_id : 0;
|
|
|
- // $data['mp3_url'] = self::hecheng($price-$merch_proportion_money);
|
|
|
- $data['mp3_url'] = self::hecheng($price,$pay_type);
|
|
|
- Db::startTrans();
|
|
|
- try {
|
|
|
- $order = self::create($data);
|
|
|
- $order_id = $order->id;
|
|
|
- $order_info = array();
|
|
|
- $order_info['order_id'] = $order->id;
|
|
|
- $order_info['product_id'] = $product_id;
|
|
|
- $order_info['info'] = json_encode($prodcut,true);
|
|
|
- OrderInfo::create($order_info);
|
|
|
- Common::order_status($order_id,'订单生成');
|
|
|
- switch ($pay_type){
|
|
|
- case 'yue':
|
|
|
- $userinfo = User::get($user['id']);
|
|
|
- //获取手续费
|
|
|
- $poundage_proportion = Config::get_values('poundage_proportion'); //手续费百分比
|
|
|
- $user_money_proportion = sprintf("%.2f",substr(sprintf("%.4f", ($price * ($poundage_proportion/100))), 0, -2)); //保留两位小数,不四舍五入; 手续费
|
|
|
- $all_price = $price + $user_money_proportion;
|
|
|
- if ($userinfo->money >= $all_price){
|
|
|
- if ($coupon_id){
|
|
|
- $coupon = self::checkCoupon($user['id'],$coupon_id,$all_price);
|
|
|
- if (!$coupon) return Common::return_error('优惠券不可用');
|
|
|
- $coupon_price = $coupon['coupon_price'];
|
|
|
- $yue_money = bcsub($all_price,$coupon_price,2);
|
|
|
- }else{
|
|
|
- $coupon_price = 0;
|
|
|
- $yue_money = $all_price;
|
|
|
- }
|
|
|
- //余额支付
|
|
|
- User::money($yue_money,$user['id'],'订单支付'.$yue_money.'元');
|
|
|
- self::where('id',$order_id)->update(['yue_money'=>$yue_money,'coupon_price'=>$coupon_price,'poundage_proportion'=>$poundage_proportion,'proportion'=>$user_money_proportion,'all_money'=>$all_price,'status'=>1,'pay_time'=>time()]);
|
|
|
- Db::commit();
|
|
|
- Common::order_status($order_id,'余额支付成功');
|
|
|
- $retrun_data['order_no'] = $order_no;
|
|
|
- $retrun_data['pay'] = 'yue';
|
|
|
- return Common::return_success('支付成功',$retrun_data);
|
|
|
- }else{
|
|
|
- $user_money_proportion = sprintf("%.2f",substr(sprintf("%.4f", ($userinfo->money * ($poundage_proportion/100))), 0, -2)); //保留两位小数,不四舍五入; 手续费
|
|
|
- $all_price = $price + $user_money_proportion;
|
|
|
- $difference_money = sprintf("%.2f", $all_price - $userinfo->money); //差价
|
|
|
- if ($coupon_id){
|
|
|
- $coupon = self::checkCoupon($user['id'],$coupon_id,$difference_money);
|
|
|
- if (!$coupon) return Common::return_error('优惠券不可用');
|
|
|
- $coupon_price = $coupon['coupon_price'];
|
|
|
- $difference_money = bcsub($difference_money,$coupon_price,2);
|
|
|
- }else{
|
|
|
- $coupon_price = 0;
|
|
|
- }
|
|
|
- self::where('id',$order_id)->update(['yue_money'=>$userinfo->money,'coupon_price'=>$coupon_price,'poundage_proportion'=>$poundage_proportion,'proportion'=>$user_money_proportion,'difference_money'=>$difference_money,'all_money'=>$all_price,'pay_type'=>$difference_pay_type]);
|
|
|
- switch ($difference_pay_type){
|
|
|
- case 'weixin':
|
|
|
- //微信支付
|
|
|
- $wx = new WxPay();//实例化微信支付控制器
|
|
|
- $body = '订单号' . $order_no;//支付说明
|
|
|
- $out_trade_no = $order_no;//订单号
|
|
|
- $total_fee = $difference_money * 100;//支付金额(乘以100)
|
|
|
- $notify_url = 'https://'.$_SERVER['SERVER_NAME'].'/api/pay/pay_order';//回调地址
|
|
|
- if ($come=='weixin'){
|
|
|
- $config = $wx->retrunconfig();
|
|
|
- $config['notify_url'] = $notify_url;
|
|
|
-
|
|
|
- $app = Factory::payment($config);
|
|
|
- $trade_type = "JSAPI";
|
|
|
- $order = $app->order->unify([
|
|
|
- 'body' => $body,
|
|
|
- 'out_trade_no' => $out_trade_no,
|
|
|
- 'total_fee' => $total_fee,
|
|
|
- 'trade_type' => $trade_type, // JSAPI--JSAPI支付(或小程序支付)、NATIVE--Native支付、APP--app支付,MWEB--H5支付
|
|
|
- 'openid' => $openid,
|
|
|
- ]);
|
|
|
- if ($order['return_msg']=='OK'){
|
|
|
- if ($order['result_code']=='FAIL'){
|
|
|
- Db::rollback();
|
|
|
- return Common::return_error($order['err_code_des']);
|
|
|
- }else{
|
|
|
- $order1 = $app->jssdk->bridgeConfig($order['prepay_id']);//执行二次签名返回参数
|
|
|
- self::where('order_no',$order_no)->update(['wx_order'=>$order1]);
|
|
|
- $retrun_data['order_no'] = $order_no;
|
|
|
- $retrun_data['pay'] = json_decode($order1,true);
|
|
|
- Db::commit();
|
|
|
- return Common::return_success('成功',$retrun_data);
|
|
|
- }
|
|
|
- } else {
|
|
|
- Db::rollback();
|
|
|
- return Common::return_error($order['return_msg']);
|
|
|
- }
|
|
|
- break;
|
|
|
- }else{
|
|
|
- $config = $wx->retrunconfig2();
|
|
|
-
|
|
|
- try{
|
|
|
- $app = Factory::payment($config);
|
|
|
- $result = $app->order->unify([
|
|
|
- 'body' => $body,
|
|
|
- 'out_trade_no' => $out_trade_no,
|
|
|
- 'total_fee' => $total_fee,
|
|
|
- 'notify_url' => $notify_url, // 支付结果通知网址,如果不设置则会使用配置里的默认地址
|
|
|
- 'trade_type' => 'APP', // 请对应换成你的支付方式对应的值类型
|
|
|
- ]);
|
|
|
- $jssdk = $app->jssdk;
|
|
|
- $order1 = $jssdk->appConfig($result['prepay_id']);
|
|
|
- self::where('order_no',$order_no)->update(['wx_order'=>json_encode($order1,true)]);
|
|
|
- Db::commit();
|
|
|
- $retrun_data['order_no'] = $order_no;
|
|
|
- $retrun_data['pay'] = $order1;
|
|
|
- return Common::return_success('成功',$retrun_data);
|
|
|
-
|
|
|
- }catch (Exception $e){
|
|
|
- Db::rollback();
|
|
|
- return Common::return_error($order['return_msg']);
|
|
|
- }
|
|
|
- break;
|
|
|
-// $order = $wx->getPrePayOrder($body, $out_trade_no, $total_fee, $notify_url,$come,$openid);//调用微信支付的方法
|
|
|
-// if ($order['return_msg']=='OK'){
|
|
|
-// if ($order['result_code']=='FAIL'){
|
|
|
-// Db::rollback();
|
|
|
-// return Common::return_error($order['err_code_des']);
|
|
|
-// }else{
|
|
|
-// $order1 = $wx->getOrder($order['prepay_id']);//执行二次签名返回参数
|
|
|
-// self::where('order_no',$order_no)->update(['wx_order'=>json_encode($order1,true)]);
|
|
|
-// $retrun_data['order_no'] = $order_no;
|
|
|
-// $retrun_data['pay'] = $order1;
|
|
|
-// Db::commit();
|
|
|
-// return Common::return_success('成功',$retrun_data);
|
|
|
-// }
|
|
|
-// } else {
|
|
|
-// Db::rollback();
|
|
|
-// return Common::return_error($order['return_msg']);
|
|
|
-// }
|
|
|
-// break;
|
|
|
- }
|
|
|
- case 'zfb':
|
|
|
- $zfb = new AliPay();//实例化支付宝支付控制器
|
|
|
- $body = '全民创商品支付';//支付说明
|
|
|
- $out_trade_no = $order_no;//订单号
|
|
|
- $total_fee = $difference_money;//支付金额
|
|
|
- $notify_url = 'http://'.$_SERVER['SERVER_NAME'].'/api/pay/alipay_order';//回调地址
|
|
|
- $order = $zfb->aliPay($body, $total_fee, $out_trade_no, $notify_url);//调用支付宝支付的方法
|
|
|
- $retrun_data['order_no'] = $order_no;
|
|
|
- $retrun_data['pay'] = $order;
|
|
|
- Db::commit();
|
|
|
- return Common::return_success('成功',$retrun_data);
|
|
|
- break;
|
|
|
- }
|
|
|
- }
|
|
|
- break;
|
|
|
- case 'weixin':
|
|
|
- if ($coupon_id){
|
|
|
- $coupon = self::checkCoupon($user['id'],$coupon_id,$price);
|
|
|
- if (!$coupon) return Common::return_error('优惠券不可用');
|
|
|
- $coupon_price = $coupon['coupon_price'];
|
|
|
- $price2 = bcsub($price,$coupon_price,2);
|
|
|
- $difference_money = $price2;
|
|
|
- }else{
|
|
|
- $difference_money = 0;
|
|
|
- $coupon_price = 0;
|
|
|
- $price2 = $price;
|
|
|
- }
|
|
|
-
|
|
|
- self::where('order_no',$order_no)->update(['pay_type'=>$pay_type,'coupon_price'=>$coupon_price,'difference_money'=>$difference_money,'all_money'=>$price]);
|
|
|
-
|
|
|
- $wx = new WxPay();//实例化微信torganizationid支付控制器
|
|
|
-
|
|
|
- $body = '订单号' . $order_no;//支付说明
|
|
|
- $total_fee = $price2 * 100;//支付金额(乘以100)
|
|
|
- $notify_url = 'https://'.$_SERVER['SERVER_NAME'].'/api/pay/pay_order';//回调地址
|
|
|
- $out_trade_no = $order_no;//订单号
|
|
|
- if ($come=='weixin'){
|
|
|
- $config = $wx->retrunconfig();
|
|
|
- $config['notify_url'] = $notify_url;
|
|
|
- //dump($config);die;
|
|
|
- $app = Factory::payment($config);
|
|
|
- $trade_type = "JSAPI";
|
|
|
- $order = $app->order->unify([
|
|
|
- 'body' => $body,
|
|
|
- 'out_trade_no' => $out_trade_no,
|
|
|
- 'total_fee' => $total_fee,
|
|
|
- 'trade_type' => $trade_type, // JSAPI--JSAPI支付(或小程序支付)、NATIVE--Native支付、APP--app支付,MWEB--H5支付
|
|
|
- 'openid' => $openid,
|
|
|
- ]);
|
|
|
- if ($order['return_msg']=='OK'){
|
|
|
- if ($order['result_code']=='FAIL'){
|
|
|
- Db::rollback();
|
|
|
- return Common::return_error($order['err_code_des']);
|
|
|
- }else{
|
|
|
- $order1 = $app->jssdk->bridgeConfig($order['prepay_id']);//执行二次签名返回参数
|
|
|
- self::where('order_no',$order_no)->update(['wx_order'=>$order1]);
|
|
|
- $retrun_data['order_no'] = $order_no;
|
|
|
- $retrun_data['pay'] = json_decode($order1,true);
|
|
|
- Db::commit();
|
|
|
- return Common::return_success('成功',$retrun_data);
|
|
|
- }
|
|
|
- } else {
|
|
|
- Db::rollback();
|
|
|
- return Common::return_error($order['return_msg']);
|
|
|
- }
|
|
|
- break;
|
|
|
- }else{
|
|
|
- $config = $wx->retrunconfig2();
|
|
|
-
|
|
|
- try{
|
|
|
- $app = Factory::payment($config);
|
|
|
- $result = $app->order->unify([
|
|
|
- 'body' => $body,
|
|
|
- 'out_trade_no' => $out_trade_no,
|
|
|
- 'total_fee' => $total_fee,
|
|
|
- 'notify_url' => $notify_url, // 支付结果通知网址,如果不设置则会使用配置里的默认地址
|
|
|
- 'trade_type' => 'APP', // 请对应换成你的支付方式对应的值类型
|
|
|
- ]);
|
|
|
-
|
|
|
- $jssdk = $app->jssdk;
|
|
|
- $order1 = $jssdk->appConfig($result['prepay_id']);
|
|
|
- self::where('order_no',$order_no)->update(['wx_order'=>json_encode($order1,true)]);
|
|
|
- Db::commit();
|
|
|
- $retrun_data['order_no'] = $order_no;
|
|
|
- $retrun_data['pay'] = $order1;
|
|
|
- return Common::return_success('成功',$retrun_data);
|
|
|
-
|
|
|
- }catch (Exception $e){
|
|
|
- Db::rollback();
|
|
|
- return Common::return_error($order['return_msg']);
|
|
|
- }
|
|
|
- break;
|
|
|
-
|
|
|
-
|
|
|
- //app微信支付
|
|
|
-// $order = $wx->getPrePayOrder($body, $out_trade_no, $total_fee, $notify_url,$come,$openid);//调用微信支付的方法
|
|
|
-// if ($order['return_msg']=='OK'){
|
|
|
-// if ($order['result_code']=='FAIL'){
|
|
|
-// Db::rollback();
|
|
|
-// return Common::return_error($order['err_code_des']);
|
|
|
-// }else{
|
|
|
-// $order1 = $wx->getOrder($order['prepay_id']);//执行二次签名返回参数
|
|
|
-// self::where('order_no',$order_no)->update(['wx_order'=>json_encode($order1,true)]);
|
|
|
-// $retrun_data['order_no'] = $order_no;
|
|
|
-// $retrun_data['pay'] = $order1;
|
|
|
-// Db::commit();
|
|
|
-// return Common::return_success('成功',$retrun_data);
|
|
|
-// }
|
|
|
-// } else {
|
|
|
-// Db::rollback();
|
|
|
-// return Common::return_error($order['return_msg']);
|
|
|
-// }
|
|
|
-// break;
|
|
|
- }
|
|
|
-
|
|
|
- case 'zfb':
|
|
|
- if ($coupon_id){
|
|
|
- $coupon = self::checkCoupon($user['id'],$coupon_id,$price);
|
|
|
- if (!$coupon) return Common::return_error('优惠券不可用');
|
|
|
- $coupon_price = $coupon['coupon_price'];
|
|
|
- $price2 = bcsub($price,$coupon_price,2);
|
|
|
- $difference_money = $price2;
|
|
|
- }else{
|
|
|
- $difference_money = 0;
|
|
|
- $coupon_price = 0;
|
|
|
- $price2 = $price;
|
|
|
- }
|
|
|
- self::where('order_no',$order_no)->update(['pay_type'=>$pay_type,'coupon_price'=>$coupon_price,'difference_money'=>$difference_money,'all_money'=>$price]);
|
|
|
- $zfb = new AliPay();//实例化支付宝支付控制器
|
|
|
- $body = '全民创商品支付';//支付说明
|
|
|
- $out_trade_no = $order_no;//订单号
|
|
|
- $total_fee = $price2;//支付金额(乘以100)
|
|
|
- $notify_url = 'http://'.$_SERVER['SERVER_NAME'].'/api/pay/alipay_order';//回调地址
|
|
|
- $order = $zfb->aliPay($body, $total_fee, $out_trade_no, $notify_url);//调用支付宝支付的方法
|
|
|
- $retrun_data['order_no'] = $order_no;
|
|
|
- $retrun_data['pay'] = $order;
|
|
|
- Db::commit();
|
|
|
- return Common::return_success('成功',$retrun_data);
|
|
|
- break;
|
|
|
- }
|
|
|
- }catch (Exception $e) {
|
|
|
- Db::rollback();
|
|
|
- return Common::return_error('失败');
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * 下单(加油站商品)
|
|
|
- */
|
|
|
- public static function setStationOrder($product_id,$num,$pay_type,$price,$difference_pay_type,$specifications,$coupon_id,$come,$pay_pass=''){
|
|
|
- $user = app()->session->get('us');
|
|
|
- $data['user_id'] = $user['id'];
|
|
|
- $order_no = Common::getNewOrderId($user['id']);
|
|
|
- $data['order_no'] = $order_no;
|
|
|
- $data['total_num'] = $num;
|
|
|
- $verify_code = self::nonceStr();
|
|
|
- $data['verify_code'] = $verify_code;
|
|
|
- $data['verify_code_img'] = Common::generate_qrcode($verify_code);
|
|
|
- $data['product_id'] = $product_id;
|
|
|
- $prodcut = Product::where('id',$product_id)->where('is_del',1)->find();
|
|
|
- if (!$prodcut)
|
|
|
- return Common::return_error('商品不存在');
|
|
|
- $prodcut = $prodcut->toArray();
|
|
|
- $data['merch_id'] = $prodcut['merch_id'];
|
|
|
- $data['price'] = $price;
|
|
|
- $data['pay_type'] = $pay_type;
|
|
|
- //获取商家的类别
|
|
|
- $type = UserMerchInfo::where('a.id',$prodcut['merch_id'])->alias('a')->join('Category b','a.category_one_id=b.id')->field('b.type,b.proportion')->find();
|
|
|
- if ($type['type']!=2){
|
|
|
- return Common::return_error('商品信息错误,无法下单');
|
|
|
- }
|
|
|
-
|
|
|
- if ($pay_type=='yue'){
|
|
|
- if (!$difference_pay_type){
|
|
|
- $password = User::where('id',$user['id'])->value('with_password');
|
|
|
- if ($password!=md5($pay_pass)) return Common::return_error('支付密码错误');
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- $openid = User::where('id',$user['id'])->value('openid');
|
|
|
-
|
|
|
- $order_sn = date('YmdHis').rand(1000, 9999);//商户订单号;
|
|
|
- $data['merch_order_no'] = $order_sn;
|
|
|
- $data['type'] = $type['type'];
|
|
|
- $merch_proportion = $type['proportion'];
|
|
|
- $data['merch_proportion'] = $merch_proportion;
|
|
|
- $merch_proportion_money = sprintf("%.2f",substr(sprintf("%.4f", ($price*($merch_proportion/100))), 0, -2));
|
|
|
- $data['merch_proportion_money'] = $merch_proportion_money;
|
|
|
- $data['merch_money'] = $price-$merch_proportion_money;
|
|
|
- $data['coupon_id'] = $coupon_id ? $coupon_id : 0;
|
|
|
- $data['mp3_url'] = self::hecheng($price,$pay_type);
|
|
|
- Db::startTrans();
|
|
|
- try {
|
|
|
- $order = self::create($data);
|
|
|
- $order_id = $order->id;
|
|
|
- $order_info = array();
|
|
|
- $order_info['order_id'] = $order->id;
|
|
|
- $order_info['product_id'] = $product_id;
|
|
|
- $prodcut['product_name'] = $prodcut['product_name'].$specifications;
|
|
|
- $order_info['info'] = json_encode($prodcut,true);
|
|
|
- OrderInfo::create($order_info);
|
|
|
- Common::order_status($order_id,'订单生成');
|
|
|
- switch ($pay_type){
|
|
|
- case 'yue':
|
|
|
- $userinfo = User::get($user['id']);
|
|
|
- //获取手续费
|
|
|
- $poundage_proportion = Config::get_values('poundage_proportion'); //手续费百分比
|
|
|
- $user_money_proportion = sprintf("%.2f",substr(sprintf("%.4f", ($price * ($poundage_proportion/100))), 0, -2)); //保留两位小数,不四舍五入; 手续费
|
|
|
- $all_price = $price + $user_money_proportion;
|
|
|
- if ($userinfo->money >= $all_price){
|
|
|
- if ($coupon_id){
|
|
|
- $coupon = self::checkCoupon($user['id'],$coupon_id,$all_price);
|
|
|
- $coupon_price = $coupon['coupon_price'];
|
|
|
- $yue_money = bcsub($all_price,$coupon_price,2);
|
|
|
- }else{
|
|
|
- $coupon_price = 0;
|
|
|
- $yue_money = $all_price;
|
|
|
- }
|
|
|
- //余额支付
|
|
|
- User::money($yue_money,$user['id'],'订单支付'.$yue_money.'元');
|
|
|
- self::where('id',$order_id)->update(['yue_money'=>$yue_money,'coupon_price'=>$coupon_price,'poundage_proportion'=>$poundage_proportion,'proportion'=>$user_money_proportion,'all_money'=>$all_price,'status'=>1,'pay_time'=>time()]);
|
|
|
-// //余额支付
|
|
|
-// User::money($all_price,$user['id'],'订单支付'.$all_price.'元');
|
|
|
-// self::where('id',$order_id)->update(['yue_money'=>$all_price,'poundage_proportion'=>$poundage_proportion,'proportion'=>$user_money_proportion,'all_money'=>$all_price,'status'=>1,'pay_time'=>time()]);
|
|
|
- Db::commit();
|
|
|
- Common::order_status($order_id,'余额支付成功');
|
|
|
- $retrun_data['order_no'] = $order_no;
|
|
|
- $retrun_data['pay'] = 'yue';
|
|
|
- return Common::return_success('支付成功',$retrun_data);
|
|
|
- }else{
|
|
|
- $user_money_proportion = sprintf("%.2f",substr(sprintf("%.4f", ($userinfo->money * ($poundage_proportion/100))), 0, -2)); //保留两位小数,不四舍五入; 手续费
|
|
|
- $all_price = $price + $user_money_proportion;
|
|
|
- $difference_money = sprintf("%.2f", $all_price - $userinfo->money); //差价
|
|
|
- if ($coupon_id){
|
|
|
- $coupon = self::checkCoupon($user['id'],$coupon_id,$difference_money);
|
|
|
- $coupon_price = $coupon['coupon_price'];
|
|
|
- $difference_money = bcsub($difference_money,$coupon_price,2);
|
|
|
- }else{
|
|
|
- $coupon_price = 0;
|
|
|
- }
|
|
|
- self::where('id',$order_id)->update(['yue_money'=>$userinfo->money,'coupon_price'=>$coupon_price,'poundage_proportion'=>$poundage_proportion,'proportion'=>$user_money_proportion,'difference_money'=>$difference_money,'all_money'=>$all_price,'pay_type'=>$difference_pay_type]);
|
|
|
- //self::where('id',$order_id)->update(['yue_money'=>$userinfo->money,'poundage_proportion'=>$poundage_proportion,'proportion'=>$user_money_proportion,'difference_money'=>$difference_money,'all_money'=>$all_price,'pay_type'=>$difference_pay_type]);
|
|
|
- switch ($difference_pay_type){
|
|
|
- case 'weixin':
|
|
|
- //微信支付
|
|
|
- $wx = new WxPay();//实例化微信支付控制器
|
|
|
- $body = '订单号' . $order_no;//支付说明
|
|
|
- $out_trade_no = $order_no;//订单号
|
|
|
- $total_fee = $difference_money * 100;//支付金额(乘以100)
|
|
|
- $notify_url = 'https://'.$_SERVER['SERVER_NAME'].'/api/pay/pay_order';//回调地址
|
|
|
- if ($come=='weixin'){
|
|
|
- $config = $wx->retrunconfig();
|
|
|
- $config['notify_url'] = $notify_url;
|
|
|
-
|
|
|
- $app = Factory::payment($config);
|
|
|
- $trade_type = "JSAPI";
|
|
|
- $order = $app->order->unify([
|
|
|
- 'body' => $body,
|
|
|
- 'out_trade_no' => $out_trade_no,
|
|
|
- 'total_fee' => $total_fee,
|
|
|
- 'trade_type' => $trade_type, // JSAPI--JSAPI支付(或小程序支付)、NATIVE--Native支付、APP--app支付,MWEB--H5支付
|
|
|
- 'openid' => $openid,
|
|
|
- ]);
|
|
|
- if ($order['return_msg']=='OK'){
|
|
|
- if ($order['result_code']=='FAIL'){
|
|
|
- Db::rollback();
|
|
|
- return Common::return_error($order['err_code_des']);
|
|
|
- }else{
|
|
|
- $order1 = $app->jssdk->bridgeConfig($order['prepay_id']);//执行二次签名返回参数
|
|
|
- self::where('order_no',$order_no)->update(['wx_order'=>$order1]);
|
|
|
- $retrun_data['order_no'] = $order_no;
|
|
|
- $retrun_data['pay'] = json_decode($order1,true);
|
|
|
- Db::commit();
|
|
|
- return Common::return_success('成功',$retrun_data);
|
|
|
- }
|
|
|
- } else {
|
|
|
- Db::rollback();
|
|
|
- return Common::return_error($order['return_msg']);
|
|
|
- }
|
|
|
- break;
|
|
|
- }else{
|
|
|
-
|
|
|
- $config = $wx->retrunconfig2();
|
|
|
-
|
|
|
- try{
|
|
|
- $app = Factory::payment($config);
|
|
|
- $result = $app->order->unify([
|
|
|
- 'body' => $body,
|
|
|
- 'out_trade_no' => $out_trade_no,
|
|
|
- 'total_fee' => $total_fee,
|
|
|
- 'notify_url' => $notify_url, // 支付结果通知网址,如果不设置则会使用配置里的默认地址
|
|
|
- 'trade_type' => 'APP', // 请对应换成你的支付方式对应的值类型
|
|
|
- ]);
|
|
|
- $jssdk = $app->jssdk;
|
|
|
- $order1 = $jssdk->appConfig($result['prepay_id']);
|
|
|
- self::where('order_no',$order_no)->update(['wx_order'=>json_encode($order1,true)]);
|
|
|
- Db::commit();
|
|
|
- $retrun_data['order_no'] = $order_no;
|
|
|
- $retrun_data['pay'] = $order1;
|
|
|
- return Common::return_success('成功',$retrun_data);
|
|
|
-
|
|
|
- }catch (Exception $e){
|
|
|
- Db::rollback();
|
|
|
- return Common::return_error($order['return_msg']);
|
|
|
- }
|
|
|
- break;
|
|
|
-
|
|
|
-// $order = $wx->getPrePayOrder($body, $out_trade_no, $total_fee, $notify_url,$come,$openid);//调用微信支付的方法
|
|
|
-// if ($order['return_msg']=='OK'){
|
|
|
-// if ($order['result_code']=='FAIL'){
|
|
|
-// Db::rollback();
|
|
|
-// return Common::return_error($order['err_code_des']);
|
|
|
-// }else{
|
|
|
-// $order1 = $wx->getOrder($order['prepay_id']);//执行二次签名返回参数
|
|
|
-// self::where('order_no',$order_no)->update(['wx_order'=>json_encode($order1,true)]);
|
|
|
-// $retrun_data['order_no'] = $order_no;
|
|
|
-// $retrun_data['pay'] = $order1;
|
|
|
-// Db::commit();
|
|
|
-// return Common::return_success('成功',$retrun_data);
|
|
|
-// }
|
|
|
-// } else {
|
|
|
-// Db::rollback();
|
|
|
-// return Common::return_error($order['return_msg']);
|
|
|
-// }
|
|
|
-// break;
|
|
|
- }
|
|
|
- case 'zfb':
|
|
|
- $zfb = new AliPay();//实例化支付宝支付控制器
|
|
|
- $body = '全民创商品支付';//支付说明
|
|
|
- $out_trade_no = $order_no;//订单号
|
|
|
- $total_fee = $difference_money * 100;//支付金额(乘以100)
|
|
|
- $notify_url = 'http://'.$_SERVER['SERVER_NAME'].'/api/pay/alipay_order';//回调地址
|
|
|
- $order = $zfb->aliPay($body, $total_fee, $out_trade_no, $notify_url);//调用支付宝支付的方法
|
|
|
- $retrun_data['order_no'] = $order_no;
|
|
|
- $retrun_data['pay'] = $order;
|
|
|
- Db::commit();
|
|
|
- return Common::return_success('成功',$retrun_data);
|
|
|
- break;
|
|
|
- }
|
|
|
- }
|
|
|
- break;
|
|
|
- case 'weixin':
|
|
|
- if ($coupon_id){
|
|
|
- $coupon = self::checkCoupon($user['id'],$coupon_id,$price);
|
|
|
- $coupon_price = $coupon['coupon_price'];
|
|
|
- $price = bcsub($price,$coupon_price,2);
|
|
|
- $difference_money = $price;
|
|
|
- }else{
|
|
|
- $difference_money = 0;
|
|
|
- $coupon_price = 0;
|
|
|
- }
|
|
|
- self::where('order_no',$order_no)->update(['pay_type'=>$pay_type,'coupon_price'=>$coupon_price,'difference_money'=>$difference_money,'all_money'=>$price]);
|
|
|
- //self::where('order_no',$order_no)->update(['pay_type'=>$pay_type,'all_money'=>$price]);
|
|
|
- //微信支付
|
|
|
- $wx = new WxPay();//实例化微信支付控制器
|
|
|
- $body = '订单号' . $order_no;//支付说明
|
|
|
- $out_trade_no = $order_no;//订单号
|
|
|
- $total_fee = $price * 100;//支付金额(乘以100)
|
|
|
- $notify_url = 'https://'.$_SERVER['SERVER_NAME'].'/api/pay/pay_order';//回调地址
|
|
|
- if ($come=='weixin'){
|
|
|
- $config = $wx->retrunconfig();
|
|
|
- $config['notify_url'] = $notify_url;
|
|
|
-
|
|
|
- $app = Factory::payment($config);
|
|
|
- $trade_type = "JSAPI";
|
|
|
- $order = $app->order->unify([
|
|
|
- 'body' => $body,
|
|
|
- 'out_trade_no' => $out_trade_no,
|
|
|
- 'total_fee' => $total_fee,
|
|
|
- 'trade_type' => $trade_type, // JSAPI--JSAPI支付(或小程序支付)、NATIVE--Native支付、APP--app支付,MWEB--H5支付
|
|
|
- 'openid' => $openid,
|
|
|
- ]);
|
|
|
- if ($order['return_msg']=='OK'){
|
|
|
- if ($order['result_code']=='FAIL'){
|
|
|
- Db::rollback();
|
|
|
- return Common::return_error($order['err_code_des']);
|
|
|
- }else{
|
|
|
- $order1 = $app->jssdk->bridgeConfig($order['prepay_id']);//执行二次签名返回参数
|
|
|
- self::where('order_no',$order_no)->update(['wx_order'=>$order1]);
|
|
|
- $retrun_data['order_no'] = $order_no;
|
|
|
- $retrun_data['pay'] = json_decode($order1,true);
|
|
|
- Db::commit();
|
|
|
- return Common::return_success('成功',$retrun_data);
|
|
|
- }
|
|
|
- } else {
|
|
|
- Db::rollback();
|
|
|
- return Common::return_error($order['return_msg']);
|
|
|
- }
|
|
|
- break;
|
|
|
- }else{
|
|
|
- $config = $wx->retrunconfig2();
|
|
|
-
|
|
|
- try{
|
|
|
- $app = Factory::payment($config);
|
|
|
- $result = $app->order->unify([
|
|
|
- 'body' => $body,
|
|
|
- 'out_trade_no' => $out_trade_no,
|
|
|
- 'total_fee' => $total_fee,
|
|
|
- 'notify_url' => $notify_url, // 支付结果通知网址,如果不设置则会使用配置里的默认地址
|
|
|
- 'trade_type' => 'APP', // 请对应换成你的支付方式对应的值类型
|
|
|
- ]);
|
|
|
- $jssdk = $app->jssdk;
|
|
|
- $order1 = $jssdk->appConfig($result['prepay_id']);
|
|
|
- self::where('order_no',$order_no)->update(['wx_order'=>json_encode($order1,true)]);
|
|
|
- Db::commit();
|
|
|
- $retrun_data['order_no'] = $order_no;
|
|
|
- $retrun_data['pay'] = $order1;
|
|
|
- return Common::return_success('成功',$retrun_data);
|
|
|
-
|
|
|
- }catch (Exception $e){
|
|
|
- Db::rollback();
|
|
|
- return Common::return_error($order['return_msg']);
|
|
|
- }
|
|
|
- break;
|
|
|
-// $order = $wx->getPrePayOrder($body, $out_trade_no, $total_fee, $notify_url,$come,$openid);//调用微信支付的方法
|
|
|
-// if ($order['return_msg']=='OK'){
|
|
|
-// if ($order['result_code']=='FAIL'){
|
|
|
-// Db::rollback();
|
|
|
-// return Common::return_error($order['err_code_des']);
|
|
|
-// }else{
|
|
|
-// $order1 = $wx->getOrder($order['prepay_id']);//执行二次签名返回参数
|
|
|
-// self::where('order_no',$order_no)->update(['wx_order'=>json_encode($order1,true)]);
|
|
|
-// $retrun_data['order_no'] = $order_no;
|
|
|
-// $retrun_data['pay'] = $order1;
|
|
|
-// Db::commit();
|
|
|
-// return Common::return_success('成功',$retrun_data);
|
|
|
-// }
|
|
|
-// } else {
|
|
|
-// Db::rollback();
|
|
|
-// return Common::return_error($order['return_msg']);
|
|
|
-// }
|
|
|
-// break;
|
|
|
- }
|
|
|
- case 'zfb':
|
|
|
- if ($coupon_id){
|
|
|
- $coupon = self::checkCoupon($user['id'],$coupon_id,$price);
|
|
|
- $coupon_price = $coupon['coupon_price'];
|
|
|
- $price = bcsub($price,$coupon_price,2);
|
|
|
- $difference_money = $price;
|
|
|
- }else{
|
|
|
- $difference_money = 0;
|
|
|
- $coupon_price = 0;
|
|
|
- }
|
|
|
- self::where('order_no',$order_no)->update(['pay_type'=>$pay_type,'coupon_price'=>$coupon_price,'difference_money'=>$difference_money,'all_money'=>$price]);
|
|
|
- //self::where('order_no',$order_no)->update(['pay_type'=>$pay_type,'all_money'=>$price]);
|
|
|
- $zfb = new AliPay();//实例化支付宝支付控制器
|
|
|
- $body = '全民创商品支付';//支付说明
|
|
|
- $out_trade_no = $order_no;//订单号
|
|
|
- $total_fee = $price;//支付金额(乘以100)
|
|
|
- $notify_url = 'http://'.$_SERVER['SERVER_NAME'].'/api/pay/alipay_order';//回调地址
|
|
|
- $order = $zfb->aliPay($body, $total_fee, $out_trade_no, $notify_url);//调用支付宝支付的方法
|
|
|
- $retrun_data['order_no'] = $order_no;
|
|
|
- $retrun_data['pay'] = $order;
|
|
|
- Db::commit();
|
|
|
- return Common::return_success('成功',$retrun_data);
|
|
|
- break;
|
|
|
- }
|
|
|
- }catch (Exception $e) {
|
|
|
- Db::rollback();
|
|
|
- return Common::return_error('失败');
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- /**
|
|
|
- * 支付
|
|
|
- */
|
|
|
- public static function payOrder($order_no,$come){
|
|
|
- $user = app()->session->get('us');
|
|
|
- $order = self::where('order_no',$order_no)->where('user_id',$user['id'])->find();
|
|
|
- if (!$order)
|
|
|
- return Common::return_error('订单不存在');
|
|
|
- $order = $order->toArray();
|
|
|
- if ($order['status'])
|
|
|
- return Common::return_error('订单已支付');
|
|
|
- $product = Product::where('id',$order['product_id'])->where('is_del',1)->find();
|
|
|
- if (!$product)
|
|
|
- return Common::return_error('商品不存在');
|
|
|
-
|
|
|
- $userinfo = User::get($user['id']);
|
|
|
- if ($order['yue_money']){
|
|
|
- if ($userinfo->money<$order['yue_money']){
|
|
|
- return Common::return_error('余额不足');
|
|
|
- }
|
|
|
- }
|
|
|
- $openid = User::where('id',$user['id'])->value('openid');
|
|
|
- $pay_type = $order['pay_type'];
|
|
|
- $price = $order['difference_money'] > 0 ? $order['difference_money'] : $order['all_money'];
|
|
|
- switch ($pay_type){
|
|
|
- case 'weixin':
|
|
|
- Db::startTrans();
|
|
|
- self::where('order_no',$order_no)->update(['pay_type'=>$pay_type]);
|
|
|
- //微信支付
|
|
|
- $wx = new WxPay();//实例化微信支付控制器
|
|
|
- $body = '订单号' . $order_no;//支付说明
|
|
|
- $out_trade_no = $order_no;//订单号
|
|
|
- $total_fee = $price * 100;//支付金额(乘以100)
|
|
|
- $notify_url = 'https://'.$_SERVER['SERVER_NAME'].'/api/pay/pay_order';//回调地址
|
|
|
- if ($come=='weixin'){
|
|
|
- $config = $wx->retrunconfig();
|
|
|
- $config['notify_url'] = $notify_url;
|
|
|
-
|
|
|
- $app = Factory::payment($config);
|
|
|
- $trade_type = "JSAPI";
|
|
|
- $order = $app->order->unify([
|
|
|
- 'body' => $body,
|
|
|
- 'out_trade_no' => $out_trade_no,
|
|
|
- 'total_fee' => $total_fee,
|
|
|
- 'trade_type' => $trade_type, // JSAPI--JSAPI支付(或小程序支付)、NATIVE--Native支付、APP--app支付,MWEB--H5支付
|
|
|
- 'openid' => $openid,
|
|
|
- ]);
|
|
|
- if ($order['return_msg']=='OK'){
|
|
|
- if ($order['result_code']=='FAIL'){
|
|
|
- Db::rollback();
|
|
|
- return Common::return_error($order['err_code_des']);
|
|
|
- }else{
|
|
|
- $order1 = $app->jssdk->bridgeConfig($order['prepay_id']);//执行二次签名返回参数
|
|
|
- self::where('order_no',$order_no)->update(['wx_order'=>$order1]);
|
|
|
- $retrun_data['order_no'] = $order_no;
|
|
|
- $retrun_data['pay'] = json_decode($order1,true);
|
|
|
- Db::commit();
|
|
|
- return Common::return_success('成功',$retrun_data);
|
|
|
- }
|
|
|
- } else {
|
|
|
- Db::rollback();
|
|
|
- return Common::return_error($order['return_msg']);
|
|
|
- }
|
|
|
- break;
|
|
|
- }else{
|
|
|
- $config = $wx->retrunconfig2();
|
|
|
-
|
|
|
- try{
|
|
|
- $app = Factory::payment($config);
|
|
|
- $result = $app->order->unify([
|
|
|
- 'body' => $body,
|
|
|
- 'out_trade_no' => $out_trade_no,
|
|
|
- 'total_fee' => $total_fee,
|
|
|
- 'notify_url' => $notify_url, // 支付结果通知网址,如果不设置则会使用配置里的默认地址
|
|
|
- 'trade_type' => 'APP', // 请对应换成你的支付方式对应的值类型
|
|
|
- ]);
|
|
|
- $jssdk = $app->jssdk;
|
|
|
- $order1 = $jssdk->appConfig($result['prepay_id']);
|
|
|
- self::where('order_no',$order_no)->update(['wx_order'=>json_encode($order1,true)]);
|
|
|
- Db::commit();
|
|
|
- $retrun_data['order_no'] = $order_no;
|
|
|
- $retrun_data['pay'] = $order1;
|
|
|
- return Common::return_success('成功',$retrun_data);
|
|
|
-
|
|
|
- }catch (Exception $e){
|
|
|
- Db::rollback();
|
|
|
- return Common::return_error($order['return_msg']);
|
|
|
- }
|
|
|
- break;
|
|
|
-// $order = $wx->getPrePayOrder($body, $out_trade_no, $total_fee, $notify_url,$come,$openid);//调用微信支付的方法
|
|
|
-// if ($order['return_msg']=='OK'){
|
|
|
-// if ($order['result_code']=='FAIL'){
|
|
|
-// Db::rollback();
|
|
|
-// return Common::return_error($order['err_code_des']);
|
|
|
-// }else{
|
|
|
-// $order1 = $wx->getOrder($order['prepay_id']);//执行二次签名返回参数
|
|
|
-// self::where('order_no',$order_no)->update(['wx_order'=>json_encode($order1,true)]);
|
|
|
-// $retrun_data['order_no'] = $order_no;
|
|
|
-// $retrun_data['pay'] = $order1;
|
|
|
-// Db::commit();
|
|
|
-// return Common::return_success('成功',$retrun_data);
|
|
|
-// }
|
|
|
-// } else {
|
|
|
-// Db::rollback();
|
|
|
-// return Common::return_error($order['return_msg']);
|
|
|
-// }
|
|
|
-// break;
|
|
|
- }
|
|
|
- case 'zfb':
|
|
|
- $zfb = new AliPay();//实例化支付宝支付控制器
|
|
|
- $body = '商品支付';//支付说明
|
|
|
- $out_trade_no = $order_no;//订单号
|
|
|
- $total_fee = $price;//支付金额(乘以100)
|
|
|
- $notify_url = 'http://'.$_SERVER['SERVER_NAME'].'/api/pay/alipay_order';//回调地址
|
|
|
- $order = $zfb->aliPay($body, $total_fee, $out_trade_no, $notify_url);//调用支付宝支付的方法
|
|
|
- $retrun_data['order_no'] = $order_no;
|
|
|
- $retrun_data['pay'] = $order;
|
|
|
- Db::commit();
|
|
|
- return Common::return_success('成功',$retrun_data);
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- /**
|
|
|
- * 支付成功修改订单状态
|
|
|
- */
|
|
|
- public static function paySuccess($order_no,$result,$status=1){
|
|
|
- $order = self::where('order_no',$order_no)->find();
|
|
|
- if ($order['type']==1 && $order['status']==1)
|
|
|
- return Common::return_error('已成功修改订单');
|
|
|
- if ($order['type']==2 && $order['status']==2)
|
|
|
- return Common::return_error('已成功修改订单');
|
|
|
- $product = Product::where('id',$order['product_id'])->find();
|
|
|
- Db::startTrans();
|
|
|
- try {
|
|
|
- if ($order['type']==1)
|
|
|
- $order->status = 1; //修改状态 待使用
|
|
|
- elseif ($order['type']==2)
|
|
|
- $order->status = 2; //修改状态 待评价
|
|
|
- $order->pay_time = time();
|
|
|
- $order->return_success_info = json_encode($result,true);
|
|
|
- $order->save();
|
|
|
- if ($order['pay_type']=='weixin' || $order['pay_type']=='zfb'){
|
|
|
- if ($order['yue_money'] > 0){
|
|
|
- //扣除余额
|
|
|
- User::money($order['yue_money'],$order['user_id'],'订单支付'.$order['yue_money'].'元');
|
|
|
- }
|
|
|
- }
|
|
|
- //更新销量
|
|
|
- $product->sales = $product->sales+$order['total_num'];
|
|
|
- $product->save();
|
|
|
- Db::commit();
|
|
|
- if ($status == 1)
|
|
|
- $zf = '微信支付成功';
|
|
|
- elseif ($status ==2)
|
|
|
- $zf = '支付宝支付成功';
|
|
|
- Common::order_status($order['id'],$zf);
|
|
|
- if ($order['type']==2){
|
|
|
- self::tuijianBonus($order['id'],1); //利润分成
|
|
|
- self::merch($order['id']); //商家打款
|
|
|
- }
|
|
|
- return Common::return_success('支付成功');
|
|
|
- }catch (Exception $e) {
|
|
|
- Db::rollback();
|
|
|
- return Common::return_error('支付失败');
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- /**
|
|
|
- * 订单列表
|
|
|
- */
|
|
|
- public static function orderList($type,$keywords,$Nowpage,$limits){
|
|
|
- $user = app()->session->get('us');
|
|
|
- $count = self::orderByWhere($type,$user['id'],$keywords)->alias('a')
|
|
|
- ->join('UserMerchInfo b','a.merch_id=b.id')
|
|
|
- ->join('User c','b.user_id=c.id')
|
|
|
- ->leftJoin('Product d','a.product_id=d.id')
|
|
|
- ->count();
|
|
|
- $list = self::orderByWhere($type,$user['id'],$keywords)
|
|
|
- ->alias('a')
|
|
|
- ->join('UserMerchInfo b','a.merch_id=b.id')
|
|
|
- ->join('User c','b.user_id=c.id')
|
|
|
- ->leftJoin('Product d','a.product_id=d.id')
|
|
|
- ->field('a.*,b.name as merch_name,c.headimg as merch_headimg')
|
|
|
- ->order('a.id desc')
|
|
|
- ->page($Nowpage,$limits)
|
|
|
- ->select();
|
|
|
- if ($list){
|
|
|
- $list = $list->toArray();
|
|
|
- foreach ($list as $k=>$v){
|
|
|
- if ($v['order_type']==1){
|
|
|
- $product = OrderInfo::where('order_id',$v['id'])->find()->toArray();
|
|
|
- $info = json_decode($product['info'],true);
|
|
|
- $list[$k]['product_name'] = $info['product_name'];
|
|
|
- $list[$k]['product_img'] = explode(',',$info['imgs'])[0];
|
|
|
- }else{
|
|
|
- $list[$k]['product_name'] = '';
|
|
|
- $list[$k]['product_img'] = '';
|
|
|
- }
|
|
|
- $refund = OrderRefund::where('order_id',$v['id'])->order('id desc')->limit(1)->find();
|
|
|
- if ($refund)
|
|
|
- $refund = $refund->toArray();
|
|
|
- else
|
|
|
- $refund = [];
|
|
|
- $list[$k]['refund'] = $refund;
|
|
|
- }
|
|
|
- }else{
|
|
|
- $list = [];
|
|
|
- }
|
|
|
- return Common::return_success('成功',compact('count','list'));
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * 订单条件
|
|
|
- */
|
|
|
- public static function orderByWhere($type,$user_id,$keywords){
|
|
|
- $model = new self;
|
|
|
- if ($type == -1){
|
|
|
- //全部
|
|
|
- if ($keywords)
|
|
|
- return $model->where('a.user_id',$user_id)->where('a.is_del',1)->where('b.name|d.product_name','like','%'.$keywords.'%');
|
|
|
- return $model->where('a.user_id',$user_id)->where('a.is_del',1);
|
|
|
- }elseif ($type == 4){
|
|
|
- if ($keywords)
|
|
|
- return $model->where('a.user_id',$user_id)->where('a.is_del',1)->where('a.status','in','-1,-2')->where('b.name|d.product_name','like','%'.$keywords.'%');
|
|
|
- return $model->where('a.user_id',$user_id)->where('a.is_del',1)->where('a.status','in','-1,-2');
|
|
|
- } else{
|
|
|
- if ($keywords)
|
|
|
- return $model->where('a.user_id',$user_id)->where('a.is_del',1)->where('a.status',$type)->where('b.name|d.product_name','like','%'.$keywords.'%');
|
|
|
- return $model->where('a.user_id',$user_id)->where('a.is_del',1)->where('a.status',$type);
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- /**
|
|
|
- * 订单详情
|
|
|
- */
|
|
|
- public static function orderDetail($order_no){
|
|
|
- $order = self::where('order_no',$order_no)->find();
|
|
|
- if (!$order)
|
|
|
- return Common::return_error('订单不存在');
|
|
|
- $order = $order->toArray();
|
|
|
- if ($order['order_type']==1){
|
|
|
- $product = OrderInfo::where('order_id',$order['id'])->find()->toArray();
|
|
|
- $info = json_decode($product['info'],true);
|
|
|
- $order['product_name'] = $info['product_name'];
|
|
|
- $order['product_img'] = explode(',',$info['imgs'])[0];
|
|
|
- $order['product_info'] = $info['product_info'];
|
|
|
- }else{
|
|
|
- $order['product_name'] = '';
|
|
|
- $order['product_img'] = '';
|
|
|
- $order['product_info'] = '';
|
|
|
- }
|
|
|
- $order['pay_time'] = date('Y-m-d H:i:s',$order['pay_time']);
|
|
|
- $order['address'] = UserMerchInfo::where('id',$order['merch_id'])->value('address');
|
|
|
-
|
|
|
- $merch = UserMerchInfo::where('id',$order['merch_id'])->field('id,name,user_id,capita,imgs,address,lat,log')->find()->toArray();
|
|
|
- $merch['image'] = explode(',',$merch['imgs'])[0];
|
|
|
- $merch['evaluation'] = UserMerchInfo::merchEvaluation($order['merch_id']); //评价几颗星
|
|
|
- $merch['distance'] = Common::getDistance($merch['lat'],$merch['log'])."km"; //距离
|
|
|
- unset($merch['imgs']);
|
|
|
- $order['merch'] = $merch;
|
|
|
-
|
|
|
- $refund = OrderRefund::where('order_id',$order['id'])->where('audit',0)->find();
|
|
|
- if ($refund)
|
|
|
- $refund = $refund->toArray();
|
|
|
- else
|
|
|
- $refund = [];
|
|
|
- $order['refund'] = $refund;
|
|
|
- return Common::return_success('成功',$order);
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * 订单详情
|
|
|
- */
|
|
|
- public static function verifyOrderDetail($verify_code){
|
|
|
- $order = self::where('verify_code',$verify_code)->find();
|
|
|
- if (!$order)
|
|
|
- return Common::return_error('订单不存在');
|
|
|
- $order = $order->toArray();
|
|
|
- $product = OrderInfo::where('order_id',$order['id'])->find()->toArray();
|
|
|
- $info = json_decode($product['info'],true);
|
|
|
- $order['product_name'] = $info['product_name'];
|
|
|
- $order['product_img'] = explode(',',$info['imgs'])[0];
|
|
|
- $order['product_info'] = $info['product_info'];
|
|
|
- $order['pay_time'] = date('Y-m-d H:i:s',$order['pay_time']);
|
|
|
- $order['address'] = UserMerchInfo::where('id',$order['merch_id'])->value('address');
|
|
|
- $refund = OrderRefund::where('order_id',$order['id'])->where('audit',0)->find();
|
|
|
- if ($refund)
|
|
|
- $refund = $refund->toArray();
|
|
|
- else
|
|
|
- $refund = [];
|
|
|
- $order['refund'] = $refund;
|
|
|
- return Common::return_success('成功',$order);
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- /**
|
|
|
- * 订单评价
|
|
|
- */
|
|
|
- public static function evaluationOrder($order_no,$evaluation,$info,$imgs){
|
|
|
- $user = app()->session->get('us');
|
|
|
- $order = self::where('order_no',$order_no)->find();
|
|
|
- if (!$order)
|
|
|
- return Common::return_error('订单不存在');
|
|
|
- if ($order['status']!=2)
|
|
|
- return Common::return_error('订单状态错误');
|
|
|
- $data['user_id'] = $user['id'];
|
|
|
- $data['order_id'] = $order['id'];
|
|
|
- $data['product_id'] = $order['product_id'];
|
|
|
- $data['merch_id'] = $order['merch_id'];
|
|
|
- $data['evaluation'] = $evaluation;
|
|
|
- $data['info'] = $info;
|
|
|
- if ($imgs){
|
|
|
- $imgs = implode(',',$imgs);
|
|
|
- }
|
|
|
- $data['imgs'] = $imgs;
|
|
|
- Db::startTrans();
|
|
|
- try {
|
|
|
- ProductEvaluation::create($data);
|
|
|
- $order->status = 3;
|
|
|
- $order->save();
|
|
|
- Db::commit();
|
|
|
- return Common::return_success('评价成功');
|
|
|
- }catch (Exception $e) {
|
|
|
- Db::rollback();
|
|
|
- return Common::return_error('评价失败');
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * 取消订单
|
|
|
- */
|
|
|
- public static function cancelOrder($order_no){
|
|
|
- $order = self::where('order_no',$order_no)->find();
|
|
|
- if (!$order)
|
|
|
- return Common::return_error('订单不存在');
|
|
|
- if ($order['status'])
|
|
|
- return Common::return_error('订单无法取消');
|
|
|
- Db::startTrans();
|
|
|
- try {
|
|
|
- $order->status = 4;
|
|
|
- $order->save();
|
|
|
- if ($order->coupon_id){
|
|
|
- CouponUser::where('id',$order->coupon_id)->update(['status'=>0]);
|
|
|
- }
|
|
|
- Db::commit();
|
|
|
- return Common::return_success('取消成功');
|
|
|
- }catch (Exception $e) {
|
|
|
- Db::rollback();
|
|
|
- return Common::return_error('取消失败');
|
|
|
- }
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * 删除订单
|
|
|
- */
|
|
|
- public static function delOrder($order_no){
|
|
|
- $order = self::where('order_no',$order_no)->find();
|
|
|
- if (!$order)
|
|
|
- return Common::return_error('订单不存在');
|
|
|
- Db::startTrans();
|
|
|
- try {
|
|
|
- $order->is_del = 0;
|
|
|
- $order->del_time = time();
|
|
|
- $order->save();
|
|
|
- Db::commit();
|
|
|
- return Common::return_success('删除成功');
|
|
|
- }catch (Exception $e) {
|
|
|
- Db::rollback();
|
|
|
- return Common::return_error('删除失败');
|
|
|
- }
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * 获取退款原因列表
|
|
|
- */
|
|
|
- public static function getRefundWhy(){
|
|
|
- $value = Config::get_values('order_refund_why');
|
|
|
- return Common::return_success('成功',explode(',',$value));
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * 申请退款
|
|
|
- */
|
|
|
- public static function refundOrder($order_no,$type,$refund_why,$instructions,$imgs){
|
|
|
- $order = self::where('order_no',$order_no)->find();
|
|
|
- if (!$order)
|
|
|
- return Common::return_error('订单不存在');
|
|
|
- if ($order['status']!=1 && $order['status']!=-3)
|
|
|
- return Common::return_error('订单状态有误');
|
|
|
- $data['order_id'] = $order['id'];
|
|
|
- $data['type'] = $type;
|
|
|
- $data['refund_why'] = $refund_why;
|
|
|
- if ($order['pay_type']=='yue'){
|
|
|
- $data['refund_money'] = 0;
|
|
|
- $data['refund_yue_money'] = $order['yue_money'];
|
|
|
- }else{
|
|
|
- if ($order['price']==$order['all_money']){
|
|
|
- $data['refund_money'] = $order['all_money'];
|
|
|
- $data['refund_yue_money'] = 0;
|
|
|
- }else{
|
|
|
- $data['refund_money'] = $order['difference_money'];
|
|
|
- $data['refund_yue_money'] = $order['yue_money'];
|
|
|
- }
|
|
|
- }
|
|
|
- $data['instructions'] = $instructions;
|
|
|
- if ($imgs){
|
|
|
- $imgs = implode(',',$imgs);
|
|
|
- }
|
|
|
- $data['imgs'] = $imgs;
|
|
|
- Db::startTrans();
|
|
|
- try {
|
|
|
- OrderRefund::create($data);
|
|
|
- Common::order_status($order['id'],'提起退款申请');
|
|
|
- $order->status = -1;
|
|
|
- $order->save();
|
|
|
- Db::commit();
|
|
|
- return Common::return_success('提交成功');
|
|
|
- }catch (Exception $e) {
|
|
|
- Db::rollback();
|
|
|
- return Common::return_error('提交失败');
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * 撤销申请退款
|
|
|
- */
|
|
|
- public static function undoRefund($order_no){
|
|
|
- $order = self::where('order_no',$order_no)->find();
|
|
|
- if (!$order)
|
|
|
- return Common::return_error('订单不存在');
|
|
|
- if ($order['status']!=-1)
|
|
|
- return Common::return_error('订单状态有误');
|
|
|
- Db::startTrans();
|
|
|
- try {
|
|
|
- $order->status = 1;
|
|
|
- $order->save();
|
|
|
- OrderRefund::where('order_id',$order['id'])->where('audit',0)->delete();
|
|
|
- Common::order_status($order['id'],'撤销退款申请');
|
|
|
- Db::commit();
|
|
|
- return Common::return_success('撤销成功');
|
|
|
- }catch (Exception $e) {
|
|
|
- Db::rollback();
|
|
|
- return Common::return_error('撤销失败');
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * 核销订单
|
|
|
- */
|
|
|
- public static function verifyOrder($verify_code){
|
|
|
- $user = app()->session->get('us');
|
|
|
- $order = self::where('verify_code',$verify_code)->where('is_del',1)->find();
|
|
|
- if (!$order)
|
|
|
- return Common::return_error('订单不存在');
|
|
|
- if ($order['status']!=1)
|
|
|
- return Common::return_error('订单状态错误');
|
|
|
-
|
|
|
- $merch = UserMerchInfo::where('user_id',$user['id'])->where('audit',1)->where('status',1)->find();
|
|
|
- if (!$merch)
|
|
|
- return Common::return_error('商家信息错误');
|
|
|
- if ($order['merch_id']!=$merch['id'])
|
|
|
- return Common::return_error('订单与商家不匹配');
|
|
|
- Db::startTrans();
|
|
|
- try {
|
|
|
- $order->status = 2;
|
|
|
- $order->verify_time = time();
|
|
|
- $order->save();
|
|
|
- Db::commit();
|
|
|
- Common::order_status($order['id'],'订单核销成功');
|
|
|
- self::tuijianBonus($order['id'],1); //利润分成
|
|
|
-
|
|
|
- if ($merch['collection_type']==1){
|
|
|
- self::merch($order['id']); //商家打款
|
|
|
- }else{
|
|
|
- UserMerchInfo::money($order->merch_money,$order->merch_id,'订单金额'.$order->merch_money.'元',$order->id,1); //商家加余额
|
|
|
- self::where('id',$order['id'])->update(['merch_collection_type'=>2,'merch_money_is_to'=>1,'merch_to_return'=>'已到商家余额']);
|
|
|
- //语音播报
|
|
|
- $info = ['merch_id'=>$order->merch_id,'url'=>$order->mp3_url];
|
|
|
- self::websocknotice($info);
|
|
|
- }
|
|
|
- self::cashBack($order['order_no']); //给推荐人返钱
|
|
|
- return Common::return_success('核销成功');
|
|
|
- }catch (Exception $e) {
|
|
|
- Db::rollback();
|
|
|
- return Common::return_error('核销失败');
|
|
|
- }
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- /**
|
|
|
- * 核销订单记录
|
|
|
- */
|
|
|
- public static function merchVerifyRecord($Nowpage,$limits,$order_type){
|
|
|
- $user = app()->session->get('us');
|
|
|
- $merch_id = UserMerchInfo::where('user_id',$user['id'])->value('id');
|
|
|
- $model = self::where('a.merch_id',$merch_id)->alias('a')
|
|
|
- ->join('User b','a.user_id=b.id')
|
|
|
- ->where('a.status','in','2,3')
|
|
|
- ->field('a.*,b.nickname,b.headimg')
|
|
|
- ->where('a.order_type',$order_type);
|
|
|
- $count = $model->count();
|
|
|
- if ($count){
|
|
|
- $list = $model->order('a.verify_time desc')->page($Nowpage,$limits)->order('a.id desc')->select()->toArray();
|
|
|
- if ($order_type==1){
|
|
|
- foreach ($list as $k=>$v){
|
|
|
- $product = OrderInfo::where('order_id',$v['id'])->find()->toArray();
|
|
|
- $info = json_decode($product['info'],true);
|
|
|
- $list[$k]['verify_time'] = date('Y-m-d H:i:s',$v['verify_time']);
|
|
|
- $list[$k]['product_name'] = $info['product_name'];
|
|
|
- $list[$k]['product_img'] = explode(',',$info['imgs'])[0];
|
|
|
- }
|
|
|
- }else{
|
|
|
- foreach ($list as $k=>$v){
|
|
|
- $list[$k]['pay_time'] = date('Y-m-d H:i:s',$v['pay_time']);
|
|
|
- }
|
|
|
- }
|
|
|
- }else{
|
|
|
- $list = [];
|
|
|
- }
|
|
|
- return Common::return_success('成功',compact('count','list'));
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- /**
|
|
|
- * 扫码付款
|
|
|
- * $merch_id 商家ID
|
|
|
- * $money 付款金额
|
|
|
- * $note 备注
|
|
|
- */
|
|
|
- public static function sweepPay($merch_id,$money,$pay_type,$note,$difference_pay_type,$coupon_id,$come,$pay_pass=''){
|
|
|
- $user = app()->session->get('us');
|
|
|
- $merch = UserMerchInfo::where('id',$merch_id)->where('audit',1)->where('status',1)->find();
|
|
|
- if (!$merch)
|
|
|
- return Common::return_error('商家不存在或商家异常');
|
|
|
-
|
|
|
- if ($pay_type=='yue'){
|
|
|
- if (!$difference_pay_type){
|
|
|
- $password = User::where('id',$user['id'])->value('with_password');
|
|
|
- if ($password!=md5($pay_pass)) return Common::return_error('支付密码错误');
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- $openid = User::where('id',$user['id'])->value('openid');
|
|
|
-
|
|
|
- //下单
|
|
|
- $data['user_id'] = $user['id'];
|
|
|
- $order_no = Common::getNewOrderId($user['id']);
|
|
|
- $data['order_no'] = $order_no;
|
|
|
- $data['merch_id'] = $merch_id;
|
|
|
- $data['note'] = $note;
|
|
|
- $data['total_num'] = 1;
|
|
|
- $data['price'] = $money;
|
|
|
- $data['pay_type'] = $pay_type;
|
|
|
- $data['type'] = 2;
|
|
|
- $data['order_type'] = 2;
|
|
|
- $order_sn = date('YmdHis').rand(1000, 9999);//商户订单号;
|
|
|
- $data['merch_order_no'] = $order_sn;
|
|
|
- $verify_code = self::nonceStr();
|
|
|
- $data['verify_code'] = $verify_code;
|
|
|
- $data['verify_code_img'] = Common::generate_qrcode($verify_code);
|
|
|
- $merch_proportion = Category::where('id',$merch['category_one_id'])->value('proportion');
|
|
|
- $data['merch_proportion'] = $merch_proportion;
|
|
|
- $merch_proportion_money = sprintf("%.2f",substr(sprintf("%.4f", ($money*($merch_proportion/100))), 0, -2));
|
|
|
- $data['merch_proportion_money'] = $merch_proportion_money;
|
|
|
- $merch_money = $money-$merch_proportion_money;
|
|
|
- $data['merch_money'] = $merch_money;
|
|
|
- $data['coupon_id'] = $coupon_id ? $coupon_id : 0;
|
|
|
- $mp3 = self::hecheng($money,$pay_type);
|
|
|
- $data['mp3_url'] = $mp3;
|
|
|
- Db::startTrans();
|
|
|
- try {
|
|
|
- //存入订单
|
|
|
- switch ($pay_type){
|
|
|
- case 'yue':
|
|
|
- $order = self::create($data);
|
|
|
- $order_id = $order->id;
|
|
|
- Common::order_status($order_id,'扫码订单生成');
|
|
|
- $userinfo = User::get($user['id']);
|
|
|
- //获取手续费
|
|
|
- $poundage_proportion = Config::get_values('poundage_proportion'); //手续费百分比
|
|
|
- $user_money_proportion = sprintf("%.2f",substr(sprintf("%.4f", ($money * ($poundage_proportion/100))), 0, -2)); //保留两位小数,不四舍五入; 手续费
|
|
|
- $all_price = $money + $user_money_proportion;
|
|
|
- if ($userinfo->money >= $all_price){
|
|
|
- if ($coupon_id){
|
|
|
- $coupon = self::checkCoupon($user['id'],$coupon_id,$all_price,2);
|
|
|
- if (!$coupon) return Common::return_error('优惠券不可用');
|
|
|
- $coupon_price = $coupon['coupon_price'];
|
|
|
- $yue_money = bcsub($all_price,$coupon_price,2);
|
|
|
- }else{
|
|
|
- $coupon_price = 0;
|
|
|
- $yue_money = $all_price;
|
|
|
- }
|
|
|
- //余额支付
|
|
|
- User::money($yue_money,$user['id'],'扫码支付'.$yue_money.'元');
|
|
|
- self::where('id',$order_id)->update(['yue_money'=>$yue_money,'coupon_price'=>$coupon_price,'poundage_proportion'=>$poundage_proportion,'proportion'=>$user_money_proportion,'all_money'=>$all_price,'status'=>3,'pay_time'=>time()]);
|
|
|
-// //余额支付
|
|
|
-// User::money($all_price,$user['id'],'扫码支付'.$all_price.'元');
|
|
|
-// self::where('id',$order_id)->update(['yue_money'=>$all_price,'poundage_proportion'=>$poundage_proportion,'proportion'=>$user_money_proportion,'all_money'=>$all_price,'status'=>3,'pay_time'=>time()]);
|
|
|
- Db::commit();
|
|
|
- CouponUser::where('id',$coupon_id)->update(['use_time'=>time(),'status'=>1]);
|
|
|
- Common::order_status($order_id,'余额支付成功');
|
|
|
- self::tuijianBonus($order_id,2); //利润分成
|
|
|
- if ($merch->collection_type==1){
|
|
|
- self::merch($order['id']); //商家打款
|
|
|
- }else{
|
|
|
- self::where('id',$order_id)->update(['merch_collection_type'=>2,'merch_money_is_to'=>1,'merch_to_return'=>'已到商家余额']);
|
|
|
- UserMerchInfo::money($merch_money,$merch_id,'订单金额'.$merch_money.'元',$order_id,1); //商家加余额
|
|
|
- //语音播报
|
|
|
- $info = ['merch_id'=>$merch_id,'url'=>$mp3];
|
|
|
- self::websocknotice($info);
|
|
|
- }
|
|
|
- self::cashBack($order_no); //给推荐人返钱
|
|
|
- $retrun_data['order_no'] = $order_no;
|
|
|
- $retrun_data['pay'] = 'yue';
|
|
|
- return Common::return_success('支付成功',$retrun_data);
|
|
|
- }else{
|
|
|
- $user_money_proportion = sprintf("%.2f",substr(sprintf("%.4f", ($userinfo->money * ($poundage_proportion/100))), 0, -2)); //保留两位小数,不四舍五入; 手续费
|
|
|
- $all_price = $money + $user_money_proportion;
|
|
|
- $difference_money = sprintf("%.2f", $all_price - $userinfo->money); //差价
|
|
|
- if ($coupon_id){
|
|
|
- $coupon = self::checkCoupon($user['id'],$coupon_id,$difference_money,2);
|
|
|
- if (!$coupon) return Common::return_error('优惠券不可用');
|
|
|
- $coupon_price = $coupon['coupon_price'];
|
|
|
- $difference_money = bcsub($difference_money,$coupon_price,2);
|
|
|
- }else{
|
|
|
- $coupon_price = 0;
|
|
|
- }
|
|
|
- self::where('id',$order_id)->update(['yue_money'=>$userinfo->money,'coupon_price'=>$coupon_price,'poundage_proportion'=>$poundage_proportion,'proportion'=>$user_money_proportion,'difference_money'=>$difference_money,'all_money'=>$all_price,'pay_type'=>$difference_pay_type]);
|
|
|
- //self::where('id',$order_id)->update(['yue_money'=>$userinfo->money,'poundage_proportion'=>$poundage_proportion,'proportion'=>$user_money_proportion,'difference_money'=>$difference_money,'all_money'=>$all_price,'pay_type'=>$difference_pay_type]);
|
|
|
- switch ($difference_pay_type){
|
|
|
- case 'weixin':
|
|
|
- //微信支付
|
|
|
- $wx = new WxPay();//实例化微信支付控制器
|
|
|
- $body = '订单号' . $order_no;//支付说明
|
|
|
- $out_trade_no = $order_no;//订单号
|
|
|
- $total_fee = $difference_money * 100;//支付金额(乘以100)
|
|
|
- $notify_url = 'https://'.$_SERVER['SERVER_NAME'].'/api/pay/sweep_pay_order';//回调地址
|
|
|
- if ($come=='weixin'){
|
|
|
- $config = $wx->retrunconfig();
|
|
|
- $config['notify_url'] = $notify_url;
|
|
|
-
|
|
|
- $app = Factory::payment($config);
|
|
|
- $trade_type = "JSAPI";
|
|
|
- $order = $app->order->unify([
|
|
|
- 'body' => $body,
|
|
|
- 'out_trade_no' => $out_trade_no,
|
|
|
- 'total_fee' => $total_fee,
|
|
|
- 'trade_type' => $trade_type, // JSAPI--JSAPI支付(或小程序支付)、NATIVE--Native支付、APP--app支付,MWEB--H5支付
|
|
|
- 'openid' => $openid,
|
|
|
- ]);
|
|
|
- if ($order['return_msg']=='OK'){
|
|
|
- if ($order['result_code']=='FAIL'){
|
|
|
- Db::rollback();
|
|
|
- return Common::return_error($order['err_code_des']);
|
|
|
- }else{
|
|
|
- $order1 = $app->jssdk->bridgeConfig($order['prepay_id']);//执行二次签名返回参数
|
|
|
- self::where('order_no',$order_no)->update(['wx_order'=>$order1]);
|
|
|
- $retrun_data['order_no'] = $order_no;
|
|
|
- $retrun_data['pay'] = json_decode($order1,true);
|
|
|
- Db::commit();
|
|
|
- return Common::return_success('成功',$retrun_data);
|
|
|
- }
|
|
|
- } else {
|
|
|
- Db::rollback();
|
|
|
- return Common::return_error($order['return_msg']);
|
|
|
- }
|
|
|
- break;
|
|
|
- }else{
|
|
|
- $config = $wx->retrunconfig2();
|
|
|
-
|
|
|
- try{
|
|
|
- $app = Factory::payment($config);
|
|
|
- $result = $app->order->unify([
|
|
|
- 'body' => $body,
|
|
|
- 'out_trade_no' => $out_trade_no,
|
|
|
- 'total_fee' => $total_fee,
|
|
|
- 'notify_url' => $notify_url, // 支付结果通知网址,如果不设置则会使用配置里的默认地址
|
|
|
- 'trade_type' => 'APP', // 请对应换成你的支付方式对应的值类型
|
|
|
- ]);
|
|
|
- $jssdk = $app->jssdk;
|
|
|
- $order1 = $jssdk->appConfig($result['prepay_id']);
|
|
|
- self::where('order_no',$order_no)->update(['wx_order'=>json_encode($order1,true)]);
|
|
|
- Db::commit();
|
|
|
- $retrun_data['order_no'] = $order_no;
|
|
|
- $retrun_data['pay'] = $order1;
|
|
|
- return Common::return_success('成功',$retrun_data);
|
|
|
-
|
|
|
- }catch (Exception $e){
|
|
|
- Db::rollback();
|
|
|
- return Common::return_error($order['return_msg']);
|
|
|
- }
|
|
|
- break;
|
|
|
-// $order = $wx->getPrePayOrder($body, $out_trade_no, $total_fee, $notify_url,$come,$openid);//调用微信支付的方法
|
|
|
-// if ($order['return_msg']=='OK'){
|
|
|
-// if ($order['result_code']=='FAIL'){
|
|
|
-// Db::rollback();
|
|
|
-// return Common::return_error($order['err_code_des']);
|
|
|
-// }else{
|
|
|
-// $order1 = $wx->getOrder($order['prepay_id']);//执行二次签名返回参数
|
|
|
-// self::where('order_no',$order_no)->update(['wx_order'=>json_encode($order1,true)]);
|
|
|
-// $retrun_data['order_no'] = $order_no;
|
|
|
-// $retrun_data['pay'] = $order1;
|
|
|
-// Db::commit();
|
|
|
-// return Common::return_success('成功',$retrun_data);
|
|
|
-// }
|
|
|
-// } else {
|
|
|
-// Db::rollback();
|
|
|
-// return Common::return_error($order['return_msg']);
|
|
|
-// }
|
|
|
-// break;
|
|
|
- }
|
|
|
- case 'zfb':
|
|
|
- $zfb = new AliPay();//实例化支付宝支付控制器
|
|
|
- $body = '全民创扫码支付';//支付说明
|
|
|
- $out_trade_no = $order_no;//订单号
|
|
|
- $total_fee = $difference_money;//支付金额(乘以100)
|
|
|
- $notify_url = 'http://'.$_SERVER['SERVER_NAME'].'/api/pay/zfb_sweep_pay_order';//回调地址
|
|
|
- $order = $zfb->aliPay($body, $total_fee, $out_trade_no, $notify_url);//调用支付宝支付的方法
|
|
|
- $retrun_data['order_no'] = $order_no;
|
|
|
- $retrun_data['pay'] = $order;
|
|
|
- Db::commit();
|
|
|
- return Common::return_success('成功',$retrun_data);
|
|
|
- break;
|
|
|
- }
|
|
|
- }
|
|
|
- break;
|
|
|
- case 'weixin':
|
|
|
- $data['all_money'] = $money;
|
|
|
- if ($coupon_id){
|
|
|
- $coupon = self::checkCoupon($user['id'],$coupon_id,$money,2);
|
|
|
- if (!$coupon) return Common::return_error('优惠券不可用');
|
|
|
- $data['coupon_price'] = $coupon['coupon_price'];
|
|
|
- $data['difference_money'] = bcsub($money,$coupon['coupon_price'],2);
|
|
|
- $money = $data['difference_money'];
|
|
|
- }
|
|
|
- $order = self::create($data);
|
|
|
- $order_id = $order->id;
|
|
|
- Common::order_status($order_id,'扫码订单生成');
|
|
|
- //微信支付
|
|
|
- $wx = new WxPay();//实例化微信支付控制器
|
|
|
- $body = '订单号' . $order_no;//支付说明
|
|
|
- $out_trade_no = $order_no;//订单号
|
|
|
- $total_fee = $money * 100;//支付金额(乘以100)
|
|
|
- $notify_url = 'https://'.$_SERVER['SERVER_NAME'].'/api/pay/sweep_pay_order';//回调地址
|
|
|
- if ($come=='weixin'){
|
|
|
- $config = $wx->retrunconfig();
|
|
|
- $config['notify_url'] = $notify_url;
|
|
|
-
|
|
|
- $app = Factory::payment($config);
|
|
|
- $trade_type = "JSAPI";
|
|
|
- $order = $app->order->unify([
|
|
|
- 'body' => $body,
|
|
|
- 'out_trade_no' => $out_trade_no,
|
|
|
- 'total_fee' => $total_fee,
|
|
|
- 'trade_type' => $trade_type, // JSAPI--JSAPI支付(或小程序支付)、NATIVE--Native支付、APP--app支付,MWEB--H5支付
|
|
|
- 'openid' => $openid,
|
|
|
- ]);
|
|
|
- if ($order['return_msg']=='OK'){
|
|
|
- if ($order['result_code']=='FAIL'){
|
|
|
- Db::rollback();
|
|
|
- return Common::return_error($order['err_code_des']);
|
|
|
- }else{
|
|
|
- $order1 = $app->jssdk->bridgeConfig($order['prepay_id']);//执行二次签名返回参数
|
|
|
- self::where('order_no',$order_no)->update(['wx_order'=>$order1]);
|
|
|
- $retrun_data['order_no'] = $order_no;
|
|
|
- $retrun_data['pay'] = json_decode($order1,true);
|
|
|
- Db::commit();
|
|
|
- return Common::return_success('成功',$retrun_data);
|
|
|
- }
|
|
|
- } else {
|
|
|
- Db::rollback();
|
|
|
- return Common::return_error($order['return_msg']);
|
|
|
- }
|
|
|
- break;
|
|
|
- }else{
|
|
|
- $config = $wx->retrunconfig2();
|
|
|
- try{
|
|
|
- $app = Factory::payment($config);
|
|
|
- $result = $app->order->unify([
|
|
|
- 'body' => $body,
|
|
|
- 'out_trade_no' => $out_trade_no,
|
|
|
- 'total_fee' => $total_fee,
|
|
|
- 'notify_url' => $notify_url, // 支付结果通知网址,如果不设置则会使用配置里的默认地址
|
|
|
- 'trade_type' => 'APP', // 请对应换成你的支付方式对应的值类型
|
|
|
- ]);
|
|
|
- $jssdk = $app->jssdk;
|
|
|
- $order1 = $jssdk->appConfig($result['prepay_id']);
|
|
|
- self::where('order_no',$order_no)->update(['wx_order'=>json_encode($order1,true)]);
|
|
|
- Db::commit();
|
|
|
- $retrun_data['order_no'] = $order_no;
|
|
|
- $retrun_data['pay'] = $order1;
|
|
|
- return Common::return_success('成功',$retrun_data);
|
|
|
-
|
|
|
- }catch (Exception $e){
|
|
|
- Db::rollback();
|
|
|
- return Common::return_error($order['return_msg']);
|
|
|
- }
|
|
|
- break;
|
|
|
-
|
|
|
-//
|
|
|
-// $order = $wx->getPrePayOrder($body, $out_trade_no, $total_fee, $notify_url,$come,$openid);//调用微信支付的方法
|
|
|
-// if ($order['return_msg']=='OK'){
|
|
|
-// if ($order['result_code']=='FAIL'){
|
|
|
-// Db::rollback();
|
|
|
-// return Common::return_error($order['err_code_des']);
|
|
|
-// }else{
|
|
|
-// $order1 = $wx->getOrder($order['prepay_id']);//执行二次签名返回参数
|
|
|
-// self::where('order_no',$order_no)->update(['wx_order'=>json_encode($order1,true)]);
|
|
|
-// $retrun_data['order_no'] = $order_no;
|
|
|
-// $retrun_data['pay'] = $order1;
|
|
|
-// Db::commit();
|
|
|
-// return Common::return_success('成功',$retrun_data);
|
|
|
-// }
|
|
|
-// } else {
|
|
|
-// Db::rollback();
|
|
|
-// return Common::return_error($order['return_msg']);
|
|
|
-// }
|
|
|
-// break;
|
|
|
- }
|
|
|
- case 'zfb':
|
|
|
- $data['all_money'] = $money;
|
|
|
- if ($coupon_id){
|
|
|
- $coupon = self::checkCoupon($user['id'],$coupon_id,$money,2);
|
|
|
- if (!$coupon) return Common::return_error('优惠券不可用');
|
|
|
- $data['coupon_price'] = $coupon['coupon_price'];
|
|
|
- $data['difference_money'] = bcsub($money,$coupon['coupon_price'],2);
|
|
|
- $money = $data['difference_money'];
|
|
|
- }
|
|
|
- $order = self::create($data);
|
|
|
- $order_id = $order->id;
|
|
|
- Common::order_status($order_id,'扫码订单生成');
|
|
|
- $zfb = new AliPay();//实例化支付宝支付控制器
|
|
|
- $body = '全民创扫码支付';//支付说明
|
|
|
- $out_trade_no = $order_no;//订单号
|
|
|
- $total_fee = $money;//支付金额(乘以100)
|
|
|
- $notify_url = 'http://'.$_SERVER['SERVER_NAME'].'/api/pay/zfb_sweep_pay_order';//回调地址
|
|
|
- $order = $zfb->aliPay($body, $total_fee, $out_trade_no, $notify_url);//调用支付宝支付的方法
|
|
|
- $retrun_data['order_no'] = $order_no;
|
|
|
- $retrun_data['pay'] = $order;
|
|
|
- Db::commit();
|
|
|
- return Common::return_success('成功',$retrun_data);
|
|
|
- break;
|
|
|
- }
|
|
|
- }catch (Exception $e) {
|
|
|
- Db::rollback();
|
|
|
- return Common::return_error('失败');
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * 扫码支付成功修改订单状态
|
|
|
- */
|
|
|
- public static function sweepPaySuccess($order_no,$result,$status=1){
|
|
|
- $order = self::where('order_no',$order_no)->find();
|
|
|
- if ($order['status']==3)
|
|
|
- return Common::return_error('已完成订单');
|
|
|
-
|
|
|
-
|
|
|
- if ($order['status']==4)
|
|
|
- return Common::return_error('订单已取消');
|
|
|
-
|
|
|
- $merch_collection_type = UserMerchInfo::where('id',$order->merch_id)->value('collection_type');
|
|
|
- Db::startTrans();
|
|
|
- try {
|
|
|
- $order->status = 3; //修改状态 已完成
|
|
|
- $order->pay_time = time();
|
|
|
- $order->return_success_info = json_encode($result,true);
|
|
|
- if ($merch_collection_type!=1){
|
|
|
- $order->merch_collection_type = 2;
|
|
|
- $order->merch_money_is_to = 1;
|
|
|
- $order->merch_to_return = '已到商家余额';
|
|
|
- }
|
|
|
- $order->save();
|
|
|
- if ($order['pay_type']=='weixin' || $order['pay_type']=='zfb'){
|
|
|
- if ($order['yue_money'] > 0){
|
|
|
- //扣除余额
|
|
|
- User::money($order['yue_money'],$order['user_id'],'扫码支付'.$order['yue_money'].'元');
|
|
|
- }
|
|
|
- }
|
|
|
- Db::commit();
|
|
|
- if ($status == 1)
|
|
|
- $zf = '微信支付成功';
|
|
|
- elseif ($status ==2)
|
|
|
- $zf = '支付宝支付成功';
|
|
|
- Common::order_status($order['id'],$zf);
|
|
|
- self::tuijianBonus($order->id,2); //利润分成
|
|
|
- if ($merch_collection_type==1){
|
|
|
- self::merch($order['id']); //商家打款
|
|
|
- }else{
|
|
|
- UserMerchInfo::money($order->merch_money,$order->merch_id,'订单金额'.$order->merch_money.'元',$order->id,1); //商家加余额
|
|
|
- //语音播报
|
|
|
- $info = ['merch_id'=>$order->merch_id,'url'=>$order->mp3_url];
|
|
|
- self::websocknotice($info);
|
|
|
- }
|
|
|
- if ($order['coupon_id'])
|
|
|
- CouponUser::where('id',$order['coupon_id'])->update(['use_time'=>time(),'status'=>1]);
|
|
|
- self::cashBack($order_no); //给推荐人返钱
|
|
|
- return Common::return_success('支付成功');
|
|
|
- }catch (Exception $e) {
|
|
|
- Db::rollback();
|
|
|
- return Common::return_error('支付失败');
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- /**
|
|
|
- * 给推荐的商家或用户返金额
|
|
|
- */
|
|
|
- public static function cashBack($order_no){
|
|
|
- $order = self::where('order_no',$order_no)->find();
|
|
|
- if ($order['coupon_id']){
|
|
|
- $coupon = CouponUser::where('id',$order['coupon_id'])->find();
|
|
|
- if ($coupon && $coupon['user_or_merch_id']){
|
|
|
- //加余额
|
|
|
- User::money($coupon['user_or_merch_price'],$coupon['user_or_merch_id'],'推荐会员获得'.$coupon['user_or_merch_price'].'元',1,$coupon['user_id']);
|
|
|
- }
|
|
|
- }
|
|
|
- return true;
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- /**
|
|
|
- * 订单超时自动关闭
|
|
|
- */
|
|
|
- public static function orderTimeOut(){
|
|
|
- $time = Config::get_values('store_order_wait_time');
|
|
|
- $time = 60 * $time;
|
|
|
- $date = date('Y-m-d H:i:s',time()-($time*60));
|
|
|
- $list = self::where('status',0)->where('create_at','<',$date)->select();
|
|
|
- if ($list){
|
|
|
- foreach ($list as $k=>$v){
|
|
|
- self::where('id',$v['id'])->update(['status'=>4,'remark'=>'订单未支付已超过系统预设时间']);
|
|
|
- Common::order_status($v['id'],'订单未支付超过系统预设时间,系统已取消');
|
|
|
- if ($v['coupon_id'] && $v['order_type']!=2){
|
|
|
- CouponUser::where('id',$v['coupon_id'])->update(['status'=>0]);
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- /**
|
|
|
- * 收款记录
|
|
|
- */
|
|
|
- public static function sweepPayRecord($Nowpage,$limits){
|
|
|
- $user = app()->session->get('us');
|
|
|
- $merch_id = UserMerchInfo::where('user_id',$user['id'])->value('id');
|
|
|
- $count = self::where('merch_id',$merch_id)
|
|
|
- ->where('status',3)
|
|
|
- ->where('order_type',2)
|
|
|
- ->count();
|
|
|
- if ($count){
|
|
|
- $list = self::where('a.merch_id',$merch_id)
|
|
|
- ->alias('a')
|
|
|
- ->where('a.status',3)
|
|
|
- ->where('a.order_type',2)
|
|
|
- ->join('User b','a.user_id=b.id')
|
|
|
- ->field('a.user_id,a.price,a.pay_time,b.nickname,b.headimg')
|
|
|
- ->order('a.id desc')
|
|
|
- ->page($Nowpage,$limits)
|
|
|
- ->select()
|
|
|
- ->toArray();
|
|
|
- foreach ($list as $k=>$v){
|
|
|
- $list[$k]['pay_time'] = date('Y-m-d H:i',$v['pay_time']);
|
|
|
- }
|
|
|
- }else{
|
|
|
- $list = [];
|
|
|
- }
|
|
|
- $data['count'] = $count;
|
|
|
- $data['list'] = $list;
|
|
|
- return Common::return_success('成功',$data);
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- /**
|
|
|
- * 自用算利息
|
|
|
- */
|
|
|
- public static function personalUse($order_no,$type){
|
|
|
- if ($type==1){
|
|
|
- $order = self::where('order_no',$order_no)->find();
|
|
|
- if (!$order)
|
|
|
- return Common::return_error('订单不存在');
|
|
|
- $merch = UserMerchInfo::where('id',$order['merch_id'])->field('user_id,category_one_id')->find();
|
|
|
- //获取商家的分成百分比
|
|
|
- $merch_proportion = Category::where('id',$merch['category_one_id'])->value('proportion');
|
|
|
- $f['total_proportion'] = $merch_proportion;
|
|
|
- $total_profits_money = sprintf("%.2f",substr(sprintf("%.4f", ($order['price'] * ($merch_proportion/100))), 0, -2)); //保留两位小数,不四舍五入
|
|
|
- $tuijian_profits_money = sprintf("%.2f",substr(sprintf("%.4f", ($total_profits_money * 0.4)), 0, -2)); //保留两位小数,不四舍五入
|
|
|
- $data['price'] = $order['price'];
|
|
|
- $data['profits_money'] = $tuijian_profits_money;
|
|
|
- }else{
|
|
|
- $order = MobileRecharge::where('order_no',$order_no)->find();
|
|
|
- if (!$order)
|
|
|
- return Common::return_error('订单不存在');
|
|
|
- $total_profits_money = sprintf("%.2f",substr(sprintf("%.4f", ($order['money'] * 0.05)), 0, -2)); //保留两位小数,不四舍五入
|
|
|
- $tuijian_profits_money = sprintf("%.2f",substr(sprintf("%.4f", ($total_profits_money * 0.4)), 0, -2)); //保留两位小数,不四舍五入
|
|
|
- $data['price'] = $order['money'];
|
|
|
- $data['profits_money'] = $tuijian_profits_money;
|
|
|
- }
|
|
|
- return Common::return_success('成功',$data);
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- /**
|
|
|
- * 推荐奖分利润
|
|
|
- * 推荐商家入驻平台,享有商家在平台销售额的永久利润。
|
|
|
- * 以下返利均以用户A在某商家消费100元来举例,用户在商家消费100元,商家拿出10%利润进行返利即10元
|
|
|
- */
|
|
|
- public static function tuijianBonus($order_id,$status){
|
|
|
- $order = self::get($order_id);
|
|
|
- if ($order){
|
|
|
- $f['status'] = $status;
|
|
|
- $f['order_id'] = $order_id;
|
|
|
- $f['total_price'] = $order['price'];
|
|
|
- $merch = UserMerchInfo::where('id',$order['merch_id'])->field('user_id,category_one_id')->find();
|
|
|
- //获取商家的分成百分比
|
|
|
- $merch_proportion = Category::where('id',$merch['category_one_id'])->value('proportion');
|
|
|
- $f['total_proportion'] = $merch_proportion;
|
|
|
- $total_profits_money = sprintf("%.2f",substr(sprintf("%.4f", ($order['price'] * ($merch_proportion/100))), 0, -2)); //保留两位小数,不四舍五入
|
|
|
- $f['total_profits_money'] = $total_profits_money;
|
|
|
- Db::startTrans();
|
|
|
- //推荐商家入驻奖;总计15%(1.5)直接推荐10%(1)一代推荐 3%(0.3) 二代推荐 2%(0.2)
|
|
|
- $f['tuijian_proprotion'] = 15;
|
|
|
- $tuijian_profits_money = sprintf("%.2f",substr(sprintf("%.4f", ($total_profits_money * 0.15)), 0, -2)); //保留两位小数,不四舍五入
|
|
|
- $f['tuijian_profits_money'] = $tuijian_profits_money;
|
|
|
- $f_user = User::where('id',$merch['user_id'])->field('fid,ffid')->find();
|
|
|
- if ($f_user['fid']){
|
|
|
- $ins = '商家入驻分佣';
|
|
|
- $f['user_id'] = $f_user['fid'];
|
|
|
- $f['fid'] = 1;
|
|
|
- $f['proportion'] = 10;
|
|
|
- $f['ins'] = $ins;
|
|
|
- $f['profits_money'] = sprintf("%.2f",substr(sprintf("%.4f", ($total_profits_money * 0.1)), 0, -2)); //保留两位小数,不四舍五入
|
|
|
- OrderTuijian::create($f);
|
|
|
- User::money($f['profits_money'],$f_user['fid'],$ins.$f['profits_money'].'元',1);
|
|
|
-
|
|
|
- if ($f_user['ffid']){
|
|
|
- $ins = '下级推荐商家分佣';
|
|
|
- $f['user_id'] = $f_user['ffid'];
|
|
|
- $f['fid'] = 2;
|
|
|
- $f['proportion'] = 3;
|
|
|
- $f['ins'] = $ins;
|
|
|
- $f['profits_money'] = sprintf("%.2f",substr(sprintf("%.4f", ($total_profits_money * 0.03)), 0, -2)); //保留两位小数,不四舍五入
|
|
|
- OrderTuijian::create($f);
|
|
|
- User::money($f['profits_money'],$f_user['ffid'],$ins.$f['profits_money'].'元',1);
|
|
|
-
|
|
|
- $fff_id = User::where('id',$f_user['ffid'])->value('fid');
|
|
|
- if ($fff_id){
|
|
|
- $f['user_id'] = $fff_id;
|
|
|
- $f['fid'] = 3;
|
|
|
- $f['proportion'] = 2;
|
|
|
- $f['ins'] = $ins;
|
|
|
- $f['profits_money'] = sprintf("%.2f",substr(sprintf("%.4f", ($total_profits_money * 0.02)), 0, -2)); //保留两位小数,不四舍五入
|
|
|
- OrderTuijian::create($f);
|
|
|
- User::money($f['profits_money'],$fff_id,$ins.$f['profits_money'].'元',1);
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- //自用加分享用户;总计45% (4.5) 自用;利润20%(2)一代;利润15% 二代;利润10% (改为65% ,自用加20%)
|
|
|
- $f['tuijian_proprotion'] = 65;
|
|
|
- $f['type'] = 2;
|
|
|
- $tuijian_profits_money = sprintf("%.2f",substr(sprintf("%.4f", ($total_profits_money * 0.65)), 0, -2)); //保留两位小数,不四舍五入
|
|
|
- $f['tuijian_profits_money'] = $tuijian_profits_money;
|
|
|
- $ins = '消费返利';
|
|
|
- $f['user_id'] = $order['user_id'];
|
|
|
- $f['fid'] = 1;
|
|
|
- $f['proportion'] = 40;
|
|
|
- $f['ins'] = $ins;
|
|
|
- $f['profits_money'] = sprintf("%.2f",substr(sprintf("%.4f", ($total_profits_money * 0.4)), 0, -2)); //保留两位小数,不四舍五入
|
|
|
- OrderTuijian::create($f);
|
|
|
- User::money($f['profits_money'],$order['user_id'],$ins.$f['profits_money'].'元',1);
|
|
|
- //获取推荐人和推荐人的推荐人
|
|
|
- $tj_user = User::where('id',$order['user_id'])->field('fid,ffid')->find();
|
|
|
- if ($tj_user['fid']){
|
|
|
- $ins = '推荐下级消费返利';
|
|
|
- $f['user_id'] = $tj_user['fid'];
|
|
|
- $f['fid'] = 2;
|
|
|
- $f['proportion'] = 15;
|
|
|
- $f['ins'] = $ins;
|
|
|
- $f['profits_money'] = sprintf("%.2f",substr(sprintf("%.4f", ($total_profits_money * 0.15)), 0, -2)); //保留两位小数,不四舍五入
|
|
|
- OrderTuijian::create($f);
|
|
|
- User::money($f['profits_money'],$tj_user['fid'],$ins.$f['profits_money'].'元',1);
|
|
|
-
|
|
|
- if ($tj_user['ffid']){
|
|
|
- $f['user_id'] = $tj_user['ffid'];
|
|
|
- $f['fid'] = 3;
|
|
|
- $f['proportion'] = 10;
|
|
|
- $f['ins'] = $ins;
|
|
|
- $f['profits_money'] = sprintf("%.2f",substr(sprintf("%.4f", ($total_profits_money * 0.1)), 0, -2)); //保留两位小数,不四舍五入
|
|
|
- OrderTuijian::create($f);
|
|
|
- User::money($f['profits_money'],$tj_user['ffid'],$ins.$f['profits_money'].'元',1);
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- //商家分红挂售; 总计30% 自投平台任意商家,商家产生交易利润后30%归投资所得。(平台设计回报率按千分之0.5—千分之1来浮动计算) 自投分红;20%(2/投该商家份数*自投份数) 一代分红; 5% 二代分红: 5% 注:一代、二代分红始终是自投分红的四分之一
|
|
|
- //(改为 总计20% 投分红;15%(2/投该商家份数*自投份数)一代分红; 2.5% 二代分红: 2.5% 注:一代、二代分红始终是自投分红的六分之一)
|
|
|
- $f['tuijian_proprotion'] = 20;
|
|
|
- $f['type'] = 3;
|
|
|
- $tuijian_profits_money = sprintf("%.2f",substr(sprintf("%.4f", ($total_profits_money * 0.2)), 0, -2)); //保留两位小数,不四舍五入
|
|
|
- $f['tuijian_profits_money'] = $tuijian_profits_money;
|
|
|
- //获取投资用户
|
|
|
- $all = InvestMerch::where('merch_id',$order['merch_id'])->where('copies','>',0)->where('money','>',0)->sum('copies');
|
|
|
- if ($all){
|
|
|
- $touzi = InvestMerch::where('merch_id',$order['merch_id'])->where('copies','>',0)->where('money','>',0)->field('copies,user_id,money')->select()->toArray();
|
|
|
- $f['note'] = json_encode($touzi,true);
|
|
|
- $two = sprintf("%.2f",substr(sprintf("%.4f", ($total_profits_money * 0.15)), 0, -2)); //保留两位小数,不四舍五入
|
|
|
- foreach ($touzi as $k=>$v){
|
|
|
- $max_rate = $v['money'] * 0.001; //平台设计回报率最大千分之一
|
|
|
- $this_rate = sprintf("%.2f",substr(sprintf("%.4f", ($two/$all)*$v['copies']), 0, -2)); //保留两位小数,不四舍五入
|
|
|
- $profits_money = $max_rate > $this_rate ? $this_rate : $max_rate;
|
|
|
- $ins = '自投商家分红';
|
|
|
- $f['user_id'] = $v['user_id'];
|
|
|
- $f['fid'] = 1;
|
|
|
- $f['proportion'] = 15;
|
|
|
- $f['ins'] = $ins;
|
|
|
- $f['profits_money'] = $profits_money;
|
|
|
- OrderTuijian::create($f);
|
|
|
- User::money($profits_money,$v['user_id'],$ins.$profits_money.'元',1);
|
|
|
-
|
|
|
- //推荐用户
|
|
|
- $t_j = User::where('id',$v['user_id'])->field('fid,ffid')->find();
|
|
|
- if ($t_j['fid']){
|
|
|
- $profits_money = sprintf("%.2f",substr(sprintf("%.4f", ($profits_money * 0.16)), 0, -2)); //保留两位小数,不四舍五入
|
|
|
- $ins = '下级创投商家分红';
|
|
|
- $f['user_id'] = $t_j['fid'];
|
|
|
- $f['fid'] = 2;
|
|
|
- $f['proportion'] = 2.5;
|
|
|
- $f['ins'] = $ins;
|
|
|
- $f['profits_money'] = $profits_money;
|
|
|
- OrderTuijian::create($f);
|
|
|
- User::money($profits_money,$t_j['fid'],$ins.$profits_money.'元',1);
|
|
|
-
|
|
|
- if ($t_j['ffid']){
|
|
|
- $f['user_id'] = $t_j['ffid'];
|
|
|
- $f['fid'] = 3;
|
|
|
- $f['proportion'] = 2.5;
|
|
|
- $f['ins'] = $ins;
|
|
|
- $f['profits_money'] = $profits_money;
|
|
|
- OrderTuijian::create($f);
|
|
|
- User::money($profits_money,$t_j['ffid'],$ins.$profits_money.'元',1);
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- //领导人奖 10% 预存到leader表
|
|
|
-// $leader['order_id'] = $order_id;
|
|
|
-// $leader['total_price'] = $order['price'];
|
|
|
-// $leader['total_proportion'] = $merch_proportion;
|
|
|
-// $total_profits_money = sprintf("%.2f",substr(sprintf("%.4f", ($order['price'] * ($merch_proportion/100))), 0, -2)); //保留两位小数,不四舍五入
|
|
|
-// $leader['total_profits_money'] = $total_profits_money;
|
|
|
-// $leader['tuijian_proprotion'] = 10; //10%
|
|
|
-// $leader['tuijian_profits_money'] = sprintf("%.2f",substr(sprintf("%.4f", ($total_profits_money * 0.1)), 0, -2)); //保留两位小数,不四舍五入
|
|
|
-// Leader::create($leader);
|
|
|
- Db::commit();
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- /**
|
|
|
- * 领导人奖 10%
|
|
|
- * 每月初执行
|
|
|
- * 随着团队不断的变大消费金额也会逐渐增加,市场领导人需要有差异化的收益。每级1%,市场出现同级,收益拆分为2份。
|
|
|
- 等级 团队月交易额 领导人收益
|
|
|
- L1: 5万; 1%
|
|
|
- L2: 15万; 1%
|
|
|
- L3: 45万; 1%
|
|
|
- L4: 135万; 1%
|
|
|
- L5: 400万; 1%
|
|
|
- L6: 1200万; 1%
|
|
|
- L7: 3600万; 1%
|
|
|
- L8: 1亿; 1%
|
|
|
- L9: 3亿; 1%
|
|
|
- L10: 6亿; 1%
|
|
|
- 团队月交易额是每月月底进行计算,用户及用户一代、用户二代在平台产生的所有交易额进行相加,达到基线去计算交易额的利润进行返利
|
|
|
- 平级情况:用户自身的团队交易额和一代团队交易额都达到基线,即视为同级,收益进行拆分
|
|
|
- */
|
|
|
- public static function leader(){
|
|
|
- $user = User::field('id')->select();
|
|
|
- if ($user){
|
|
|
- foreach ($user as $k=>$v){
|
|
|
- $money = 0;
|
|
|
- $all_count = 1;
|
|
|
- $one = self::leaderByWhere()->where('user_id',$v['id'])->sum('price');
|
|
|
- $money = $money+$one;
|
|
|
- $one_order_array = array();
|
|
|
- if ($one){
|
|
|
- $one_order_array = self::leaderByWhere()->where('user_id',$v['id'])->column('id');
|
|
|
- }
|
|
|
- //下级用户消费金额
|
|
|
- $two_order_array = array();
|
|
|
- $two_user_ids = User::where('fid',$v['id'])->column('id');
|
|
|
- if ($two_user_ids){
|
|
|
- $two = self::leaderByWhere()->where('user_id','in',$two_user_ids)->sum('price');
|
|
|
- if ($two){
|
|
|
- $two_order_array = self::leaderByWhere()->where('user_id','in',$two_user_ids)->column('id');
|
|
|
- }
|
|
|
- $money = $money + $two;
|
|
|
- }
|
|
|
- //下下级用户消费金额
|
|
|
- $three_order_array = array();
|
|
|
- $three_user_ids = User::where('ffid',$v['id'])->column('id');
|
|
|
- if ($three_user_ids){
|
|
|
- $three = self::leaderByWhere()->where('user_id','in',$three_user_ids)->sum('price');
|
|
|
- if ($three){
|
|
|
- $three_order_array = self::leaderByWhere()->where('user_id','in',$three_user_ids)->column('id');
|
|
|
- }
|
|
|
- $money = $money + $three;
|
|
|
- }
|
|
|
- $order_ids_array = array_merge($one_order_array,$two_order_array,$three_order_array);
|
|
|
- $all_profits_money = 0;
|
|
|
- if ($order_ids_array){
|
|
|
- $all_profits_money = Leader::where('order_id','in',$order_ids_array)->sum('tuijian_profits_money'); //总金额
|
|
|
- }
|
|
|
- $check_money = Common::checkMoneyGrade($money);
|
|
|
- if ($check_money){
|
|
|
- $f['status'] = 3;
|
|
|
- $f['order_id'] = implode(',',$order_ids_array);
|
|
|
- $f['total_price'] = $money;
|
|
|
- $f['total_profits_money'] = 0;
|
|
|
- $f['tuijian_proprotion'] = 10;
|
|
|
- $tuijian_profits_money = $all_profits_money;
|
|
|
- $f['tuijian_profits_money'] = $tuijian_profits_money;
|
|
|
- $f['type'] = 4;
|
|
|
- //如果判断有区间
|
|
|
- if ($two_user_ids){
|
|
|
- $usids = self::leaderByWhere()->where('user_id','in',$two_user_ids)->field('sum(price) as all_price,user_id')->group('user_id')->having('sum(price)>'.$check_money)->select();
|
|
|
- $count = count($usids);
|
|
|
- if ($count){
|
|
|
- $usids = $usids->toArray();
|
|
|
- $all_count = $all_count+$count;
|
|
|
- }
|
|
|
- }
|
|
|
- $f['note'] = Common::getNewOrderId($v['id']);
|
|
|
- $ins = "团队收益";
|
|
|
- $f['ins'] = $ins;
|
|
|
- $f['user_id'] = $v['id'];
|
|
|
- $f['fid'] = 1;
|
|
|
- $f['proportion'] = 1;
|
|
|
- $profits_money = sprintf("%.2f",substr(sprintf("%.4f", ($tuijian_profits_money*0.1)), 0, -2)); //保留两位小数,不四舍五入;
|
|
|
- $profits_money = sprintf("%.2f",substr(sprintf("%.4f", ($profits_money/$all_count)), 0, -2)); //保留两位小数,不四舍五入;
|
|
|
- $f['profits_money'] = $profits_money;
|
|
|
- OrderTuijian::create($f);
|
|
|
- User::money($profits_money,$v['id'],$ins.$profits_money.'元',1);
|
|
|
- if ($all_count>1){
|
|
|
- foreach ($usids as $i=>$j){
|
|
|
- $f['user_id'] = $j['user_id'];
|
|
|
- $f['fid'] = 2;
|
|
|
- $f['proportion'] = 1;
|
|
|
- $f['profits_money'] = $profits_money;
|
|
|
- OrderTuijian::create($f);
|
|
|
- User::money($profits_money,$j['user_id'],$ins.$profits_money.'元',1);
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- /**
|
|
|
- * 领导人奖 where条件
|
|
|
- */
|
|
|
- public static function leaderByWhere(){
|
|
|
- $last = strtotime("-1 month", time());
|
|
|
- $last_lastday = strtotime(date("Y-m-t 23:59:59", $last));//上个月最后一天
|
|
|
- $last_firstday = strtotime(date('Y-m-01 00:00:00 ', $last));//上个月第一天
|
|
|
- $model = new self();
|
|
|
- return $model->where('status','in','2,3')
|
|
|
- ->whereBetweenTime('pay_time',$last_firstday,$last_lastday);
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- /**
|
|
|
- * 给商家打钱
|
|
|
- */
|
|
|
- public static function merch($order_id){
|
|
|
-// $info = ['merch_id'=>1,'url'=>'http://tsn.baidu.com/text2audio?tex=%25E5%2585%25A8%25E6%25B0%2591%25E5%2588%259B%25E5%2595%2586%25E5%25AE%25B6%25E5%25BE%25AE%25E4%25BF%25A1%25E6%2594%25B6%25E6%25AC%25BE167%25E5%2585%2583%25E3%2580%2582&per=0&spd=4&pit=5&vol=6&aue=3&cuid=1597121601&tok=24.a6ea181932f396d4c0d3701307ad39f5.2592000.1599713601.282335-21649984&lan=zh&ctp=1'];
|
|
|
-// self::websocknotice($info);
|
|
|
- $order = self::where('id',$order_id)->find();
|
|
|
- if (!$order)
|
|
|
- return false;
|
|
|
- if ($order['merch_money_is_to']==1)
|
|
|
- return false;
|
|
|
-
|
|
|
- $user_id = UserMerchInfo::where('id',$order['merch_id'])->value('user_id');
|
|
|
- $order_sn = $order['merch_order_no'];
|
|
|
-// $order_sn = date('YmdHis').rand(1000, 9999);//商户订单号;
|
|
|
-// $order->merch_order_no = $order_sn;
|
|
|
-// $order->save();
|
|
|
- if ($order['pay_type']=='weixin' || $order['pay_type']=='yue'){
|
|
|
- $opend_id = UserWeixin::where('user_id',$user_id)->value('openid');
|
|
|
- if (!$opend_id){
|
|
|
- self::where('id',$order['id'])->update(['merch_to_return'=>'未绑定微信号']);
|
|
|
- return false;
|
|
|
- }
|
|
|
- $wx = new WxMerchPay();
|
|
|
- $result = $wx->sendMoney($order['merch_money'],$opend_id,$order_sn,'全民创商家收款');
|
|
|
- if ($result['return_code']=='SUCCESS' && $result['result_code']=='SUCCESS'){
|
|
|
- self::where('id',$order['id'])->update(['merch_money_is_to'=>1,'merch_to_return'=>json_encode($result,true)]);
|
|
|
- //语音播报
|
|
|
- $info = ['merch_id'=>$order['merch_id'],'url'=>$order['mp3_url']];
|
|
|
- self::websocknotice($info);
|
|
|
- }else{
|
|
|
- //self::where('id',$order['id'])->update(['merch_to_return'=>json_encode($result,true)]);
|
|
|
- self::where('id',$order['id'])->update(['merch_to_return'=>'失败']);
|
|
|
- }
|
|
|
- }elseif ($order['pay_type']=='zfb'){
|
|
|
- $userinfo = User::where('id',$user_id)->field('zfb_account,zfb_real_name')->find();
|
|
|
- if (!$userinfo['zfb_account'] || !$userinfo['zfb_real_name']){
|
|
|
- self::where('id',$order['id'])->update(['merch_to_return'=>'未绑定支付宝']);
|
|
|
- return false;
|
|
|
- }
|
|
|
- $zfb = new AliPay();//实例化支付宝支付控制器
|
|
|
- $result = $zfb->FundTransToaccount($order_sn, $userinfo['zfb_account'], $userinfo['zfb_real_name'], $order['merch_money'],'全民创商家收款');//调用支付宝支付的方法
|
|
|
- if (!empty($result) && $result == 10000){
|
|
|
- self::where('id',$order['id'])->update(['merch_money_is_to'=>1,'merch_to_return'=>json_encode($result,true)]);
|
|
|
- //语音播报
|
|
|
- $info = ['merch_id'=>$order['merch_id'],'url'=>$order['mp3_url']];
|
|
|
- self::websocknotice($info);
|
|
|
- }else{
|
|
|
-// if (!$result)
|
|
|
-// $result = '稍后重试';
|
|
|
- self::where('id',$order_id)->update(['merch_to_return'=>'稍后重试']);
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * 商家到账失败后续到账
|
|
|
- */
|
|
|
- public static function merchToMoney(){
|
|
|
- $orderlist = self::where('status','in','2,3')
|
|
|
- ->where('merch_collection_type',1)
|
|
|
- ->where('merch_money_is_to',0)
|
|
|
- ->where('merch_order_no','neq',' ')
|
|
|
- ->where('create_at','>','2020-08-07 10:41:38')
|
|
|
- ->where('merch_to_return','neq',' ')
|
|
|
- ->order('id asc')
|
|
|
- ->select();
|
|
|
- if ($orderlist){
|
|
|
- foreach ($orderlist as $k=>$v){
|
|
|
- $user_id = UserMerchInfo::where('id',$v['merch_id'])->value('user_id');
|
|
|
- if ($v['pay_type']=='weixin' || $v['pay_type']=='yue'){
|
|
|
- $opend_id = UserWeixin::where('user_id',$user_id)->value('openid');
|
|
|
- if (!$opend_id){
|
|
|
- self::where('id',$v['id'])->update(['merch_to_return'=>'未绑定微信']);
|
|
|
- continue;
|
|
|
- }else{
|
|
|
- $wx = new WxMerchPay();
|
|
|
- $result = $wx->sendMoney($v['merch_money'],$opend_id,$v['merch_order_no'],'全民创商家收款');
|
|
|
- if ($result['return_code']=='SUCCESS' && $result['result_code']=='SUCCESS'){
|
|
|
- self::where('id',$v['id'])->update(['merch_money_is_to'=>1,'merch_to_return'=>json_encode($result,true)]);
|
|
|
- //语音播报
|
|
|
- $info = ['merch_id'=>$v['merch_id'],'url'=>$v['mp3_url']];
|
|
|
- self::websocknotice($info);
|
|
|
- }else{
|
|
|
- self::where('id',$v['id'])->update(['merch_to_return'=>json_encode($result,true)]);
|
|
|
- }
|
|
|
- }
|
|
|
- }elseif ($v['pay_type']=='zfb'){
|
|
|
- $userinfo = User::where('id',$user_id)->field('zfb_account,zfb_real_name')->find();
|
|
|
- if (!$userinfo['zfb_account'] || !$userinfo['zfb_real_name']){
|
|
|
- self::where('id',$v['id'])->update(['merch_to_return'=>'未绑定支付宝']);
|
|
|
- continue;
|
|
|
- }
|
|
|
- $zfb = new AliPay();//实例化支付宝支付控制器
|
|
|
- $result = $zfb->FundTransToaccount($v['merch_order_no'], $userinfo['zfb_account'], $userinfo['zfb_real_name'], $v['merch_money'],'全民创商家收款');//调用支付宝支付的方法
|
|
|
- if (!empty($result) && $result == 10000){
|
|
|
- self::where('id',$v['id'])->update(['merch_money_is_to'=>1,'merch_to_return'=>json_encode($result,true)]);
|
|
|
- //语音播报
|
|
|
- $info = ['merch_id'=>$v['merch_id'],'url'=>$v['mp3_url']];
|
|
|
- self::websocknotice($info);
|
|
|
- }else{
|
|
|
- if (!$result)
|
|
|
- $result = '稍后重试';
|
|
|
- self::where('id',$v['id'])->update(['merch_to_return'=>$result]);
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- /**
|
|
|
- * 判断时间内是否有商家到账
|
|
|
- */
|
|
|
- public static function selMerchToMoney($merch_id,$seconds){
|
|
|
- //获取当前秒
|
|
|
- $now_seconds = date('s');
|
|
|
- //取余
|
|
|
- $yu = fmod(floatval($now_seconds),5);
|
|
|
- $start = time()-$yu-$seconds;
|
|
|
- $end = time()-$yu;
|
|
|
- $time = time()-$seconds;
|
|
|
-// $count = self::where('merch_id',$merch_id)->where('merch_money_is_to',1)->where(function ($query) use ($time){
|
|
|
-// $query->where('pay_time','>',$time)->whereor('verify_time','>',$time);
|
|
|
-// })->count();
|
|
|
- $count = self::where('merch_id',$merch_id)->where('merch_money_is_to',1)->where(function ($query) use ($start,$end){
|
|
|
- $query->where('pay_time','>=',$start)->where('pay_time','<=',$end);
|
|
|
- })->whereor(function ($query) use ($start,$end){
|
|
|
- $query->where('verify_time','>=',$start)->where('verify_time','<=',$end);
|
|
|
- })->count();
|
|
|
-// $order = self::where('merch_id',$merch_id)->where('merch_money_is_to',1)->where(function ($query) use ($time){
|
|
|
-// $query->where('pay_time','>',$time)->whereor('verify_time','>',$time);
|
|
|
-// })->order('id desc')->limit(1)->field('price,mp3_url,pay_type')->find();
|
|
|
- $order = self::where('merch_id',$merch_id)->where('merch_money_is_to',1)->where(function ($query) use ($start,$end){
|
|
|
- $query->where('pay_time','>=',$start)->where('pay_time','<=',$end);
|
|
|
- })->whereor(function ($query) use ($start,$end){
|
|
|
- $query->where('verify_time','>=',$start)->where('verify_time','<=',$end);
|
|
|
- })->order('id desc')->limit(1)->field('price,mp3_url,pay_type')->find();
|
|
|
- $money = $order['price'] ? $order['price'] : 0;
|
|
|
- $data['count'] = $count;
|
|
|
- $data['money'] = $money;
|
|
|
- $data['pay_type'] = $order['pay_type'];
|
|
|
- $data['url'] = $order['mp3_url'];
|
|
|
- return $data;
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- /**
|
|
|
- * 生成订单唯一核销码
|
|
|
- * @return string
|
|
|
- */
|
|
|
- public static function nonceStr(){
|
|
|
- //随机生成8位数字
|
|
|
- static $seed = array(0,1,2,3,4,5,6,7,8,9);
|
|
|
- $str = '';
|
|
|
- for($i=0;$i<8;$i++) {
|
|
|
- $rand = rand(0,count($seed)-1);
|
|
|
- $temp = $seed[$rand];
|
|
|
- $str .= $temp;
|
|
|
- unset($seed[$rand]);
|
|
|
- $seed = array_values($seed);
|
|
|
- }
|
|
|
- if (self::check_noncestr($str)) self::nonceStr();
|
|
|
- return $str;
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * 查看核销码是否存在
|
|
|
- */
|
|
|
- public static function check_noncestr($str){
|
|
|
- $order = self::where('verify_code',$str)->find();
|
|
|
- if ($order)
|
|
|
- return true;
|
|
|
- return false;
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- /**
|
|
|
- * @param $info
|
|
|
- * websock通知
|
|
|
- */
|
|
|
- public static function websocknotice($info){
|
|
|
- $data['merch_id'] = $info['merch_id'];
|
|
|
- $data['mp3'] = $info['url'];
|
|
|
- $data['create_at'] = date('Y-m-d H:i:s');
|
|
|
- RedisTongzhi::create($data);
|
|
|
- if ($_SERVER['HTTP_HOST']!='test.qmc.hdlkeji.com'){
|
|
|
- $info = json_encode($info,true);
|
|
|
- $redis = new \Rediscache();
|
|
|
- $result = $redis->rPush("merch_tongzhi",$info);
|
|
|
- }
|
|
|
-
|
|
|
- //直接把数据转发到ws处理
|
|
|
-// $client = new \swoole_http_client('0.0.0.0', 8000, false);
|
|
|
-// $client->on('message', function($client, $frame) {
|
|
|
-//
|
|
|
-// });
|
|
|
-// $client->upgrade('/', function($client) use ($info) {
|
|
|
-// //发送json消息
|
|
|
-// $client->push($info);
|
|
|
-// usleep(1000);
|
|
|
-// $client->close();
|
|
|
-// });
|
|
|
-// $client->start();
|
|
|
-
|
|
|
-// echo "<script>
|
|
|
-// var websocket = new WebSocket('ws://47.111.157.216:8000');
|
|
|
-// websocket.onopen = function (evt) {
|
|
|
-// if (websocket.readyState == 1) {
|
|
|
-// console.log('WebSocket 连接成功...');
|
|
|
-// websocket.send('$info');
|
|
|
-// } else {
|
|
|
-// console.log('WebSocket 连接失败...');
|
|
|
-// }
|
|
|
-// };
|
|
|
-// websocket.onclose = function (evt) {
|
|
|
-// console.log(\"Disconnected\");
|
|
|
-// };
|
|
|
-// //监听服务端回推的消息
|
|
|
-// websocket.onmessage = function (evt) {
|
|
|
-// console.log('返回');
|
|
|
-// };
|
|
|
-// websocket.onerror = function (evt, e) {
|
|
|
-// console.log('Error occured: ' + evt.data);
|
|
|
-// };
|
|
|
-// </script>";
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- public static function bu(){
|
|
|
- $orders = self::where('merch_id',43)->column('id');
|
|
|
- if ($orders){
|
|
|
- $tuijian = OrderTuijian::where('order_id','in',$orders)->where('type',2)->where('fid','in','2,3')->select();
|
|
|
- foreach ($tuijian as $k=>$v){
|
|
|
- $log = Db::name('UserMoneyLog')->where('user_id',$v['user_id'])->where('pm',1)->where('change_money',$v['profits_money'])->where('create_at',$v['create_at'])->find();
|
|
|
- if (!$log){
|
|
|
- echo $v['user_id']."--".$v['profits_money']."<br />";
|
|
|
-// $user = User::get($v['user_id']);
|
|
|
-// if ($user)
|
|
|
-// {
|
|
|
-// $before = $user->money;
|
|
|
-// $after = $user->money + $v['profits_money'];
|
|
|
-// //更新会员信息
|
|
|
-// $user->save(['money' => $after]);
|
|
|
-// //写入日志
|
|
|
-// MoneyLog::create(['user_id' => $v['user_id'],'pm' => 1, 'change_money' => $v['profits_money'], 'before' => $before, 'after' => $after, 'title' => $v['ins'].$v['profits_money'].'元']);
|
|
|
-// }
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- public static function jian(){
|
|
|
-
|
|
|
- $order = self::where('order_no','2020101910069257101984')->find();
|
|
|
-
|
|
|
- $merch_collection_type = UserMerchInfo::where('id',$order->merch_id)->value('collection_type');
|
|
|
- if (!$merch_collection_type==1)
|
|
|
- echo 2222;
|
|
|
- else
|
|
|
- echo 111;
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-// $list = OrderTuijian::whereIn('order_id','1195,1196,1197,1198')->select();
|
|
|
-// foreach ($list as $k=>$v){
|
|
|
-// $money_log = MoneyLog::where('user_id',$v['user_id'])->where('change_money',$v['profits_money'])->where('create_at',$v['create_at'])->find();
|
|
|
-// if ($money_log){
|
|
|
- // $user = Db::name('User')->where('id',$v['user_id'])->find();
|
|
|
-// User::where('id',$v['user_id'])->update(['money'=>bcsub($user['money'],$money_log['change_money'],2)]);
|
|
|
-// MoneyLog::where('id',$money_log['id'])->delete();
|
|
|
-// }
|
|
|
-// }
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- public static function jianqu(){
|
|
|
- $list = MerchMoneyLog::where('a.user_id',42)->alias('a')
|
|
|
- ->field('a.*,b.merch_collection_type,b.merch_money_is_to,b.merch_to_return')
|
|
|
- ->join('Order b','a.order_id=b.id')->select()->toArray();
|
|
|
- foreach ($list as $k=>$v){
|
|
|
- if ($v['merch_collection_type']==1 && $v['merch_money_is_to']==0){
|
|
|
- self::where('id',$v['order_id'])->update(['merch_collection_type'=>2,'merch_money_is_to'=>1,'merch_to_return'=>'已到商家余额']);
|
|
|
- }
|
|
|
- if ($v['merch_collection_type']==1 && $v['merch_money_is_to']==1){
|
|
|
-// $user = Db::name('UserMerchInfo')->where('id',$v['user_id'])->find();
|
|
|
-// echo $v['id']."<br />";
|
|
|
-// UserMerchInfo::where('id',$v['user_id'])->update(['money'=>bcsub($user['money'],$v['change_money'],2)]);
|
|
|
-// MerchMoneyLog::where('id',$v['id'])->delete();
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-}
|