-
Notifications
You must be signed in to change notification settings - Fork 0
/
stampa_ricevuta.php
186 lines (158 loc) · 4.69 KB
/
stampa_ricevuta.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
<?php
require('accesso_db.inc');
require ('bar128.php'); // Our Library of Barcode Functions
ini_set("default_charset", 'utf-8');
ob_clear;
ConnettiDB();
$id = $_GET["id"];
if($id == "") {
echo "<strong>Deve essere selezionata un'iscrizione per stampare la ricevuta</trong>";
exit();
}
$idevento = $_GET["idevento"];
if($idevento == "") {
echo "<strong>Deve essere selezionato un evento per stampare la ricevuta</trong>";
exit();
}
?>
<html>
<head>
<title>Ricevuta pagamento iscrizione</title>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" >
<style>
/* REGOLE 'SELETTORI' */
body {
font-family: arial;
font-size: 12pt;
line-height: 0.69em;
}
h1 {
font-size:x-large;
font-weight: bold;
text-align:center;
}
h2 {
font-size:medium;
text-align:center;
}
h3 {
margin-bottom: -1px;
text-align: center;
}
img {
vertical-align: middle;
}
li {
margin-top: 0.5em;
margin-bottom: 0.5em;
}
p {
margin-top: 0.5em;
margin-bottom: 0.5em;
}
table {
font-family: arial;
font-size: 12pt;
line-height: 1em;
width:100%;
}
ul {
line-height: 1.15em;
text-align: justify;
}
/* REGOLE PER ID OGGETTI */
#contenutopagina {
width: 100%;
text-align: left;
padding:0px 0px 0px 0px;
margin: 0 auto;
}
#intestazione_pagina {
text-align: left;
padding-bottom: 7px;
padding-top: 30px;
}
#mybarcode {
position: relative;
top: -120px;
float: right;
}
#pagina {
text-align: left;
}
.tabella_anagrafica {
border: 1px dotted grey;
border-spacing: 0.5em 1em;
}
@media print {
.noprint{
display: none !important;
}
}
</style>
<script type="text/javascript" src="./js/jquery-1.2.1.pack.js"></script>
</head>
<body>
<?php
$oggi = getdate();
$anno = $oggi["year"];
$rstPersona = GetPersonaPrivacy($id);
if($rstPersona) {
if(mysqli_num_rows($rstPersona) > 0) {
$rowPersona = mysqli_fetch_object($rstPersona);
}
}
$evento = GetNomeEventoByID($idevento);
$rstIscrizione = GetIscrizioneER($id, $idevento);
if($rstIscrizione) {
if(mysqli_num_rows($rstIscrizione) > 0) {
$rowIscrizione = mysqli_fetch_object($rstIscrizione);
?>
<div id="pagina">
<div id="contenutopagina">
<div id="intestazione_pagina">
<p style="font-size:small"><img src="./Immagini/logoratorio.png" id="logo_oratorio" width ="40" height="40" alt="logo oratorio" />
<strong>Oratorio Saint Martin - Viale Europa 1 Aosta - Tel. 0165/554234 </strong></p>
</div>
<h2>Ricevuta di pagamento iscrizione </h2>
<div id="mybarcode">
<?php
echo bar128(str_pad($id,13,"0",STR_PAD_LEFT ),140);
?>
</div>
<div id="anagrafica">
<table class="tabella_anagrafica" border="0">
<tr>
<td width="10%">Nominativo:</td><td width="23%"><strong><?php echo htmlentities($rowPersona->Cognome)." ".htmlentities($rowPersona->Nome); ?></strong></td>
<td width="10%">Evento:</td><td width="23%"><strong><?php echo $evento ?></strong></td>
<td width="10%">Ospiti:</td><td width="23%"><strong><?php echo $rowIscrizione->CenaFinaleOspiti > 0 ? $rowIscrizione->CenaFinaleOspiti : "nessuno" ?></strong></td>
</tr>
<tr>
<td width="10%">Indirizzo:</td><td width="23%"><strong><?php echo $rowPersona->Tipo_via." ".htmlentities($rowPersona->Via)." ".$rowPersona->numero_civico."<br/>".$rowPersona->CAP." ".htmlentities($rowPersona->Citt)?></strong></td>
<td width="10%">Note:</td><td width="23%"><strong><?php echo $rowIscrizione->Note ?></strong></td>
<td width="10%">Evento speciale:</td><td width="23%"><strong><?php echo $rowIscrizione->EventoSpeciale ? "sí" : "no" ?></strong></td>
</tr>
<tr>
<td width="10%">Data di nascita:</td><td width="23%"><strong><?php echo date_format(date_create($rowPersona->Data_di_nascita), "d/m/Y") ?></strong></td>
<td width="10%">Importo:</td><td width="23%"><strong><?php echo "€ ".number_format($rowIscrizione->Pagamento, 2, ',', '.') ?></strong></td>
<td width="10%"> </td><td width="23%"> </td>
</tr>
</table>
<div style="float:left;margin-top:1em">
<strong>Data:</strong>
<?php
echo date("d/m/Y");
?>
</div>
<div style="text-align:center;margin:25px 0px 25px 0px">
<input class="noprint" type="button" value="Chiudi" onclick="window.close();" />
</div>
<?php
}
}
?>
</body>
<script type="text/javascript">
window.print();
</script>
</html>