mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
[更新]修复微信支付订单号重复使用
This commit is contained in:
parent
44253a7fc9
commit
d39a7d2fb1
@ -117,8 +117,8 @@ class PayService {
|
||||
* @return bool|string
|
||||
*/
|
||||
public static function createWechatPrepayid(WechatPay $pay, $openid, $order_no, $fee, $title, $trade_type = 'JSAPI', $from = 'wechat') {
|
||||
$map = ['order_no' => $order_no, 'is_pay' => '1', 'expires_in' => time(), 'appid' => $pay->appid];
|
||||
$where = 'appid=:appid and order_no=:order_no and (is_pay=:is_pay or expires_in>:expires_in)';
|
||||
$map = ['order_no' => $order_no, 'is_pay' => '1', 'expires_in' => time(), 'appid' => $pay->appid, 'trade_type' => $trade_type];
|
||||
$where = 'appid=:appid and order_no=:order_no and (is_pay=:is_pay or expires_in>:expires_in) and trade_type=:trade_type';
|
||||
$prepayinfo = Db::name('WechatPayPrepayid')->where($where, $map)->find();
|
||||
if (empty($prepayinfo) || empty($prepayinfo['prepayid'])) {
|
||||
$out_trade_no = DataService::createSequence(18, 'WXPAY-OUTER-NO');
|
||||
|
Loading…
x
Reference in New Issue
Block a user