|
@@ -80,7 +80,7 @@ class AuctionProc {
|
|
|
|
|
|
$buyoutPrice = $aucItem->buyoutPrice;
|
|
|
|
|
|
- my_Assert($aucItem->sellerid == req()->uid, "不能竞拍自己的拍品");
|
|
|
+ my_Assert($aucItem->sellerid != req()->uid, "不能竞拍自己的拍品");
|
|
|
|
|
|
$price = $buyoutPrice + intval($buyoutPrice * 0.05);
|
|
|
my_Assert(req()->userInfo->game->baseInfo->cash >=$price, ErrCode::notenough_cash_msg);
|