-
Notifications
You must be signed in to change notification settings - Fork 0
/
Notificaciones
63 lines (49 loc) · 1.91 KB
/
Notificaciones
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
//código de un trigger para que guarde la grilla con formato tabla en una variable (agregar como oculta en formulario):
@@tablaComputacion = '';
@@tablaCompras = '';
@@tablaStock = '';
if (@@mostrarGrillaComputacion == 'Si') {
@@tablaComputacion = "<table><tbody>\n<tr><th> Bienes informáticos solicitados </th><th> Descripción </th><th>Cantidad</th></tr>\n";
foreach (@=grillaComputacion as $aRow) {
@@tablaComputacion .= '<tr><td>'.$aRow['detalle4'].'</td><td>'.$aRow['descripcion4'].'</td><td>'.$aRow['cantidad4']."</td></tr>\n";
}
};
if (@@mostrarGrillaCompras == 'Si') {
@@tablaCompras = "<table><tbody>\n<tr><th>Bienes departamentales solicitados</th><th> Descripción </th><th>Cantidad</th></tr>\n";
foreach (@=grillaCompras as $aRow) {
@@tablaCompras .= '<tr><td>'.$aRow['detalle1'].'</td><td>'.$aRow['descripcion1'].'</td><td>'.$aRow['cantidad1']."</td></tr>\n";
}
};
if (@@mostrarGrillaStock == 'Si') {
@@tablaStock = "<table><tbody>\n<tr><th>Bienes en stock</th><th> Descripción </th><th>Cantidad</th></tr>\n";
foreach (@=grillaStockSEI as $aRow) {
@@tablaStock .= '<tr><td>'.$aRow['detalle2'].'</td><td>'.$aRow['descripcion2'].'</td><td>'.$aRow['cantidad2']."</td></tr>\n";
}
};
@@tablaComputacion .= '</tbody></table>';
@@tablaCompras .= '</tbody></table>';
@@tablaStock .= '</tbody></table>';
//código html para incluir variables y grillas en cualquier plantilla (ya sea un doc de salida o un evento mail):
<html>
<head>
<style>
table {
border-collapse: collapse;
table-layout:fixed;
width: 100%;
}
table, th, td {
border: 1px solid black;
}
</style>
</head>
<body>
<p>@#autorizadorNivelUno: le informamos que @#solicitante realizó una solicitud de bienes con el siguiente detalle:</p>
<p></p>
<p>@#tablaCompras</p>
<p>@#tablaComputacion</p>
<p>@#tablaStock</p>
<p></p>
<p>Gerencia de Compras y Contrataciones.</p>
</body>
</html>