Merge branch 'hjb' of git.kingsome.cn:server/game2006api into hjb

This commit is contained in:
hujiabin 2024-06-11 14:49:44 +08:00
commit 26bc6bea5c

View File

@ -11,16 +11,36 @@ class GoldBullion extends BaseModel {
public static function onLogin() public static function onLogin()
{ {
$address = myself()->_getAddress();
if (empty($address)) {
return;
}
$rows = SqlHelper::ormSelect( $rows = SqlHelper::ormSelect(
myself()->_getSelfMysql(), myself()->_getSelfMysql(),
't_gold_bullion', 't_gold_bullion',
array( array(
'open_address' => myself()->_getAddress(), 'open_address' => myself()->_getAddress(),
'open_status' => self::OPEN_STATUS_PENDING, 'open_status' => self::OPEN_STATUS_PENDING,
'returned' => 0,
) )
); );
if (count($rows) > 0) { if (count($rows) > 0) {
foreach ($rows as $row) {
SqlHelper::update(
myself()->_getSelfMysql(),
't_gold_bullion',
array(
'idx' => $row['idx'],
'open_status' => self::OPEN_STATUS_PENDING
),
array(
'open_status' => self::OPEN_STATUS_SEND_BEGIN,
'open_try_count' => function () {
return "open_try_count + 1";
},
)
);
}
} }
} }