forked from siamon123/warehouse-inventory-system
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sales_report.php
39 lines (36 loc) · 1.26 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
<?php
$page_title = 'Sale Report';
require_once('includes/load.php');
// Checkin What level user has permission to view this page
page_require_level(3);
?>
<?php include_once('layouts/header.php'); ?>
<div class="row">
<div class="col-md-6">
<?php echo display_msg($msg); ?>
</div>
</div>
<div class="row">
<div class="col-md-6">
<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">Date Range</label>
<div class="input-group">
<input type="text" class="datepicker form-control" name="start-date" placeholder="From">
<span class="input-group-addon"><i class="glyphicon glyphicon-menu-right"></i></span>
<input type="text" class="datepicker form-control" name="end-date" placeholder="To">
</div>
</div>
<div class="form-group">
<button type="submit" name="submit" class="btn btn-primary">Generate Report</button>
</div>
</form>
</div>
</div>
</div>
</div>
<?php include_once('layouts/footer.php'); ?>