This commit is contained in:
aozhiwei 2024-07-09 20:16:19 +08:00
parent c8fc15f587
commit 80346322cf

View File

@ -761,17 +761,15 @@ EOD;
private function doReturn($gameDbConn, $row)
{
echo json_encode($row);
return;
{
$row = SqlHelper::ormSelectOne(
$tmpRow = SqlHelper::ormSelectOne(
$gameDbConn,
't_gold_bullion_return',
array(
'account_id' => $row['src_account_id'],
)
);
if (!empty($row)) {
if (!empty($tmpRow)) {
return;
}
}