-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathaidof_consulta.php
executable file
·143 lines (133 loc) · 4.93 KB
/
aidof_consulta.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
<?
/*
* E-cidade Software Publico para Gestao Municipal
* Copyright (C) 2009 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
*/
session_start();
include("libs/db_stdlib.php");
include("libs/db_sql.php");
include("dbforms/db_funcoes.php");
postmemory($HTTP_POST_VARS);
$sqlcgm="select* from issbase inner join cgm on q02_numcgm= z01_numcgm where q02_inscr=$inscricaow";
$resultcgm=pg_query($sqlcgm);
$linhascgm=pg_num_rows($resultcgm);
if ($linhascgm>0){
db_fieldsmemory($resultcgm,0);
}
$sqlaidof= "
select *,
case when y08_cancel='t' then 'cancelado' else
case when y08_quantlib =0 then 'Não liberada' else 'Liberado'
end
end as situacao
from aidof
inner join notasiss on q09_codigo = y08_nota
where y08_inscr=$inscricaow
";
//die($sqlaidof);
$resultaidof=pg_query($sqlaidof);
$linhasaidof=pg_num_rows($resultaidof);
if(isset($cancelar)){
$sqlcan="update aidof set y08_cancel='t' where y08_codigo=$codigoaidof";
$resultcan=pg_query($sqlcan);
}
?>
<html>
<head>
<title><?=$w01_titulo?></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script language="JavaScript" src="scripts/db_script.js"></script>
<style type="text/css">
<?
db_estilosite();
?>
table.bordasimples {
border-collapse: collapse;
}
table.bordasimples tr td {
border:1px solid #000000;
}
</style>
</head>
<script>
function js_autorizacao(cod,graf,ins,nota){
jan = window.open('fis2_emiteaidof002.php?codaidof='+cod,'','width='+(screen.availWidth-5)+',height='+(screen.availHeight-40)+',scrollbars=1,location=0 ');
jan.moveTo(0,0);
//jan = window.open('aidof_autori.php?codigo='+cod+'&inscricao='+ins+'&grafica='+graf+'¬a='+nota,'','height=500,width=650,scrollbars=1');
}
function js_comprovante(cod,graf,ins,nota){
jan = window.open('aidof.php?codigo='+cod+'&inscricao='+ins+'&grafica='+graf+'¬a='+nota,'','height=500,width=650,scrollbars=1');
}
function js_cancela(cod){
document.form1.codigoaidof.value=cod;
}
</script>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" bg>
<form name="form1" method="post" action="" >
<input name="codigoaidof" type="hidden" value="">
<br><br><br>
<div align="center" class="texto"> <b>Solicitações de AIDOF</b><br></div>
<br>
<table width="80%" align="center" class="tab" >
<tr align="center">
<th >Código</th>
<th>Tipo de nota</th>
<th>Data da solicitção</th>
<th>Quant. Solicititada</th>
<th>Quant. Liberada</th>
<th>Numeração</th>
<th>Situação</th>
<th>Opções</th>
</tr>
<?
if($linhasaidof>0){
for($i = 0;$i < $linhasaidof; $i++){
db_fieldsmemory($resultaidof,$i);
if($y08_quantlib=='0'){$y08_quantlib="";}
echo"
<tr align='center'>
<td>$y08_codigo</td>
<td>$q09_descr </td>
<td>".db_formatar($y08_dtlanc,'d')."</td>
<td>$y08_quantsol</td>
<td>$y08_quantlib</td>
<td>$y08_notain até $y08_notafi</td>
<td>$situacao</td>";
if($situacao=='Liberado'){
echo"<td><input name='imprime' value='Imprimir autorização' type='submit' class='botao' onclick=\"js_autorizacao($y08_codigo,$y08_numcgm,$y08_inscr,'$q09_descr')\"></td>";
}elseif($situacao=='Não liberada'){
echo"<td><input name='imprime' value='Imprimir comprovante' type='submit' class='botao' onclick=\"js_comprovante($y08_codigo,$y08_numcgm,$y08_inscr,'$q09_descr')\">
<input name='cancelar' value='Cancelar' type='submit' class='botao' onclick='js_cancela($y08_codigo)'>
</td>";
}elseif($situacao=='cancelado'){
echo "<td> </td>";
}
echo"</tr>";
}
}
?>
</table>
</form>
</body>
</html>