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) private function doReturn($gameDbConn, $row)
{ {
echo json_encode($row);
return;
{ {
$row = SqlHelper::ormSelectOne( $tmpRow = SqlHelper::ormSelectOne(
$gameDbConn, $gameDbConn,
't_gold_bullion_return', 't_gold_bullion_return',
array( array(
'account_id' => $row['src_account_id'], 'account_id' => $row['src_account_id'],
) )
); );
if (!empty($row)) { if (!empty($tmpRow)) {
return; return;
} }
} }