大更新,1投稿系统参考文献的类型增加功能,,,2官网数据库功能
This commit is contained in:
@@ -107,7 +107,7 @@ class Journal extends Controller
|
||||
}
|
||||
|
||||
//新增查询信息journalAbs chengxiaoling 20250928 start
|
||||
$abs = $this->journal_abs_obj->where('journal_id', $v['journal_id'])->where('state', 0)->order('sort')->select();
|
||||
$abs = $this->journal_abs_obj->where('journal_id', $v['journal_id'])->where('state', 0)->whereRaw('(is_show IS NULL OR is_show <> 0)')->order('sort')->select();
|
||||
$res[$k]['journalAbs'] = $abs;
|
||||
|
||||
//查询期刊编委
|
||||
@@ -161,7 +161,7 @@ class Journal extends Controller
|
||||
$journal_info = $this->journal_obj->where('journal_id', $data['journal_id'])->find();
|
||||
$rearr = $journal_info['relate'] == '' ? [] : explode(',', $journal_info['relate']);
|
||||
$relatelist = $this->journal_obj->where('journal_id', 'in', $rearr)->where('state', 0)->select();
|
||||
$absList = $this->journal_abs_obj->where('journal_id', $data['journal_id'])->where('state', 0)->order('sort')->select();
|
||||
$absList = $this->journal_abs_obj->where('journal_id', $data['journal_id'])->where('state', 0)->whereRaw('(is_show IS NULL OR is_show <> 0)')->order('sort')->select();
|
||||
$stageList = $this->journal_stage_obj->where('journal_id', $data['journal_id'])->where('is_publish', 1)->where('state', 0)->order('stage_year desc,stage_no desc')->select();
|
||||
|
||||
//获取期刊主编辑 chengxiaoling start 20250626
|
||||
@@ -498,7 +498,7 @@ class Journal extends Controller
|
||||
->select();
|
||||
|
||||
foreach ($list as $k => $v) {
|
||||
$abs = $this->journal_abs_obj->where('journal_id', $v['journal_id'])->where('state', 0)->order('sort')->limit(4)->select();
|
||||
$abs = $this->journal_abs_obj->where('journal_id', $v['journal_id'])->where('state', 0)->whereRaw('(is_show IS NULL OR is_show <> 0)')->order('sort')->limit(4)->select();
|
||||
$list[$k]['abs'] = $abs;
|
||||
}
|
||||
|
||||
@@ -555,7 +555,7 @@ class Journal extends Controller
|
||||
}
|
||||
//获取期刊主编辑 chengxiaoling end 20251210
|
||||
foreach ($list as $k => $v) {
|
||||
$abs = $this->journal_abs_obj->where('journal_id', $v['journal_id'])->where('state', 0)->order('sort')->limit(4)->select();
|
||||
$abs = $this->journal_abs_obj->where('journal_id', $v['journal_id'])->where('state', 0)->whereRaw('(is_show IS NULL OR is_show <> 0)')->order('sort')->limit(4)->select();
|
||||
$list[$k]['abs'] = $abs;
|
||||
//获取期刊主编辑 chengxiaoling start 20251210
|
||||
$sIssn = empty($v['issn']) ? '' : $v['issn'];
|
||||
|
||||
Reference in New Issue
Block a user