正在显示
1 个修改的文件
包含
2 行增加
和
1 行删除
| @@ -296,9 +296,10 @@ class WebTraffic extends Command | @@ -296,9 +296,10 @@ class WebTraffic extends Command | ||
| 296 | ->leftJoin('gl_project_online_check as poc', 'poc.project_id', '=', 'gl_project.id') | 296 | ->leftJoin('gl_project_online_check as poc', 'poc.project_id', '=', 'gl_project.id') |
| 297 | ->where('pdo.domain', '>', 0) | 297 | ->where('pdo.domain', '>', 0) |
| 298 | ->where('poc.qa_status', OnlineCheck::STATUS_ONLINE_TRUE) | 298 | ->where('poc.qa_status', OnlineCheck::STATUS_ONLINE_TRUE) |
| 299 | - ->whereIn('gl_project.type', [Project::TYPE_TWO, Project::TYPE_FOUR]) | 299 | + ->where('gl_project.type', Project::TYPE_TWO) |
| 300 | ->where('gl_project.is_upgrade', 0) //非升级项目 | 300 | ->where('gl_project.is_upgrade', 0) //非升级项目 |
| 301 | ->where('gl_project.main_lang_id', '<>', $ru_lang_id) //非俄语站 | 301 | ->where('gl_project.main_lang_id', '<>', $ru_lang_id) //非俄语站 |
| 302 | + ->WhereRaw("NOT FIND_IN_SET(2, `level`)") //非暂停优化 | ||
| 302 | ->where(function ($query) use ($type) { | 303 | ->where(function ($query) use ($type) { |
| 303 | if($type == 1){ | 304 | if($type == 1){ |
| 304 | //1-3个月项目 | 305 | //1-3个月项目 |
-
请 注册 或 登录 后发表评论