Línea 49... |
Línea 49... |
49 |
|
49 |
|
50 |
public function fetchAllDataTable($search, $page = 1, $records_per_page = 10, $order_field= 'title', $order_direction = 'ASC', $id_goals)
|
50 |
public function fetchAllDataTable($search, $page = 1, $records_per_page = 10, $order_field= 'title', $order_direction = 'ASC', $id_goals)
|
51 |
{
|
51 |
{
|
52 |
$prototype = new PlanningObjectivesAndGoalsTask();
|
52 |
$prototype = new PlanningObjectivesAndGoalsTask();
|
53 |
$select = $this->sql->select(self::_TABLE);
|
53 |
$select = $this->sql->select(self::_TABLE);
|
54 |
$select->where->equalTo('id_goals', $id_goals)->equalTo('status', 'a');
|
54 |
$select->where->equalTo('id_goals', $id_goals);
|
Línea 55... |
Línea 55... |
55 |
$select->where->notEqualTo('status', PlanningObjectivesAndGoalsTask::STATUS_DELETE);
|
55 |
$select->where->notEqualTo('status', PlanningObjectivesAndGoalsTask::STATUS_DELETE);
|
56 |
|
56 |
|
Línea 75... |
Línea 75... |
75 |
}
|
75 |
}
|
76 |
public function fetchAll($id_goals)
|
76 |
public function fetchAll($id_goals)
|
77 |
{
|
77 |
{
|
78 |
$prototype = new PlanningObjectivesAndGoalsTask();
|
78 |
$prototype = new PlanningObjectivesAndGoalsTask();
|
79 |
$select = $this->sql->select(self::_TABLE);
|
79 |
$select = $this->sql->select(self::_TABLE);
|
80 |
$select->where->equalTo('id_goals', $id_goals);
|
80 |
$select->where->equalTo('id_goals', $id_goals)->equalTo('status', 'a');
|
81 |
$select->where->notEqualTo('status', PlanningObjectivesAndGoalsTask::STATUS_DELETE);
|
81 |
$select->where->notEqualTo('status', PlanningObjectivesAndGoalsTask::STATUS_DELETE);
|
82 |
return $this->executeFetchAllObject($select, $prototype);
|
82 |
return $this->executeFetchAllObject($select, $prototype);
|
Línea 83... |
Línea 83... |
83 |
|
83 |
|