-
Notifications
You must be signed in to change notification settings - Fork 0
/
sales_report.php
40 lines (36 loc) · 1.25 KB
/
sales_report.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
<?php
$page_title = 'Reporte de ventas';
require_once('includes/load.php');
// Verificar que nivel de usuario tiene permiso de ver esta página.
page_require_level(3);
?>
<?php include_once('layouts/header.php'); ?>
<div class="row">
<div class="col-md-12">
<?php echo display_msg($msg); ?>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="panel">
<div class="panel-heading">
</div>
<div class="panel-body">
<form class="clearfix" method="post" action="sale_report_process.php">
<div class="form-group">
<label class="form-label">Rango de fechas</label>
<div class="input-group">
<input type="text" class="datepicker form-control" name="start-date" placeholder="Desde">
<span class="input-group-addon"><i class="glyphicon glyphicon-menu-right"></i></span>
<input type="text" class="datepicker form-control" name="end-date" placeholder="Hasta">
</div>
</div>
<div class="form-group">
<button type="submit" name="submit" class="btn btn-primary">Generar Reporte</button>
</div>
</form>
</div>
</div>
</div>
</div>
<?php include_once('layouts/footer.php'); ?>