|
@@ -3,12 +3,14 @@
|
|
|
|
|
|
namespace app\api\controller;
|
|
namespace app\api\controller;
|
|
|
|
|
|
-use Alipay\EasySDK\Kernel\Util\ResponseChecker;
|
|
|
|
-use app\common\library\AliPay;
|
|
|
|
-use app\common\library\Shande;
|
|
|
|
|
|
+use think\Db;
|
|
use EasyWeChat\Factory;
|
|
use EasyWeChat\Factory;
|
|
use think\cache\driver\Redis;
|
|
use think\cache\driver\Redis;
|
|
-use think\Db;
|
|
|
|
|
|
+use app\common\library\AliPay;
|
|
|
|
+use app\common\library\Shande;
|
|
|
|
+use app\api\service\CacheService;
|
|
|
|
+use app\index\enum\SecondaryEnum;
|
|
|
|
+use Alipay\EasySDK\Kernel\Util\ResponseChecker;
|
|
use function EasyWeChat\Kernel\Support\get_client_ip;
|
|
use function EasyWeChat\Kernel\Support\get_client_ip;
|
|
|
|
|
|
|
|
|
|
@@ -255,6 +257,7 @@ class Secondary extends Base
|
|
$info = Db::name('store_order_info')->where('id',$id)->find();
|
|
$info = Db::name('store_order_info')->where('id',$id)->find();
|
|
if (!$info) $this->error('藏品不存在');
|
|
if (!$info) $this->error('藏品不存在');
|
|
if ($info['resale_status']==3) $this->error('藏品已出售');
|
|
if ($info['resale_status']==3) $this->error('藏品已出售');
|
|
|
|
+
|
|
if ($info['resale_status']==1) $this->error('藏品已撤销出售');
|
|
if ($info['resale_status']==1) $this->error('藏品已撤销出售');
|
|
if ($info['mid']==$this->uid) $this->error('不能购买自己出售的藏品');
|
|
if ($info['mid']==$this->uid) $this->error('不能购买自己出售的藏品');
|
|
|
|
|
|
@@ -268,6 +271,14 @@ class Secondary extends Base
|
|
$count = Db::name('store_order_info_order')->where('info_id',$id)->where('status',0)->count();
|
|
$count = Db::name('store_order_info_order')->where('info_id',$id)->where('status',0)->count();
|
|
if ($count) $this->error('支付中,无法下单');
|
|
if ($count) $this->error('支付中,无法下单');
|
|
|
|
|
|
|
|
+ // 拿锁,防止超卖
|
|
|
|
+ $lockKey = SecondaryEnum::CREATE_ORDER_KEY;
|
|
|
|
+ $lock = CacheService::incr($lockKey);
|
|
|
|
+ if ($lock > 1) {//没有拿到锁
|
|
|
|
+ $this->error('藏品已出售');
|
|
|
|
+ }
|
|
|
|
+ CacheService::expire($lockKey, 5);
|
|
|
|
+
|
|
$service_fee = getConfigValue('service_fee');
|
|
$service_fee = getConfigValue('service_fee');
|
|
$royalties = getConfigValue('royalties');
|
|
$royalties = getConfigValue('royalties');
|
|
$com = true;
|
|
$com = true;
|