-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathview_report.php
185 lines (136 loc) · 6.51 KB
/
view_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
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
<?php
include_once("init.php");
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>PDV Web - Relatórios</title>
<!-- Stylesheets -->
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="js/date_pic/date_input.css">
<!-- Optimize for mobile devices -->
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<!-- jQuery & JS files -->
<?php include_once("tpl/common_js.php"); ?>
<script src="js/date_pic/jquery.date_input.js"></script>
<script src="js/script.js"></script>
<script src="js/view_report.js"></script>
</head>
<body>
<!-- TOP BAR -->
<?php include_once("tpl/top_bar.php"); ?>
<!-- end top-bar -->
<!-- HEADER -->
<div id="header-with-tabs">
<div class="page-full-width cf">
<?php require_once ("mainmenu.php");?>
<!-- end tabs -->
<!-- Change this image to your own company's logo -->
<!-- The logo will automatically be resized to 30px height. -->
<a href="#" id="company-branding-small" class="fr"><img src="<?php if (isset($_SESSION['logo'])) {
echo "upload/" . $_SESSION['logo'];
} else {
echo "upload/posnic.png";
} ?>" alt="PDV Web"/></a>
</div>
<!-- end full-width -->
</div>
<!-- end header -->
<!-- MAIN CONTENT -->
<div id="content">
<div class="page-full-width cf">
<div class="side-menu fl">
<h3>Relatórios</h3>
<ul>
<ul>
<li><a></a></li>
</ul>
</ul>
</div>
<!-- end side-menu -->
<div class="side-content fr">
<div class="content-module">
<div class="content-module-heading cf">
<h3 class="fl">Relatórios</h3>
<span class="fr expand-collapse-text">CLIQUE PARA FECHAR</span>
<span class="fr expand-collapse-text initial-expand">CLIQUE PARA ABRIR</span>
</div>
<!-- end content-module-heading -->
<div class="content-module-main cf">
<form action="">
<table class="form" border="0" cellspacing="0" cellpadding="0">
<form action="sales_Relatórios.php" method="post" name="form1" id="form1" name="sales_Relatórios"
id="sales_Relatórios" target="myNewWinsr">
<tr>
<td><strong>Sales Relatórios </strong></td>
<td>From</td>
<td><input name="from_sales_date" type="text" id="from_sales_date"
style="width:80px;"></td>
<td>To</td>
<td><input name="to_sales_date" type="text" id="to_sales_date" style="width:80px;">
</td>
<td><div style="padding-left: 15px;"><input class="button round blue image" name="submit" type="button" value="Show" onClick='sales_Relatórios_fn();'>
</div></td>
</tr>
</form>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<form action="purchase_Relatórios.php" method="post" name="purchase_Relatórios" target="_blank">
<tr>
<td><strong>Purchase Relatórios </strong></td>
<td>From</td>
<td><input name="from_purchase_date" type="text" id="from_purchase_date"
style="width:80px;"></td>
<td>To</td>
<td><input name="to_purchase_date" type="text" id="to_purchase_date"
style="width:80px;"></td>
<td><div style="padding-left: 15px;"><input class="button round blue image" name="submit" type="button" value="Show" onClick='purchase_Relatórios_fn();'>
</div></td>
</tr>
</form>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<form action="sales_purchase_Relatórios.php" method="post" name="sales_purchase_Relatórios"
target="_blank">
<tr>
<td><strong>Purchase Stocks </strong></td>
<td>From</td>
<td><input name="from_sales_purchase_date" type="text" id="from_sales_purchase_date"
style="width:80px;"></td>
<td>To</td>
<td><input name="to_sales_purchase_date" type="text" id="to_sales_purchase_date"
style="width:80px;"></td>
<td><div style="padding-left: 15px;"><input class="button round blue image" name="submit" type="button" value="Show"
onClick='sales_purchase_Relatórios_fn();'></div></td>
</tr>
</form>
</table>
</div>
<!-- end content-module-main -->
</div>
<!-- end content-module -->
</div>
<!-- end full-width -->
</div>
<!-- end content -->
<!-- FOOTER -->
<div id="footer">
<p>Nome da Empresa - www.nomedaempresa.com.br</a>.
</p>
</div>
<!-- end footer -->
</body>
</html>