-
Notifications
You must be signed in to change notification settings - Fork 0
/
print-daily.php
87 lines (77 loc) · 2.42 KB
/
print-daily.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
<?php
/**
* Imprime recibos individuales
*/
require_once('home.php');
require_once('redirect.php');
require(INCLUDE_PATH . 'fpdf/fpdf.php');
class PDF extends FPDF {
function LoadData() {
global $bcdb;
$data = get_recibos_dia($this->fecha);
return $data;
}
function Header() {
$this->SetFont('Times', '' ,12);
$this->Cell(0, 4, 'MUNICIPALIDAD DISTRITAL DE PUCYURA', 0, 0, 'C');
$this->Ln();
$this->SetFont('Arial', '' ,12);
$this->Cell(0, 10, 'PROV. ANTA - DPTO. CUSCO', 0, 0, 'C');
$this->Ln();
$this->Cell(0, 10, 'Lista de alquileres', 0, 0, 'C');
$this->Ln(10);
$this->SetFont('Arial', '' ,12);
$this->Cell(6);
$this->Cell(1, 4, strftime('Fecha: %d de %B del %Y', strtotime($this->fecha)));
$this->Ln(10);
}
function Footer() {
//Posición: a 1,5 cm del final
$this->SetY(-13);
//Arial italic 8
$this->SetFont('Arial','I',8);
//Número de página
$this->Cell(0, 10, utf8_decode('Pág. ') . $this->PageNo() . '/{nb}' , 0, 0, 'C');
}
// Resultados
function Informe($header, $data) {
$hl = 6;
//Anchuras de las columnas
$w = array(20, 50, 50, 70, 38, 38);
$h = 7; // Alto de las columnas
//Cabeceras
$this->SetFont('', 'B', '10');
$this->Cell($hl);
for($i=0; $i<count($header); $i++)
$this->Cell($w[$i], $h, $header[$i], 1, 0, 'C');
$this->Ln();
//Datos
$this->SetFont('', '', '10');
if($data) :
foreach($data as $k =>$v) :
$this->Cell($hl);
$this->Cell($w[0], $h, $v['id'], 'LRB', 0, 'R');
$this->Cell($w[1], $h, utf8_decode($v['maquina']), 'LRB');
$this->Cell($w[2], $h, utf8_decode($v['lugar']), 'LRB');
$this->Cell($w[3], $h, ($v['anulado']) ? "ANULADO" : utf8_decode(sprintf('%s %s %s', $v['nombres'], $v['apaterno'], $v['amaterno'])), 'LRB', 0);
$this->Cell($w[4], $h, horas_minutos($v['minutos']),'LRB');
$this->Cell($w[5], $h, strftime('%d/%m/%Y', strtotime($v['fecha'])) ,'LRB');
$this->Ln();
endforeach;
else:
$this->Cell(array_sum($w),8, utf8_decode('No se ha registrado ningún alquiler en esta fecha'));
endif;
}
}
$pdf = new PDF('L');
$pdf->AliasNbPages();
//Títulos de las columnas
$header = array('Nro', utf8_decode('Máquina'), 'Lugar', 'Cliente', 'Tiempo', 'Para');
//Carga de datos
$fecha = $_GET['fecha'];
$pdf->fecha = $fecha;
$data = $pdf->LoadData();
$pdf->AddPage();
$pdf->Informe($header, $data);
$pdf->Output();
?>