add NotSubmitted function
This commit is contained in:
parent
e402271180
commit
8817a2eb85
|
@ -139,6 +139,16 @@ class Offlineapp
|
|||
return $dbh->select($opt);
|
||||
}//未接受的
|
||||
|
||||
public function fetchNotSubmitted()
|
||||
{
|
||||
$opt = $this->offLineAppMakeQuery(array(
|
||||
'where' => ' o.offlineappid != -1 AND o.status=2 and off.pdflink is not null'
|
||||
));
|
||||
$dbh = new dbh();
|
||||
//echo $dbh->select($opt,true);exit();
|
||||
return $dbh->select($opt);
|
||||
}//未提交pdf的数据申请,用于替用户重置后重新上传pdf
|
||||
|
||||
public function fetchNoPdf()
|
||||
{
|
||||
$opt = $this->offLineAppMakeQuery(array(
|
||||
|
|
Loading…
Reference in New Issue