-
Notifications
You must be signed in to change notification settings - Fork 36
/
index.php
111 lines (110 loc) · 3.02 KB
/
index.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
<!doctype html>
<html lang="es">
<head>
<meta charset="UTF-8">
<title>Sistema de Inventariado</title>
<link rel="stylesheet" type="text/css" href="styles/normalize.css">
<link rel="stylesheet" type="text/css" href="styles/style.css">
<link rel="stylesheet" type="text/css" href="styles/jquery-ui-1.10.3.custom.css">
<link rel="stylesheet" type="text/css" href="styles/jquery.dataTables.css">
<link rel="stylesheet" type="text/css" href="styles/bootstrap-responsive.css">
<link rel="stylesheet" type="text/css" href="styles/bootstrap.css">
<script src="scripts/jquery-1.9.1.js"></script>
<script src="scripts/functions.js"></script>
<script src="scripts/prefixfree.min.js"></script>
<script src="scripts/jquery.dataTables.js"></script>
<script src="scripts/jquery-ui-1.10.3.custom.js"></script>
<script src="scripts/jquery-barcode.js"></script>
</head>
<body>
<div id="mainWrapper">
<header>
<h1>Sistema de Inventariado</h1>
</header>
<nav>
<ul class="nav nav-tabs">
<li class="active"><a href="#">Registrar</a></li>
<li><a href="#">Buscar</a></li>
</ul>
</nav>
<header id="titleContent">Registrar artículo</header>
<section>
<article id="aRegister">
<div class="row-fluid">
<div class="span6">
<?php include 'form.php'; ?>
</div>
<div class="span6">
<div class="contentBarcode">
<div class="barCode">
<header><h4>Código</h4></header>
<canvas id="registerBarcode" width="115" height="70"></canvas>
</div>
<a href="#" class="btn btn-primary">Guardar</a>
<div class="alert"></div>
</div>
</div>
</div>
</article>
<article id="aSearch">
<table id="tSearch" cellspacing="1">
<caption>Listado de artículos</caption>
<thead>
<tr>
<th>Id</th>
<th>Área</th>
<th>Encargado</th>
<th>Nombre</th>
<th># Serie</th>
<th>Cantidad</th>
<th>Descripción</th>
</tr>
</thead>
<tbody>
<tr>
<td>4</td>
<td>Area 1</td>
<td>Soldier</td>
<td>Edgardo</td>
<td>1234</td>
<td>10</td>
<td>Articulo y descripción</td>
</tr>
<tr>
<td>6</td>
<td>Area 2</td>
<td>SoldierCorp</td>
<td>Edgardo</td>
<td>1234</td>
<td>10</td>
<td>Articulo y descripción</td>
</tr>
</tbody>
</table>
<div class="row-fluid">
<div class="span6">
<h3>Editar artículo ART-<span></span></h3>
Última actualización: <i></i>
<?php include 'form.php'; ?>
</div>
<div class="span6">
<div class="contentBarcode">
<div class="barCode">
<header><h4>Código</h4></header>
<canvas id="searchBarcode" width="115" height="70"></canvas>
</div>
<a href="#" class="btn btn-primary">Guardar</a>
<div class="alert"></div>
</div>
</div>
</div>
</article>
</section>
</div>
<footer>
<p>
Sistema de Inventariado con código de Barras por SoldierCorp.
</p>
</footer>
</body>
</html>