|
@@ -120,11 +120,13 @@ class AuctionProc {
|
|
|
EmailProc::SendCantSellAuctionItemsMail(req()->zoneid, req()->uid, $ctxList[0],$ctxList[1]);
|
|
|
|
|
|
self::updateAuctionItemState($aucItem);
|
|
|
- $obj = self::updateAuctionUserItemListCache();
|
|
|
-
|
|
|
+ self::updateAuctionUserItemListCache();
|
|
|
+
|
|
|
+ $dic = self::getMyAuctionItems();#上架信息
|
|
|
+
|
|
|
UserProc::updateUserInfo(); # 回写玩家数据
|
|
|
return Resp::ok(array(
|
|
|
- "auction" => $obj->data,
|
|
|
+ "auction" => $dic,
|
|
|
));
|
|
|
}
|
|
|
|
|
@@ -296,7 +298,7 @@ class AuctionProc {
|
|
|
$zoneid = req()->zoneid;
|
|
|
$uid = req()->uid;
|
|
|
$db = daoInst();
|
|
|
- $sql = "select * from tab_auctionitems where zoneid=$zoneid and sellerid = '$uid' and datediff(from_unixtime($ts),from_unixtime(startts))<=7";
|
|
|
+ $sql = "select * from tab_auctionitems where zoneid=$zoneid and sellerid = '$uid'";
|
|
|
$result = $db->query($sql)->fetchAll();
|
|
|
|
|
|
return $result;
|