|
...
|
...
|
@@ -236,8 +236,11 @@ class CNoticeController extends BaseController |
|
|
|
if(!$project_info){
|
|
|
|
$this->fail('未查询到项目数据');
|
|
|
|
}
|
|
|
|
$project_ids = [
|
|
|
|
4041,4094,3514
|
|
|
|
];
|
|
|
|
// --------------------------------------------------- 特殊处理通知生成页面 --------------------------------------------------------------
|
|
|
|
if ($type == 2 && ($project_id != 4041) && ($project_id != 4094) && ($project_info['main_lang_id'] == 8)) {
|
|
|
|
if ($type == 2 && !in_array($project_id,$project_ids) && ($project_info['main_lang_id'] == 8)) {
|
|
|
|
$this->fail('申请项目主语种为俄语,禁止翻译小语种,如若需要翻译小语种, 请联系售后人员确认!');
|
|
|
|
}
|
|
|
|
|
...
|
...
|
|