Commit aab67ce178fe800b4871e811459f27298ef9d382
1 parent
0a78e116
Exists in
master
Removido campo "Biblioteca possui tombo automático"
portabilis/ieducar#120
Showing
3 changed files
with
0 additions
and
10 deletions
Show diff stats
ieducar/intranet/educar_biblioteca_cad.php
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) | ... | ... |