* Finish task#36938.

This commit is contained in:
leiyong
2021-02-24 10:31:20 +08:00
parent ad77275e2a
commit 13a304980d
13 changed files with 69 additions and 25 deletions
+1 -4
View File
@@ -59,10 +59,7 @@ class programModel extends model
*/
public function getPGMOption()
{
return $this->dao->select('id,name')->from(TABLE_PROGRAM)
->where('type')->eq('program')
->andWhere('deleted')->eq(0)
->fetchPairs();
return $this->dao->select('id,name')->from(TABLE_PROGRAM)->where('type')->eq('program')->andWhere('deleted')->eq(0)->fetchPairs();
}
/**