diff --git a/app/api/logic/order/OrderLogic.php b/app/api/logic/order/OrderLogic.php index 77bffd3..6966593 100644 --- a/app/api/logic/order/OrderLogic.php +++ b/app/api/logic/order/OrderLogic.php @@ -56,7 +56,7 @@ class OrderLogic extends BaseLogic } $order = [ 'time' => time(), - 'number' => static::getNewOrderId('PF'), + 'number' => getNewOrderId('PF'), 'total' => self::$total, 'pay_type' => $params['pay_type'] ?? 0, 'cart_id' => implode(',', $cartId), diff --git a/app/functions.php b/app/functions.php index 3eaae0f..8d171b0 100644 --- a/app/functions.php +++ b/app/functions.php @@ -324,7 +324,7 @@ if (!function_exists('getNewOrderId')) { { list($msec, $sec) = explode(' ', microtime()); $msectime = number_format((floatval($msec) + floatval($sec)) * 1000, 0, '', ''); - $orderId = $type . $msectime . mt_rand(10000, max(intval($msec * 10000) + 10000, 98369)); + $orderId = $type . $msectime . mt_rand(100, max(intval($msec * 10) + 100, 983)); return $orderId; } }