-
Notifications
You must be signed in to change notification settings - Fork 3
/
dadosassentamentos.php
executable file
·169 lines (147 loc) · 5.74 KB
/
dadosassentamentos.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
<?
/*
* E-cidade Software Publico para Gestao Municipal
* Copyright (C) 2013 DBselller Servicos de Informatica
* www.dbseller.com.br
*
* Este programa e software livre; voce pode redistribui-lo e/ou
* modifica-lo sob os termos da Licenca Publica Geral GNU, conforme
* publicada pela Free Software Foundation; tanto a versao 2 da
* Licenca como (a seu criterio) qualquer versao mais nova.
*
* Este programa e distribuido na expectativa de ser util, mas SEM
* QUALQUER GARANTIA; sem mesmo a garantia implicita de
* COMERCIALIZACAO ou de ADEQUACAO A QUALQUER PROPOSITO EM
* PARTICULAR. Consulte a Licenca Publica Geral GNU para obter mais
* detalhes.
*
* Voce deve ter recebido uma copia da Licenca Publica Geral GNU
* junto com este programa; se nao, escreva para a Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
* 02111-1307, USA.
*
* Copia da licenca no diretorio licenca/licenca_en.txt
* licenca/licenca_pt.txt
*/
include("libs/db_conecta.php");
include("libs/db_stdlib.php");
include("libs/db_sql.php");
include("libs/db_utils.php");
validaUsuarioLogado();
$aRetorno = array();
parse_str(base64_decode($HTTP_SERVER_VARS["QUERY_STRING"]),$aRetorno);
$iMatric = $aRetorno['iMatric'];
if ( isset($aRetorno['averba']) ) {
$sWhereAssenta = " and h12_reltot != 0 ";
$sTituloTela = 'Averbação de Tempo';
} else {
$sWhereAssenta = " and h12_reltot = 0 ";
$sTituloTela = 'Assentamentos';
}
$sSqlAssenta = " select * ";
$sSqlAssenta .= " from assenta ";
$sSqlAssenta .= " inner join tipoasse on tipoasse.h12_codigo = assenta.h16_assent ";
$sSqlAssenta .= " where h16_regist = {$iMatric} ";
$sSqlAssenta .= " {$sWhereAssenta} ";
$sSqlAssenta .= " order by h16_dtconc ";
$rsAssenta = db_query($sSqlAssenta);
$iNroAssenta = pg_num_rows($rsAssenta);
?>
<html>
<head>
<title><?=$w01_titulo?></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link href="config/estilos.css" rel="stylesheet" type="text/css">
<link href="config/portalservidor.css" rel="stylesheet" type="text/css">
<script language="JavaScript" src="scripts/scripts.js"></script>
<script language="JavaScript" src="scripts/db_script.js"></script>
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" bgcolor="<?=$w01_corbody?>" onLoad="" <?mens_OnHelp()?>>
<form name="form1" method="post" action="">
<table class="tableForm" width="70%">
<tr>
<td class="tituloForm" colspan="6">
<?=$sTituloTela?>
</td>
</tr>
<?
if ( $iNroAssenta > 0 ) {
for ( $iInd=0; $iInd < $iNroAssenta; $iInd++ ) {
$oAssenta = db_utils::fieldsMemory($rsAssenta,$iInd);
?>
<tr>
<td class="labelForm" width="10%">
Descrição:
</td>
<td class="dadosForm" colspan="5">
<?=$oAssenta->h12_descr?>
</td>
</tr>
<tr>
<td class="labelForm">
Data Inicial:
</td>
<td class="dadosForm">
<?=db_formatar($oAssenta->h16_dtconc,'d')?>
</td>
<td class="labelForm" width="10%">
Data Final:
</td>
<td class="dadosForm">
<?
if ( $oAssenta->h16_dtterm != '' ) {
echo db_formatar($oAssenta->h16_dtterm,'d');
} else {
echo " ";
}
?>
</td>
<td class="labelForm" width="10%">
Quantidade:
</td>
<td class="dadosForm">
<?=$oAssenta->h16_quant?>
</td>
</tr>
<tr>
<td class="labelForm">
Nº do Ato:
</td>
<td class="dadosForm">
<?=$oAssenta->h16_nrport?>
</td>
<td class="labelForm">
Tipo:
</td>
<td class="dadosForm" colspan="3">
<?=$oAssenta->h16_atofic?>
</td>
</tr>
<tr>
<td class="labelForm">
Histórico:
</td>
<td class="dadosForm" colspan="5">
<?=$oAssenta->h16_histor." ".$oAssenta->h16_hist2?>
</td>
</tr>
<tr>
<td class="tituloForm" colspan="6">
</td>
</tr>
<?
}
} else {
?>
<tr style="font-size:12px;" align="center">
<td>
<b>Nenhum Registro Encontrado</b>
</td>
</tr>
<?
}
?>
</table>
</form>
</body>