Viewing file: boleto_exporta_correios.php (7.88 KB) -rwxr-xr-x Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
#############################################################################
# Nome: contato.php #
# System: Irpen #
# Criado por: Breno Henrique Vivarelli #
# Empresa: Netnigro #
# E-mail: breno@netnigro.com.br #
# Descrição: Contatos dos associados com o IRPEN #
# Histórico: #
# . 08/07/2008 - Breno Henrique Vivarelli #
# Criação da Página #
#############################################################################
// Includes
include("../../config/config.php");
include(INCLUDES . "conexaoBD.php");
include(INCLUDES . "sentencas_sql.php");
include(INCLUDES . "funcoes_uteis.php");
include(INCLUDES . "valida_usuario.inc.php");
include("boletos_class.php");
$nome = $_SESSION["nome_usuario"];
$email = $_SESSION["email_usuario"];
$admin = $_SESSION['cod_perfil'] == 1;
if ((count($_POST)>0) and $admin) {
$mes_referencia = $_POST['txtMesReferencia'];
$ano_referencia = $_POST['txtAnoReferencia'];
$boletos = new Boletos();
if ($boletos->exportarCorreios($mes_referencia,$ano_referencia))
$msg = "Mensalidades e boletos exportados com sucesso!";
else
$msg = "Erro ao exportar as mensalidades e boletos!";
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml2/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta name="Description" content="IRPEN">
<meta name="Keywords" content="">
<meta name="resource-type" content="document">
<meta name="classification" content="Internet">
<meta name="robots" content="all">
<meta name="rating" content="General">
<meta name="Author" content="Ninart! Solucoes para Web.">
<meta name="language" content="pt-br">
<link rel="shortcut icon" href="imagens/favicon.gif"type="image/gif">
<link rel="stylesheet" href="<?= HOST;?>css/irpen.css" type="text/css" />
<link rel="stylesheet" media="all" type="text/css" href="<?= HOST;?>css/menu_dropline.css" />
<!--[if IE]>
<link rel="stylesheet" media="all" type="text/css" href="css/menu_dropline_ie.css" />
<![endif]-->
<!--[if lt IE 7]>
<link rel="stylesheet" media="all" type="text/css" href="css/menu_dropline_ie6.css" />
<![endif]-->
<title>IRPEN | Instituto de Registro Civil de Pessoas Naturais do Paraná - 2008</title>
<script type="text/javascript" src="<?= HOST;?>includes/jquery-1.2.6.js"></script>
<script type="text/javascript" src="<?= HOST;?>includes/jquery.form.js"></script>
<script type="text/javascript" src="<?= HOST;?>includes/email.js"></script>
<script type="text/javascript" src="contato.js"></script>
<script type="text/javascript" language="javascript">
<?php if ($msg != "") { ?>
alert("<?= $msg;?>");
<?php } ?>
function valida_form() {
if (document.getElementById('txtMesReferencia').value=="") {
alert("Preencha o mes de referência!");
return false;
}
if (document.getElementById('txtAnoReferencia').value=="") {
alert("Preencha o ano de referência!");
return false;
}
if (confirm("Gerar arquivo CSV?"))
return true;
else
return false;
}
</script>
<style type="text/css">
<!--
.style1 {
color: #666666;
font-weight: bold;
}
-->
</style>
</head>
<body>
<div id="wrap">
<?php include "../topo_gestao.php";?>
<!-- content-wrap starts -->
<div id="content-wrap">
<table width="100%" border="0">
<tr><!--
<td align="left" valign="top" width="20%">
<?php
//Menu do site
//include(DIR_ADMIN . "menu_gestao.php");
?>
</td>
<td align="left" valign="top" bgcolor="#cccccc">
</td>-->
<td align="left" valign="top" bgcolor="#FFFFFF" width="1%">
</td>
<td align="left" valign="top">
<table width="100%" border="0" >
<tr>
<td align="left" valign="top">
<h2>Consulta arquivo CORREIOS </h2>
<div id="linha_h2" ></div>
<form action="" method="post" name="frmContato" id="frmContato" onsubmit="return valida_form();">
<table width="40%" border="0" align="center">
<tr>
<td colspan="2"> </td>
</tr>
<tr>
<td height="20" align="right">Mes/Ano referência:</td>
<td width="57%" height="20" align="left">
<input type="text" name="txtMesReferencia" id="txtMesReferencia" size="4" maxlength="2" />
/
<input name="txtAnoReferencia" type="text" id="txtAnoReferencia" value="<?= date("Y");?>" size="5" maxlength="4" />
</td>
</tr>
<tr>
<td height="20" colspan="2" align="center">
<input name="btnExportar" type="submit" id="btnExportar" value="Exportar boletos" /></td>
</tr>
</table>
</form>
</td>
</tr>
</table>
<br />
<table width="40%" border="0" align="center" cellpadding="2" cellspacing="2">
<tr>
<td width="93%">Arquivos gerados </td>
<td width="7%">Baixar</td>
</tr>
<?php
$pasta_csv = "./csv/";
$pont_dir = dir($pasta_csv);
$arquivos = array();
while ($arquivo = $pont_dir->read()) {
if (!in_array($arquivo,array(".",".."))) {
$arquivos[] = $arquivo;
}
}
sort($arquivos);
for ($i=0;$i<count($arquivos);$i++) {
?>
<tr>
<td><a href="<?= $pasta_csv . $arquivos[$i];?>" target="_blank"><?= $arquivos[$i];?></a></td>
<td><a href="<?= $pasta_csv . $arquivos[$i];?>" target="_blank">Baixar</a></td>
</tr>
<?php } ?>
</table>
</td>
</tr>
</table>
</div>
<div align="center">
<strong><br />
Rua Mal. Deodoro, 51 - Galeria Ritz - 18º Andar | Fone: (41) 3232-9811 | CEP 80.020-905 - Curitiba - Paraná</strong>
<!-- content-wrap ends-->
</div>
<!-- footer starts -->
<div id="footer-wrap">
</div>
<div id="rodape">
</div>
</div>
</body>
</html>
|