This commit is contained in:
hujiabin 2024-08-02 15:31:44 +08:00
parent 7b756051a9
commit 502039d2ac

View File

@ -154,7 +154,7 @@ class InGameMallController extends BaseAuthedController {
'custom_func' => function () use ($queryData) {
$typeFilter = $queryData['type_filter'];
if ($typeFilter == 1){
return "AND (order_type = 1) OR (order_type = 4)";
return "AND ((order_type = 1) OR (order_type = 4))";
}else{
return "AND (order_type = '${typeFilter}')";
}