-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.php
401 lines (315 loc) · 13.8 KB
/
test.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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
<?php
//n
class PDF extends FPDF
{
//01 Cabecera de página
function Header()
{
$datos_informe = receive_titulo(); // En esta variable recibo el TÍTULO, el SUBTÍTULO y el CÓDIGO del documento.
$datos_empresa = data_empresa_values(); // En esta variable guardo los datos de la empresa.
$fecha = gmdate('Y-m-d', time() - 18000 ); // Fecha de hoy
//01. Título y Subtítulo de la TABLA.
$titulo = $datos_informe['nombre']; /* Título */
$titulo = utf8_decode($titulo);
$nombre_subtitulo1 = $datos_informe['nombre_subtitulo1']; /* Nombre del Subtítulo */
$nombre_subtitulo1 = utf8_decode($nombre_subtitulo1);
$subtitulo1 = $datos_informe['subtitulo1']; /* Subtítulo */
$subtitulo1 = utf8_decode($subtitulo1);
/******* SECCIÓN 1: DATOS DE LA EMPRESA. *******/
$direccion_empresa = "DIRECCIÓN"; $direccion_empresa = utf8_decode($direccion_empresa);
$telefono_empresa = "TELÉFONO"; $telefono_empresa = utf8_decode($telefono_empresa);
$codigo_informe = "CÓDIGO"; $codigo_informe = utf8_decode($codigo_informe);
// CONFIGURACIÓN.
$this->SetFont('Times','',8); //indico el tipo de línea.
$this->Cell(100,4,'EMPRESA: '.$datos_empresa['nombre_empresa'].' ',0,0,'');
$this->Cell(100,4,''.$codigo_informe.': '.$datos_informe['codigo'].'',0,0,'R');
$this->Ln();
$this->Cell(100,4,''.$direccion_empresa.': '.$datos_empresa['direccion_empresa'].' ',0,0,'');
$this->Cell(100,4,'FECHA: '.$fecha.'',0,0,'R');
$this->Ln();
$this->Cell(100,4,''.$telefono_empresa.': '.$datos_empresa['telefono_empresa'].' ',0,0,'');
$this->Ln();
$this->Cell(100,4,'RUC: '.$datos_empresa['ruc_empresa'].' ',0,0,'');
$this->Ln();
$this->Cell(100,4,'MONEDA: '.$datos_empresa['moneda_informes'].' ',0,0,'');
$this->Ln();
/******* SECCIÓN 2: DATOS DEL INFORME. *******/
$this->Cell(100,4,'INFORME: '.$titulo,0,0,''); // Título del documento.
$this->Ln();
$this->Cell(100,4,''.$nombre_subtitulo1.': '.$subtitulo1,0,0,''); // Subtítulo1 del documento.
$this->Ln(5); // Salto de línea
} // Fin de la function Header()
//02 Tabla coloreada
function FancyTable($header, $data)
{
// Colores, ancho de línea y fuente en negrita
$this->SetFillColor(221,242,247);
$this->SetTextColor(0,0,0);
$this->SetDrawColor(128,128,128);
$this->SetLineWidth(.2);
$this->SetFont('','B');
/*************************************************************************************************************************
3. Cabecera de la TABLA. Depende de $_GET
*************************************************************************************************************************/
// CASO 1. MÓDULO REGISTRO BANCARIO.
if ( isset($_GET['rb']) && ($_GET['rb'] == 2 || $_GET['rb'] == 1) ) {
//a) imprimir RB mes actual
//b) imprimir RB mes solicitado
$w = array(10,18,110,20,20,20);
}
// CASO 2: MÓDULO CUENTAS X COBRAR.
else if ( isset($_GET['cxc']) && ($_GET['cxc'] == 2 || $_GET['cxc'] == 1) ) {
//c) imprimir CXC mes actual
//d) imprimir CXC mes solicitado
$w = array(9,18,18,9,9,40,40,19,20,19);
}
// CASO 3: MÓDULO CUENTAS X PAGAR.
else if ( isset($_GET['cxp']) && ($_GET['cxp'] == 2 || $_GET['cxp'] == 1) ) {
//e) imprimir CXP mes actual
//f) imprimir CXP mes solicitado
$w = array(9,18,18,9,43,43,20,20,20);
}
// CASO 4: MÓDULO PROVEEDORES.
else if ( isset($_GET['pro']) && $_GET['pro'] == 1 ) {
//g) imprimir todos los Proveedores de la BD.
$w = array(9,17,38,38,20,20,20,40);
}
//IMPRESIÓN//
for($i=0; $i < count($header); $i++)
$this->Cell($w[$i],4,$header[$i],1,0,'C',true);
$this->Ln();
// Restauración de colores y fuentes
$this->SetFillColor(255,255,255);
$this->SetTextColor(0,0,0);
$this->SetFont('');
/***************************************************************************************************************************
4. Datos de la TABLA. Depende de $_GET
***************************************************************************************************************************/
$fill = false;
$contador = 1;
// CASO 1. MÓDULO REGISTRO BANCARIO.
if ( isset($_GET['rb']) && ($_GET['rb'] == 2 || $_GET['rb'] == 1) ) {
//a) imprimir mes actual
//b) imprimir mes solicitado
if ( $data == "null" ) {
// Esto significa que no hay ningun registro.
} else {
// Esto significa que existen registros para el mes solicitado.
foreach($data as $row)
{
$this->Cell($w[0],4,$contador++,'LR',0,'C',$fill);
$this->Cell($w[1],4,$row['fecha'],'LR',0,'C',$fill);
$this->Cell($w[2],4,$row['descripcion'],'LR',0,'L',$fill);
$this->Cell($w[3],4,$row['debitos'],'LR',0,'C',$fill);
$this->Cell($w[4],4,$row['creditos'],'LR',0,'C',$fill);
$this->Cell($w[5],4,$row['saldos'],'LR',0,'C',$fill);
$this->Ln(); // Salto de línea // Próxima celda.
$fill = !$fill;
} // Fin del foreeach($data as $row)
} // Fin del if ( $data == "null" ) {
} // CASO 2. MÓDULO CUENTAS X COBRAR.
else if ( isset($_GET['cxc']) && $_GET['cxc'] == 2 ) {
//c) imprimir mes actual
if ( $data[0]['exist'] == "no" ) {
// Esto significa que no hay ningun registro.
} else {
// Esto significa que existen registros para el mes solicitado.
for($i=1; $i < count($data); $i++)
{
$this->Cell($w[0],4,$contador++,'LR',0,'C',$fill);
$this->Cell($w[1],4,$data[$i]['fecha_registro'],'LR',0,'C',$fill);
$this->Cell($w[2],4,$data[$i]['fecha_vencimiento'],'LR',0,'C',$fill);
$this->Cell($w[3],4,$data[$i]['no_venta'],'LR',0,'C',$fill);
$this->Cell($w[4],4,$data[$i]['local_venta'],'LR',0,'C',$fill);
$this->Cell($w[5],4,$data[$i]['nombre'],'LR',0,'L',$fill);
$this->Cell($w[6],4,$data[$i]['detalle_registro'],'LR',0,'L',$fill);
$this->Cell($w[7],4,$data[$i]['valor_deuda'],'LR',0,'C',$fill);
$this->Cell($w[8],4,$data[$i]['valor_ingresado'],'LR',0,'C',$fill);
$this->Cell($w[9],4,$data[$i]['saldo'],'LR',0,'C',$fill);
$this->Ln(); // Salto de línea // Próxima celda.
$fill = !$fill;
} // Fin del foreeach($data as $row)
} // Fin del if ( $data[0]['exist'] == "no" ) {
} else if ( isset($_GET['cxc']) && $_GET['cxc'] == 1 ) {
//d) imprimir mes solicitado
if ( $data[2] === "ningun_registro" ) {
// Esto significa que no hay ningun registro.
} else {
// Esto significa que existen registros para el mes solicitado.
for($i=3; $i < count($data); $i++)
{
$this->Cell($w[0],4,$contador++,'LR',0,'C',$fill);
$this->Cell($w[1],4,$data[$i]['fecha_registro'],'LR',0,'C',$fill);
$this->Cell($w[2],4,$data[$i]['fecha_vencimiento'],'LR',0,'C',$fill);
$this->Cell($w[3],4,$data[$i]['no_venta'],'LR',0,'C',$fill);
$this->Cell($w[4],4,$data[$i]['local_venta'],'LR',0,'C',$fill);
$this->Cell($w[5],4,$data[$i]['nombre'],'LR',0,'L',$fill);
$this->Cell($w[6],4,$data[$i]['detalle_registro'],'LR',0,'L',$fill);
$this->Cell($w[7],4,$data[$i]['valor_deuda'],'LR',0,'C',$fill);
$this->Cell($w[8],4,$data[$i]['valor_ingresado'],'LR',0,'C',$fill);
$this->Cell($w[9],4,$data[$i]['saldo'],'LR',0,'C',$fill);
$this->Ln(); // Salto de línea // Próxima celda.
$fill = !$fill;
} // Fin del foreeach($data as $row)
} // Fin del if ( $data[2] === "ningun_registro" ) {
} // CASO 3. MÓDULO CUENTAS X PAGAR.
else if ( isset($_GET['cxp']) && $_GET['cxp'] == 2 ) {
//e) imprimir mes actual
if ( $data[0]['exist'] == "no" ) {
// Esto significa que no hay ningun registro.
} else {
// Esto significa que existen registros para el mes solicitado.
for($i=1; $i < count($data); $i++)
{
$this->Cell($w[0],4,$contador++,'LR',0,'C',$fill);
$this->Cell($w[1],4,$data[$i]['fecha_registro'],'LR',0,'C',$fill);
$this->Cell($w[2],4,$data[$i]['fecha_vencimiento'],'LR',0,'C',$fill);
$this->Cell($w[3],4,$data[$i]['no_orden_de_compra'],'LR',0,'C',$fill);
$this->Cell($w[4],4,$data[$i]['nombre'],'LR',0,'L',$fill);
$this->Cell($w[5],4,$data[$i]['detalle_registro'],'LR',0,'L',$fill);
$this->Cell($w[6],4,$data[$i]['valor_abono'],'LR',0,'C',$fill);
$this->Cell($w[7],4,$data[$i]['valor_abonado'],'LR',0,'C',$fill);
$this->Cell($w[8],4,$data[$i]['saldo'],'LR',0,'C',$fill);
$this->Ln(); // Salto de línea // Próxima celda.
$fill = !$fill;
} // Fin del foreeach($data as $row)
} // Fin del if ( $data[0]['exist'] == "no" ) {
} else if ( isset($_GET['cxp']) && $_GET['cxp'] == 1 ) {
//d) imprimir mes solicitado
if ( $data[2] === "ningun_registro" ) {
// Esto significa que no hay ningun registro.
} else {
// Esto significa que existen registros para el mes solicitado.
for($i=3; $i < count($data); $i++)
{
$this->Cell($w[0],4,$contador++,'LR',0,'C',$fill);
$this->Cell($w[1],4,$data[$i]['fecha_registro'],'LR',0,'C',$fill);
$this->Cell($w[2],4,$data[$i]['fecha_vencimiento'],'LR',0,'C',$fill);
$this->Cell($w[3],4,$data[$i]['no_orden_de_compra'],'LR',0,'C',$fill);
$this->Cell($w[4],4,$data[$i]['nombre'],'LR',0,'L',$fill);
$this->Cell($w[5],4,$data[$i]['detalle_registro'],'LR',0,'L',$fill);
$this->Cell($w[6],4,$data[$i]['valor_abono'],'LR',0,'C',$fill);
$this->Cell($w[7],4,$data[$i]['valor_abonado'],'LR',0,'C',$fill);
$this->Cell($w[8],4,$data[$i]['saldo'],'LR',0,'C',$fill);
$this->Ln(); // Salto de línea // Próxima celda.
$fill = !$fill;
} // Fin del foreeach($data as $row)
} // Fin del if ( $data[2] === "ningun_registro" ) {
} // CASO 4. MÓDULO PROVEEDORES.
// Línea de cierre
$this->Cell(array_sum($w),0,'','T');
} // Fin de la función FancyTable
//03 Pie de página
function Footer()
{
$pagina_no = "Página "; $pagina_no = utf8_decode($pagina_no);
// Posición: a 1,5 cm del final
$this->SetY(-15);
// Arial italic 8
$this->SetFont('Arial','I',6);
// Número de página
$this->Cell(0,10,''.$pagina_no.''.$this->PageNo().'',0,0,'C');
} // Fin de la función Footer()
var $widths;
var $aligns;
//04 Array con los anchos de las Columnas.
function SetWidths($w)
{
//Set the array of column widths
$this->widths=$w;
}
//05 Array con los alineamientos de las columnas.
function SetAligns($a)
{
//Set the array of column alignments
$this->aligns=$a;
}
//06 Calculando el alto de la FILA.
function Row($data)
{
$data = proveedores_del_sistema();
//Calculate the height of the row
$nb=0;
for($i=0;$i<count($data);$i++)
$nb=max($nb,$this->NbLines($this->widths[$i],$data[$i]));
$h=5*$nb;
//Issue a page break first if needed
$this->CheckPageBreak($h);
//Draw the cells of the row
for($i=0;$i<count($data);$i++)
{
$w=$this->widths[$i];
$a=isset($this->aligns[$i]) ? $this->aligns[$i] : 'L';
//Save the current position
$x=$this->GetX();
$y=$this->GetY();
//Draw the border
$this->Rect($x,$y,$w,$h);
//Print the text
$this->MultiCell($w,5,$data[$i],0,$a);
//Put the position to the right of the cell
$this->SetXY($x+$w,$y);
}
//Go to the next line
$this->Ln($h);
}
//07 Insertar un salto de página si la altura de la fila causa un overflow
function CheckPageBreak($h)
{
//If the height h would cause an overflow, add a new page immediately
if($this->GetY()+$h>$this->PageBreakTrigger)
$this->AddPage($this->CurOrientation);
}
//08 Archiva el número de lineas que tendrá la Multicelda.
function NbLines($w,$txt)
{
//Computes the number of lines a MultiCell of width w will take
$cw=&$this->CurrentFont['cw'];
if($w==0)
$w=$this->w-$this->rMargin-$this->x;
$wmax=($w-2*$this->cMargin)*1000/$this->FontSize;
$s=str_replace("\r",'',$txt);
$nb=strlen($s);
if($nb>0 and $s[$nb-1]=="\n")
$nb--;
$sep=-1;
$i=0;
$j=0;
$l=0;
$nl=1;
while($i<$nb)
{
$c=$s[$i];
if($c=="\n")
{
$i++;
$sep=-1;
$j=$i;
$l=0;
$nl++;
continue;
}
if($c==' ')
$sep=$i;
$l+=$cw[$c];
if($l>$wmax)
{
if($sep==-1)
{
if($i==$j)
$i++;
}
else
$i=$sep+1;
$sep=-1;
$j=$i;
$l=0;
$nl++;
}
else
$i++;
}
return $nl;
}
} // Fin de class PDF extends FPDF
?>