-
Notifications
You must be signed in to change notification settings - Fork 0
/
admin.php
83 lines (82 loc) · 3.48 KB
/
admin.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
<?php include("inc_session.php"); ?>
<?php include("inc_seguridad.php"); ?>
<?php include("inc_conectarse.php"); ?>
<?php include("inc_functions.php"); ?>
<?php $_SESSION["modulo"] = ""; ?>
<!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>Bienvenido</h1>
<p>
<strong>
<a href="envios.php">
<img align="texttop" src="images/icons/lorry.png" border="0" />
ENVIOS
</a>
</strong>
<br />
En este módulo podrá cargar en el sistema nuevos envíos, tanto por
factura directa como por nota de entrega.
</p>
<p>
<strong>
<a href="guias.php">
<img align="texttop" src="images/icons/paste_plain.png" border="0" />
GUIAS DE ENTREGA
</a>
</strong>
<br />
En este módulo podrá generar e imprimir guías de entrega a partir
de envíos cargados en el sistema.
</p>
<p>
<strong>
<a href="facturas.php">
<img align="texttop" src="images/icons/printer.png" border="0" />
FACTURAS
</a>
</strong>
<br />
En este módulo podrá generar e imprimir facturas a clientes y proveedores.
También podrá consultar el estatus de facturas generadas.
</p>
<p>
<strong>
<a href="reportes.php">
<img align="texttop" src="images/icons/chart_bar.png" border="0" />
REPORTES
</a>
</strong>
<br />
En este módulo podrá consultar reportes estadísticos por clientes,
proveedores, destinos y choferes.
</p>
<p>
<strong>
<a href="configuracion.php">
<img align="texttop" src="images/icons/wrench.png" border="0" />
CONFIGURACION
</a>
</strong>
<br />
En este módulo podrá actualizar los datos de usuario, así como administrar
su lista de clientes, proveedores, destinos y choferes.
</p>
</div>
<!-- content-wrap ends here -->
</div>
<!-- wrap ends here -->
</div>
<?php include("inc_footer.php"); ?>
</body>
</html>
<?php include("inc_desconectarse.php"); ?>