-
Notifications
You must be signed in to change notification settings - Fork 0
/
rpt_datos_publicadores.php
161 lines (150 loc) · 4.14 KB
/
rpt_datos_publicadores.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
<?php
if(!isset($_GET['id'])||$_GET['id']==""){exit();}
// include autoloader
require_once 'dompdf/autoload.inc.php';
require_once("includes/conexion.php");
PermitirAcceso(405);
$FiltGrupo="";
$Grupo="";
if(isset($_GET['grp'])&&($_GET['grp']!="")){
$Grupo=base64_decode($_GET['grp']);
$FiltGrupo="and IDGrupo='".$Grupo."'";
$SQL_Grp=Seleccionar('uvw_tbl_Grupos','*',"NumCong='".$_SESSION['NumCong']."' and IDGrupo='".$Grupo."'");
$row_Grp=sqlsrv_fetch_array($SQL_Grp);
}
//Congregacion
$SQL_Cong=Seleccionar('uvw_tbl_Congregaciones','*',"NumCong='".$_SESSION['NumCong']."'");
$row_Cong=sqlsrv_fetch_array($SQL_Cong);
$NombreCong=$row_Cong['NombreCongregacion']." (".$row_Cong['Ciudad'].", ".$row_Cong['Municipio'].")";
$SQL=Seleccionar('uvw_tbl_Publicadores','*',"NumCong='".$_SESSION['NumCong']."' $FiltGrupo",'NombrePublicador');
$Datos="";
$i=1;
while($row=sqlsrv_fetch_array($SQL)){
$FechaNac=($row['FechaNac']!="") ? $row['FechaNac']->format('Y-m-d') : "";
$FechaBaut=($row['FechaBaut']!="") ? $row['FechaBaut']->format('Y-m-d') : "";
$Datos.="<tr>
<td align='center'>".$i."</td>
<td>".$row['NombrePublicador']."</td>
<td align='center'>".$row['NombreGenero']."</td>
<td>".$FechaNac."</td>
<td>".$FechaBaut."</td>
<td>".$row['Direccion']."</td>
<td align='center'>".$row['Telefono']."</td>
<td align='center'>".$row['Celular']."</td>
<td align='center'>".$row['TipoPublicadorAbr']."</td>
<td align='center'>".$row['PrivilegioServicioAbr']."</td>
<td>".$row['PersonaCont']."</td>
<td align='center'>".$row['TelefonoCont']."</td>
</tr>";
$i++;
}
// reference the Dompdf namespace
use Dompdf\Dompdf;
$dompdf = new Dompdf();
define("DOMPDF_ENABLE_PHP", true);
$HTML1='<html>
<head>
<title>Información de los publicadores</title>
<style>
@page { margin: 120px 50px; }
body{
font-family: "open sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size:9px;
}
#header{
position: fixed;
left: 0px;
top: -110px;
right: 0px;
height: 150px;
}
#footer{
position: fixed;
left: 0px;
bottom: -2px;
height: 2px;
}
#footer .page:after{
content: counter(page);
}
.table-title{
width: 100%;
font-size:16px;
text-align: center;
font-weight: bold;
max-width: 100%;
margin-bottom: 1rem;
background-color: transparent;
}
.table{
border-collapse: collapse;
border: 1px solid #BABABA;
width: 100%;
max-width: 100%;
margin-bottom: 1rem;
background-color: transparent;
}
.table > thead > tr > th {
border: 1px solid #BABABA;
background-color: #F5F5F6;
padding: 4px;
line-height: 1.42857;
}
.table > tbody > tr > td {
border: 1px solid #BABABA;
padding: 2px;
line-height: 1.42857;
}
</style>
</head>
<body>
<div id="footer">
<p><strong>'.$NombreCong.'</strong></p>
<p class="page">Página </p>
</div>
<table id="header" class="table-title">
<tr>
<td>INFORMACIÓN DE LOS PUBLICADORES</td>
</tr>';
if($Grupo!=""){
$HTML1.='<tr>
<td>GRUPO: '.$row_Grp['NombreGrupo'].'</td>
</tr>';
}
$HTML1.='
</table>
<table class="table">
<thead>
<tr>
<th align="center" width="5%">#</th>
<th align="center" width="15%">Nombre publicador</th>
<th align="center" width="7%">Genero</th>
<th align="center" width="7%">Fecha Nac.</th>
<th align="center" width="7%">Fecha Baut.</th>
<th align="center" width="11%">Dirección</th>
<th align="center" width="7%">Telefono</th>
<th align="center" width="7%">Celular</th>
<th align="center" width="7%">Tipo publicador</th>
<th align="center" width="7%">Privilegio</th>
<th align="center" width="13%">Contacto emergencia</th>
<th align="center" width="7%">Telefono</th>
</tr>
</thead>
<tbody>';
$HTML2='</tbody>
</table>
</body>
</html>';
//InsertarLog("Descarga de entrada");
//sqlsrv_close($conexion);
//echo $HTML1.$Datos.$HTML2;/*
// instantiate and use the dompdf class
$dompdf->loadHtml($HTML1.$Datos.$HTML2);
// (Optional) Setup the paper size and orientation
$dompdf->setPaper('letter', 'landscape');
// Render the HTML as PDF
$dompdf->render();
// Output the generated PDF to Browser
$dompdf->stream("Informe_Datos_Publicadores.pdf",array("Attachment" => false));
exit(0);
?>