From 5c43fce1dbc606c01e38883dfa4c913382ba4e5a Mon Sep 17 00:00:00 2001 From: wangjinlei <751475802@qq.com> Date: Wed, 7 May 2025 12:37:46 +0800 Subject: [PATCH] =?UTF-8?q?=E5=B0=8Fbug=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/api/controller/Production.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/application/api/controller/Production.php b/application/api/controller/Production.php index 3dc1ecf..857e4c1 100644 --- a/application/api/controller/Production.php +++ b/application/api/controller/Production.php @@ -695,6 +695,9 @@ class Production extends Base return jsonError('Warning: It is a violation to publish your article online without completing PROOF. The ONLINE step will only continue if you have completed the PROOF step.'); } + //参考文献重复的不能提交 + $this->production_article_refer_obj->where("p_article_id",$data['p_article_id'])->where("state",0)->group("refer_doi")-> + $article_info = $this->article_obj->where('article_id', $p_info['article_id'])->find(); $journal_info = $this->journal_obj->where('journal_id', $article_info['journal_id'])->find(); $authors = $this->production_article_author_obj->where('p_article_id', $data['p_article_id'])->where('state', 0)->select();