diff --git a/application/api/controller/Article.php b/application/api/controller/Article.php index 39572f85..f14695e1 100644 --- a/application/api/controller/Article.php +++ b/application/api/controller/Article.php @@ -1574,8 +1574,8 @@ class Article extends Base return json(['code' => 1, 'msg' => "Before proceeding to the next step, you need more than two available reviewer comments, and the total number of accept is greater than the total number of rejected."]); } } - //接收必须查重小于20% - if ($data['state'] == 6 && $article_info['repetition'] > 25) { + //接收必须查重小于25%,2026.5.29更改,获取查重的来源 + if ($data['state'] == 6 && $this->getArticleRepetition($article_info['article_id']) > 25) { return jsonError("Submissions with a repetition rate greater than thirty percent will not be accepted"); } //预接收有时间限定必须大于14天