-
Notifications
You must be signed in to change notification settings - Fork 0
/
reportes.php
48 lines (47 loc) · 1.72 KB
/
reportes.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
<?php include("inc_session.php"); ?>
<?php include("inc_seguridad.php"); ?>
<?php include("inc_conectarse.php"); ?>
<?php include("inc_functions.php"); ?>
<?php $_SESSION["modulo"] = "reportes"; ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<?php include("inc_metadata.php"); ?>
<body>
<!-- wrap starts here -->
<?php include("inc_header.php"); ?>
<div id="wrap">
<?php include("inc_menu.php"); ?>
<!-- content-wrap starts here -->
<div id="content-wrap">
<?php include("inc_sidebar.php"); ?>
<div id="main">
<h1>Reportes</h1>
<p>
<strong>
<a href="adm_reporte_envios.php">
<img align="texttop" src="images/icons/chart_bar.png" border="0" />
Reporte Envíos
</a>
</strong>
<br />
Reportes estadísticos de Envíos.
</p>
<p>
<strong>
<a href="adm_reporte_facturas.php">
<img align="texttop" src="images/icons/chart_bar.png" border="0" />
Reporte Facturas
</a>
</strong>
<br />
Reportes de Facturas Cobradas.
</p>
</div>
<!-- content-wrap ends here -->
</div>
<!-- wrap ends here -->
</div>
<?php include("inc_footer.php"); ?>
</body>
</html>
<?php include("inc_desconectarse.php"); ?>