Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 1604 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 1604 Rev 1606
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', $company_id)
49
    public function fetchAllDataTable($search, $page = 1, $records_per_page = 10, $order_field= 'title', $order_direction = 'ASC', $company_id)
50
    {
50
    {
51
        $prototype = new PlanningObjectivesAndGoalsObjectives();
51
        $prototype = new PlanningObjectivesAndGoalsObjectives();
52
        $select = $this->sql->select(self::_TABLE);
52
        $select = $this->sql->select(self::_TABLE);
53
        $select->where->equalTo('company_id', $idCompany);
53
        $select->where->equalTo('company_id', $company_id);
Línea 54... Línea 54...
54
        $select->where->notEqualTo('status', PlanningObjectivesAndGoalsObjectives::STATUS_DELETE);
54
        $select->where->notEqualTo('status', PlanningObjectivesAndGoalsObjectives::STATUS_DELETE);
55
        
55