* * Este programa é software livre; você pode redistribuí-lo e/ou modificá-lo * sob os termos da Licença Pública Geral GNU conforme publicada pela Free * Software Foundation; tanto a versão 2 da Licença, como (a seu critério) * qualquer versão posterior. * * Este programa é distribuí­do na expectativa de que seja útil, porém, SEM * NENHUMA GARANTIA; nem mesmo a garantia implí­cita de COMERCIABILIDADE OU * ADEQUAÇÃO A UMA FINALIDADE ESPECÍFICA. Consulte a Licença Pública Geral * do GNU para mais detalhes. * * Você deve ter recebido uma cópia da Licença Pública Geral do GNU junto * com este programa; se não, escreva para a Free Software Foundation, Inc., no * endereço 59 Temple Street, Suite 330, Boston, MA 02111-1307 USA. * * @author Prefeitura Municipal de Itajaí * @category i-Educar * @license @@license@@ * @package iEd_Pmieducar * @since Arquivo disponível desde a versão 1.0.0 * @version $Id$ */ require_once 'include/pmieducar/geral.inc.php'; /** * clsPmieducarDispensaDisciplina class. * * @author Prefeitura Municipal de Itajaí * @category i-Educar * @license @@license@@ * @package iEd_Pmieducar * @since Classe disponível desde a versão 1.0.0 * @version @@package_version@@ */ class clsPmieducarDispensaDisciplina { var $ref_cod_matricula; var $ref_cod_serie; var $ref_cod_escola; var $ref_cod_disciplina; var $ref_usuario_exc; var $ref_usuario_cad; var $ref_cod_tipo_dispensa; var $data_cadastro; var $data_exclusao; var $ativo; var $observacao; var $cod_dispensa; /** * Armazena o total de resultados obtidos na última chamada ao método lista(). * @var int */ var $_total; /** * Nome do schema. * @var string */ var $_schema; /** * Nome da tabela. * @var string */ var $_tabela; /** * Lista separada por vírgula, com os campos que devem ser selecionados na * próxima chamado ao método lista(). * @var string */ var $_campos_lista; /** * Lista com todos os campos da tabela separados por vírgula, padrão para * seleção no método lista. * @var string */ var $_todos_campos; /** * Valor que define a quantidade de registros a ser retornada pelo método lista(). * @var int */ var $_limite_quantidade; /** * Define o valor de offset no retorno dos registros no método lista(). * @var int */ var $_limite_offset; /** * Define o campo para ser usado como padrão de ordenação no método lista(). * @var string */ var $_campo_order_by; /** * Construtor. */ function clsPmieducarDispensaDisciplina($ref_cod_matricula = NULL, $ref_cod_serie = NULL, $ref_cod_escola = NULL, $ref_cod_disciplina = NULL, $ref_usuario_exc = NULL, $ref_usuario_cad = NULL, $ref_cod_tipo_dispensa = NULL, $data_cadastro = NULL, $data_exclusao = NULL, $ativo = NULL, $observacao = NULL, $cod_dispensa = NULL) { $db = new clsBanco(); $this->_schema = 'pmieducar.'; $this->_tabela = $this->_schema . 'dispensa_disciplina'; $this->_campos_lista = $this->_todos_campos = 'ref_cod_matricula, ref_cod_serie, ref_cod_escola, ref_cod_disciplina, ref_usuario_exc, ref_usuario_cad, ref_cod_tipo_dispensa, data_cadastro, data_exclusao, ativo, observacao'; if (is_numeric($ref_usuario_exc)) { $usuario = new clsPmieducarUsuario($ref_usuario_exc); if ($usuario->existe()) { $this->ref_usuario_exc = $ref_usuario_exc; } } if (is_numeric($ref_usuario_cad)) { $usuario = new clsPmieducarUsuario($ref_usuario_cad); if ($usuario->existe()) { $this->ref_usuario_cad = $ref_usuario_cad; } } if (is_numeric($ref_cod_matricula)) { $matricula = new clsPmieducarMatricula($ref_cod_matricula); if ($matricula->existe()) { $this->ref_cod_matricula = $ref_cod_matricula; } } if (is_numeric($ref_cod_tipo_dispensa)) { $tipoDispensa = new clsPmieducarTipoDispensa($ref_cod_tipo_dispensa); if ($tipoDispensa->existe()) { $this->ref_cod_tipo_dispensa = $ref_cod_tipo_dispensa; } } if (is_numeric($ref_cod_disciplina) && is_numeric($ref_cod_escola) && is_numeric($ref_cod_serie) ) { require_once 'ComponenteCurricular/Model/AnoEscolarDataMapper.php'; $anoEscolarMapper = new ComponenteCurricular_Model_AnoEscolarDataMapper(); $componenteAnos = $anoEscolarMapper->findAll(array(), array( 'componenteCurricular' => $ref_cod_disciplina, 'anoEscolar' => $ref_cod_serie )); if (1 == count($componenteAnos)) { $this->ref_cod_disciplina = $ref_cod_disciplina; $this->ref_cod_serie = $ref_cod_serie; $this->ref_cod_escola = $ref_cod_escola; } } if (is_string($data_cadastro)) { $this->data_cadastro = $data_cadastro; } if (is_string($data_exclusao)) { $this->data_exclusao = $data_exclusao; } if (is_numeric($ativo)) { $this->ativo = $ativo; } if (is_string($observacao)) { $this->observacao = $observacao; } if (is_numeric($cod_dispensa)) { $this->cod_dispensa = $cod_dispensa; } } /** * Cria um novo registro. * @return bool */ function cadastra() { if (is_numeric($this->ref_cod_matricula) && is_numeric($this->ref_cod_serie) && is_numeric($this->ref_cod_escola) && is_numeric($this->ref_cod_disciplina) && is_numeric($this->ref_usuario_cad) && is_numeric($this->ref_cod_tipo_dispensa) && is_numeric($this->cod_dispensa)) { $db = new clsBanco(); $campos = ''; $valores = ''; $gruda = ''; if (is_numeric($this->ref_cod_matricula)) { $campos .= "{$gruda}ref_cod_matricula"; $valores .= "{$gruda}'{$this->ref_cod_matricula}'"; $gruda = ', '; } if (is_numeric($this->ref_cod_serie)) { $campos .= "{$gruda}ref_cod_serie"; $valores .= "{$gruda}'{$this->ref_cod_serie}'"; $gruda = ', '; } if (is_numeric($this->ref_cod_escola)) { $campos .= "{$gruda}ref_cod_escola"; $valores .= "{$gruda}'{$this->ref_cod_escola}'"; $gruda = ', '; } if (is_numeric($this->ref_cod_disciplina)) { $campos .= "{$gruda}ref_cod_disciplina"; $valores .= "{$gruda}'{$this->ref_cod_disciplina}'"; $gruda = ', '; } if (is_numeric($this->ref_usuario_cad)) { $campos .= "{$gruda}ref_usuario_cad"; $valores .= "{$gruda}'{$this->ref_usuario_cad}'"; $gruda = ', '; } if (is_numeric($this->ref_cod_tipo_dispensa)) { $campos .= "{$gruda}ref_cod_tipo_dispensa"; $valores .= "{$gruda}'{$this->ref_cod_tipo_dispensa}'"; $gruda = ', '; } $campos .= "{$gruda}data_cadastro"; $valores .= "{$gruda}NOW()"; $gruda = ', '; $campos .= "{$gruda}ativo"; $valores .= "{$gruda}'1'"; $gruda = ', '; if (is_string($this->observacao)) { $campos .= "{$gruda}observacao"; $valores .= "{$gruda}'{$this->observacao}'"; $gruda = ', '; } if (is_numeric($this->cod_dispensa)) { $campos .= "{$gruda}cod_dispensa"; $valores .= "{$gruda}'{$this->cod_dispensa}'"; $gruda = ', '; } $sql = "INSERT INTO {$this->_tabela} ($campos) VALUES ($valores)"; $db->Consulta($sql); return TRUE; } return FALSE; } /** * Edita os dados de um registro. * @return bool */ function edita() { if (is_numeric($this->ref_cod_matricula) && is_numeric($this->ref_cod_serie) && is_numeric($this->ref_cod_escola) && is_numeric($this->ref_cod_disciplina) && is_numeric($this->ref_usuario_exc) ) { $db = new clsBanco(); $set = ''; if (is_numeric($this->ref_usuario_exc)) { $set .= "{$gruda}ref_usuario_exc = '{$this->ref_usuario_exc}'"; $gruda = ', '; } if (is_numeric($this->ref_usuario_cad)) { $set .= "{$gruda}ref_usuario_cad = '{$this->ref_usuario_cad}'"; $gruda = ', '; } if (is_numeric($this->ref_cod_tipo_dispensa)) { $set .= "{$gruda}ref_cod_tipo_dispensa = '{$this->ref_cod_tipo_dispensa}'"; $gruda = ', '; } if (is_string($this->data_cadastro)) { $set .= "{$gruda}data_cadastro = '{$this->data_cadastro}'"; $gruda = ', '; } $set .= "{$gruda}data_exclusao = NOW()"; $gruda = ', '; if (is_numeric($this->ativo)) { $set .= "{$gruda}ativo = '{$this->ativo}'"; $gruda = ', '; } if (is_string($this->observacao)) { $set .= "{$gruda}observacao = '{$this->observacao}'"; $gruda = ', '; } if ($set) { $db->Consulta("UPDATE {$this->_tabela} SET $set WHERE ref_cod_matricula = '{$this->ref_cod_matricula}' AND ref_cod_serie = '{$this->ref_cod_serie}' AND ref_cod_escola = '{$this->ref_cod_escola}' AND ref_cod_disciplina = '{$this->ref_cod_disciplina}'"); return TRUE; } } return FALSE; } /** * Retorna uma lista de registros filtrados de acordo com os parâmetros. * @return array */ function lista($int_ref_cod_matricula = NULL, $int_ref_cod_serie = NULL, $int_ref_cod_escola = NULL, $int_ref_cod_disciplina = NULL, $int_ref_usuario_exc = NULL, $int_ref_usuario_cad = NULL, $int_ref_cod_tipo_dispensa = NULL, $date_data_cadastro_ini = NULL, $date_data_cadastro_fim = NULL, $date_data_exclusao_ini = NULL, $date_data_exclusao_fim = NULL, $int_ativo = NULL, $str_observacao = NULL) { $sql = "SELECT {$this->_campos_lista} FROM {$this->_tabela}"; $filtros = ''; $whereAnd = ' WHERE '; if (is_numeric($int_ref_cod_matricula)) { $filtros .= "{$whereAnd} ref_cod_matricula = '{$int_ref_cod_matricula}'"; $whereAnd = ' AND '; } if (is_numeric($int_ref_cod_serie)) { $filtros .= "{$whereAnd} ref_cod_serie = '{$int_ref_cod_serie}'"; $whereAnd = ' AND '; } if (is_numeric($int_ref_cod_escola)) { $filtros .= "{$whereAnd} ref_cod_escola = '{$int_ref_cod_escola}'"; $whereAnd = ' AND '; } if (is_numeric($int_ref_cod_disciplina)) { $filtros .= "{$whereAnd} ref_cod_disciplina = '{$int_ref_cod_disciplina}'"; $whereAnd = ' AND '; } if (is_numeric($int_ref_usuario_exc)) { $filtros .= "{$whereAnd} ref_usuario_exc = '{$int_ref_usuario_exc}'"; $whereAnd = ' AND '; } if (is_numeric($int_ref_usuario_cad)) { $filtros .= "{$whereAnd} ref_usuario_cad = '{$int_ref_usuario_cad}'"; $whereAnd = ' AND '; } if (is_numeric($int_ref_cod_tipo_dispensa)) { $filtros .= "{$whereAnd} ref_cod_tipo_dispensa = '{$int_ref_cod_tipo_dispensa}'"; $whereAnd = ' AND '; } if (is_string($date_data_cadastro_ini)) { $filtros .= "{$whereAnd} data_cadastro >= '{$date_data_cadastro_ini}'"; $whereAnd = ' AND '; } if (is_string($date_data_cadastro_fim)) { $filtros .= "{$whereAnd} data_cadastro <= '{$date_data_cadastro_fim}'"; $whereAnd = ' AND '; } if (is_string($date_data_exclusao_ini)) { $filtros .= "{$whereAnd} data_exclusao >= '{$date_data_exclusao_ini}'"; $whereAnd = ' AND '; } if (is_string($date_data_exclusao_fim)) { $filtros .= "{$whereAnd} data_exclusao <= '{$date_data_exclusao_fim}'"; $whereAnd = ' AND '; } if (is_null($int_ativo) || $int_ativo) { $filtros .= "{$whereAnd} ativo = '1'"; $whereAnd = ' AND '; } else { $filtros .= "{$whereAnd} ativo = '0'"; $whereAnd = ' AND '; } if (is_string($str_observacao)) { $filtros .= "{$whereAnd} observacao LIKE '%{$str_observacao}%'"; $whereAnd = ' AND '; } $db = new clsBanco(); $countCampos = count(explode(',', $this->_campos_lista)); $resultado = array(); $sql .= $filtros . $this->getOrderby() . $this->getLimite(); $this->_total = $db->CampoUnico("SELECT COUNT(0) FROM {$this->_tabela} {$filtros}"); $db->Consulta($sql); if ($countCampos > 1) { while ($db->ProximoRegistro()) { $tupla = $db->Tupla(); $tupla["_total"] = $this->_total; $resultado[] = $tupla; } } else { while ($db->ProximoRegistro()) { $tupla = $db->Tupla(); $resultado[] = $tupla[$this->_campos_lista]; } } if (count($resultado)) { return $resultado; } return FALSE; } /** * Retorna um array com os dados de um registro. * @return array */ function detalhe() { if (is_numeric($this->ref_cod_matricula) && is_numeric($this->ref_cod_serie) && is_numeric($this->ref_cod_escola) && is_numeric($this->ref_cod_disciplina) ) { $db = new clsBanco(); $db->Consulta("SELECT {$this->_todos_campos} FROM {$this->_tabela} WHERE ref_cod_matricula = '{$this->ref_cod_matricula}' AND ref_cod_serie = '{$this->ref_cod_serie}' AND ref_cod_escola = '{$this->ref_cod_escola}' AND ref_cod_disciplina = '{$this->ref_cod_disciplina}'"); $db->ProximoRegistro(); return $db->Tupla(); } return FALSE; } /** * Retorna um array com os dados de um registro * * @return array */ function existe() { if (is_numeric($this->ref_cod_matricula) && is_numeric($this->ref_cod_serie) && is_numeric($this->ref_cod_escola) && is_numeric($this->ref_cod_disciplina) ) { $db = new clsBanco(); $db->Consulta( "SELECT 1 FROM {$this->_tabela} WHERE ref_cod_matricula = '{$this->ref_cod_matricula}' AND ref_cod_serie = '{$this->ref_cod_serie}' AND ref_cod_escola = '{$this->ref_cod_escola}' AND ref_cod_disciplina = '{$this->ref_cod_disciplina}'" ); $db->ProximoRegistro(); return $db->Tupla(); } return FALSE; } /** * Exclui um registro. * @return bool */ function excluir() { if (is_numeric($this->ref_cod_matricula) && is_numeric($this->ref_cod_serie) && is_numeric($this->ref_cod_escola) && is_numeric($this->ref_cod_disciplina) && is_numeric($this->ref_usuario_exc) ) { $this->ativo = 0; return $this->edita(); } return FALSE; } /** * Define quais campos da tabela serão selecionados no método Lista(). */ function setCamposLista($str_campos) { $this->_campos_lista = $str_campos; } /** * Define que o método Lista() deverpa retornar todos os campos da tabela. */ function resetCamposLista() { $this->_campos_lista = $this->_todos_campos; } /** * Define limites de retorno para o método Lista(). */ function setLimite($intLimiteQtd, $intLimiteOffset = NULL) { $this->_limite_quantidade = $intLimiteQtd; $this->_limite_offset = $intLimiteOffset; } /** * Retorna a string com o trecho da query responsável pelo limite de * registros retornados/afetados. * * @return string */ function getLimite() { if (is_numeric($this->_limite_quantidade)) { $retorno = " LIMIT {$this->_limite_quantidade}"; if (is_numeric($this->_limite_offset)) { $retorno .= " OFFSET {$this->_limite_offset} "; } return $retorno; } return ''; } /** * Define o campo para ser utilizado como ordenação no método Lista(). */ function setOrderby($strNomeCampo) { if (is_string($strNomeCampo) && $strNomeCampo ) { $this->_campo_order_by = $strNomeCampo; } } /** * Retorna a string com o trecho da query responsável pela Ordenação dos * registros. * * @return string */ function getOrderby() { if (is_string($this->_campo_order_by)) { return " ORDER BY {$this->_campo_order_by} "; } return ''; } }