Commit aab67ce178fe800b4871e811459f27298ef9d382

Authored by Lucas Schmoeller da Silva
1 parent 0a78e116
Exists in master

Removido campo "Biblioteca possui tombo automático"

portabilis/ieducar#120
ieducar/intranet/educar_biblioteca_cad.php
... ... @@ -59,7 +59,6 @@ class indice extends clsCadastro
59 59 var $ref_cod_usuario;
60 60 var $incluir_usuario;
61 61 var $excluir_usuario;
62   - var $tombo_automatico;
63 62  
64 63 function Inicializar()
65 64 {
... ...
ieducar/intranet/educar_biblioteca_dados_cad.php
... ... @@ -149,11 +149,6 @@ class indice extends clsCadastro
149 149 $this->campoCheck( "requisita_senha", "Requisita Senha", $this->requisita_senha );
150 150 $this->campoNumero( "dias_espera", "Dias Espera", $this->dias_espera, 2, 2, true );
151 151  
152   - if ($this->tombo_automatico)
153   - $this->campoBoolLista("tombo_automatico", "Biblioteca possui tombo automático", $this->tombo_automatico);
154   - else
155   - $this->campoBoolLista("tombo_automatico", "Biblioteca possui tombo automático", "t");
156   -
157 152 //-----------------------INCLUI DIA SEMANA------------------------//
158 153 $this->campoQuebra();
159 154  
... ...
ieducar/intranet/educar_biblioteca_det.php
... ... @@ -128,10 +128,6 @@ class indice extends clsDetalhe
128 128 {
129 129 $this->addDetalhe( array( "Biblioteca", "{$registro["nm_biblioteca"]}") );
130 130 }
131   - if ($registro["tombo_automatico"])
132   - {
133   - $this->addDetalhe(array("Tombo Automático", dbBool($registro["tombo_automatico"]) ? "Sim" : "Não"));
134   - }
135 131 $obj = new clsPmieducarBibliotecaUsuario();
136 132 $lst = $obj->lista( $this->cod_biblioteca );
137 133 if ($lst)
... ...