This commit is contained in:
wangjinlei
2024-10-28 14:39:11 +08:00
parent ccef02e46c
commit a6804ba463
2 changed files with 26 additions and 1 deletions

View File

@@ -70,7 +70,7 @@ class Submision extends Controller {
return jsonError($rule->getError());
}
$journal_info = $this->journal_obj->where('issn',$data['issn'])->find();
$list = $this->journal_stage_obj->where('journal_id',$journal_info['journal_id'])->where('state',0)->select();
$list = $this->journal_stage_obj->where('journal_id',$journal_info['journal_id'])->where('state',0)->order("stage_year,stage_no")->select();
$re['stages'] = $list;
return jsonSuccess($re);
}