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