mirror of
https://github.com/crmeb/CRMEB.git
synced 2025-12-15 04:52:50 +00:00
62 lines
2.1 KiB
PHP
62 lines
2.1 KiB
PHP
<?php
|
|
/**
|
|
*
|
|
* @author: xaboy<365615158@qq.com>
|
|
* @day: 2018/01/05
|
|
*/
|
|
|
|
namespace app\routine\model\user;
|
|
|
|
use basic\ModelBasic;
|
|
use service\RoutineService;
|
|
use service\MiniProgramService;
|
|
use traits\ModelTrait;
|
|
|
|
class UserRecharge extends ModelBasic
|
|
{
|
|
use ModelTrait;
|
|
|
|
protected $insert = ['add_time'];
|
|
|
|
protected function setAddTimeAttr()
|
|
{
|
|
return time();
|
|
}
|
|
|
|
public static function addRecharge($uid,$price,$recharge_type = 'routine',$paid = 0)
|
|
{
|
|
$order_id = self::getNewOrderId($uid);
|
|
return self::set(compact('order_id','uid','price','recharge_type','paid'));
|
|
}
|
|
|
|
public static function getNewOrderId($uid = 0)
|
|
{
|
|
if(!$uid) return false;
|
|
$count = (int) self::where('add_time',['>=',strtotime(date("Y-m-d"))],['<',strtotime(date("Y-m-d",strtotime('+1 day')))])->count();
|
|
return 'wx1'.date('YmdHis',time()).(10000+$count+$uid);
|
|
}
|
|
|
|
public static function jsPay($orderInfo)
|
|
{
|
|
return MiniProgramService::jsPay(WechatUser::uidToOpenid($orderInfo['uid']),$orderInfo['order_id'],$orderInfo['price'],'user_recharge','用户充值');//2.5.36
|
|
// return RoutineService::payRoutine(WechatUser::uidToOpenid($orderInfo['uid']),$orderInfo['order_id'],$orderInfo['price'],'user_recharge','用户充值');
|
|
}
|
|
|
|
/**
|
|
* //TODO用户充值成功后
|
|
* @param $orderId
|
|
*/
|
|
public static function rechargeSuccess($orderId)
|
|
{
|
|
$order = self::where('order_id',$orderId)->where('paid',0)->find();
|
|
if(!$order) return false;
|
|
$user = User::getUserInfo($order['uid']);
|
|
self::beginTrans();
|
|
$res1 = self::where('order_id',$order['order_id'])->update(['paid'=>1,'pay_time'=>time()]);
|
|
$res2 = UserBill::income('用户余额充值',$order['uid'],'now_money','recharge',$order['price'],$order['id'],bcadd($user['now_money'],$order['price'],2),'成功充值余额'.floatval($order['price']).'元');
|
|
$res3 = User::edit(['now_money'=>bcadd($user['now_money'],$order['price'],2)],$order['uid'],'uid');
|
|
$res = $res1 && $res2 && $res3;
|
|
self::checkTrans($res);
|
|
return $res;
|
|
}
|
|
} |