11
This commit is contained in:
@@ -589,7 +589,7 @@ class Journal extends Controller {
|
|||||||
->select();
|
->select();
|
||||||
$stage_info = $this->journal_stage_obj->where('journal_stage_id', $journal_info['publish_stage_id'])->find();
|
$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){
|
// 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();
|
// $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;
|
// $list[$k]['topic'] = $cache_topic;
|
||||||
|
|||||||
@@ -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_stage_obj = Db::name("journal_stage");
|
||||||
$journal_obj = Db::name("journal");
|
$journal_obj = Db::name("journal");
|
||||||
$journals_ltai_obj = Db::name("article_ltai");
|
$journals_ltai_obj = Db::name("article_ltai");
|
||||||
@@ -363,7 +363,7 @@ function strongArticleList($list){
|
|||||||
$list[$k]['cite'] = $cite;
|
$list[$k]['cite'] = $cite;
|
||||||
$list[$k]['authortitle'] = getAuthor($v);
|
$list[$k]['authortitle'] = getAuthor($v);
|
||||||
$list[$k]["mains"] = null;
|
$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]["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]['stage_year'] = $stage_info['stage_year'];
|
||||||
$list[$k]['journal_short'] = $journal_info["jabbr"];
|
$list[$k]['journal_short'] = $journal_info["jabbr"];
|
||||||
|
|||||||
Reference in New Issue
Block a user