소스 검색

bugfix: EK-0524: 结算后台无法下载PDF订单.

kevinElken 7 달 전
부모
커밋
4a9143af5e
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      backendApi/modules/v1/controllers/UserController.php

+ 1 - 1
backendApi/modules/v1/controllers/UserController.php

@@ -162,7 +162,7 @@ class UserController extends BaseController
             $params = $filter['params'];
             $condition .= " AND UI.DELETED=0 AND U.COUNTRY_ID IN (" . implode(',', $quotedAdminCountry) . ")";
         } else {
-            $condition = $filter['condition'] . 'AND U.DELETED=0' ?? ' U.DELETED=0';
+            $condition = $filter['condition'] . ' AND U.DELETED=0' ?? ' AND U.DELETED=0';
             $params = $filter['params'];
         }