This commit is contained in:
wangjinlei
2025-07-17 09:09:35 +08:00
parent d97a926e8f
commit 93a9614a0f
2 changed files with 3 additions and 3 deletions

View File

@@ -589,7 +589,7 @@ class Journal extends Controller {
->select();
$stage_info = $this->journal_stage_obj->where('journal_stage_id', $journal_info['publish_stage_id'])->find();
$list = strongArticleList($list);
$list = strongArticleList($list,false);
// foreach ($list as $k => $v){
// $cache_topic = $this->article_to_topic_obj->field('j_journal_topic.*')->join('j_journal_topic', 'j_journal_topic.journal_topic_id = j_article_to_topic.topic_id', 'left')->where('j_article_to_topic.article_id', $v['article_id'])->where('j_article_to_topic.state', 0)->select();
// $list[$k]['topic'] = $cache_topic;

View File

@@ -348,7 +348,7 @@ function pushSFTPForScopus($file,$pdf_file,$stage_info)
}
function strongArticleList($list){
function strongArticleList($list,$hh=true){
$journal_stage_obj = Db::name("journal_stage");
$journal_obj = Db::name("journal");
$journals_ltai_obj = Db::name("article_ltai");
@@ -363,7 +363,7 @@ function strongArticleList($list){
$list[$k]['cite'] = $cite;
$list[$k]['authortitle'] = getAuthor($v);
$list[$k]["mains"] = null;
$list[$k]['has_html'] = hasHtml($v['article_id']);
$list[$k]['has_html'] = $hh?hasHtml($v['article_id']):1;
$list[$k]["cite_num"] = $article_cite_obj->where("article_id",$v['article_id'])->where("state",1)->where("is_wos",1)->count();
$list[$k]['stage_year'] = $stage_info['stage_year'];
$list[$k]['journal_short'] = $journal_info["jabbr"];