-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinvoices.php
264 lines (224 loc) · 10.1 KB
/
invoices.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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>PronetERP</title>
<!-- Tell the browser to be responsive to screen width -->
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
<!-- Bootstrap 3.3.7 -->
<link rel="stylesheet" href="bower_components/bootstrap/dist/css/bootstrap.min.css">
<!-- Font Awesome -->
<link rel="stylesheet" href="bower_components/font-awesome/css/font-awesome.min.css">
<!-- Ionicons -->
<link rel="stylesheet" href="bower_components/Ionicons/css/ionicons.min.css">
<!-- DataTables -->
<link rel="stylesheet" href="bower_components/datatables.net-bs/css/dataTables.bootstrap.min.css">
<!-- Theme style -->
<link rel="stylesheet" href="dist/css/AdminLTE.min.css">
<!-- AdminLTE Skins. Choose a skin from the css/skins
folder instead of downloading all of them to reduce the load. -->
<link rel="stylesheet" href="dist/css/skins/_all-skins.min.css">
<link rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600,700,300italic,400italic,600italic">
<script type="text/javascript" language="javascript" class="init">
function WarningDelete(id) {
if (confirm("WARNING !!\n\nYou are about to delete this Product\n\nDo you want to continue?")) {
window.location = "delete_product.php?id=" + id;
/* $.ajax({
type: "POST",
url: "delete_customer.php",
data: info,id
success: function(){
}
});*/
} else {
return false;
}
}
</script>
</head>
<body class="hold-transition skin-blue sidebar-mini">
<div class="wrapper">
<header class="main-header">
<?php include 'top_nav.php'; ?>
</header>
<!-- Left side column. contains the logo and sidebar -->
<aside class="main-sidebar">
<?php include 'left_nav.php'; ?>
</aside>
<!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
<!-- Content Header (Page header) -->
<section class="content-header">
<h1>
Invoices
</h1>
<ol class="breadcrumb">
<li><a href="#"><i class="fa fa-dashboard"></i> Home</a></li>
<li><a href="#">Products</a></li>
<li class="active">Invoices</li>
</ol>
</section>
<!-- Main content -->
<section class="content">
<div class="row">
<div class="col-xs-12">
<div class="box">
<div class="box-footer clearfix no-border">
<a href="pdf_invoices.php" target="_blank" class="success pull-right"><i class='glyphicon glyphicon-print'></i> Print PDF</a>
</div>
<!-- /.box-header -->
<div class="box-body">
<table id="example1" class="table table-bordered table-striped">
<thead>
<tr>
<th>#</th>
<th>Supplier</th>
<th>Contact Person</th>
<th>Invoice Date</th>
<th>Amount</th>
<th>Status</th>
<th>Pay</th>
</tr>
</thead>
<tbody>
<?php
include('dao/connect.php');
$statement = "SELECT `company_name`,`contact_person`, invoice.* FROM invoice JOIN `suppliers` ON invoice.`supplier_id` = suppliers.`supplier_id` ORDER BY `invoice_date` DESC ";
$result = $connection->query($statement);
$num = 0;
while($row = $result->fetch_assoc()) {
$num++;
?>
<tr>
<td> <?php echo $num; ?></td>
<td> <?php echo $row['company_name']; ?> </td>
<td> <?php echo $row['contact_person']; ?></td>
<td> <?php echo $row['invoice_date']; ?></td>
<td> <?php echo $row['amount']; ?></td>
<td> <?php echo $row['pay_status']; ?></td>
<?php if($row['pay_status'] == 'Unpaid') { ?>
<td><a href="pay_invoice.php?id=<?php echo $row['invoice_id'] ?>" title="Click to Edit Customer Details"><i <button type="button" class="btn btn-danger btn-sm"><b class="fa fa-plus-circle" ></b> Pay </button></a></td>
<?php } else{ ?>
<td><a href="#" title=""><i <button type="button" class="btn btn-success btn-sm"><b class="fa fa-check" ></b> Paid </button></a></td>
<?php } ?>
</tr>
<?php } ?>
</tbody>
<tfoot>
</tfoot>
</table>
</div>
<!-- /.box-body -->
</div>
<!-- /.box -->
</div>
<!-- /.col -->
</div>
<!-- /.row -->
</section>
<!-- /.content -->
</div>
<!-- /.content-wrapper -->
<footer class="main-footer">
<?php include 'footer.php'; ?>
</footer>
<!-- Control Sidebar -->
<aside class="control-sidebar control-sidebar-dark">
<?php include 'asidemenu.php'; ?>
</aside>
<!-- /.control-sidebar -->
<!-- Add the sidebar's background. This div must be placed
immediately after the control sidebar -->
<div class="control-sidebar-bg"></div>
</div>
<!-- ./wrapper -->
<!-- jQuery 3 -->
<script src="bower_components/jquery/dist/jquery.min.js"></script>
<!-- Bootstrap 3.3.7 -->
<script src="bower_components/bootstrap/dist/js/bootstrap.min.js"></script>
<!-- DataTables -->
<script src="bower_components/datatables.net/js/jquery.dataTables.min.js"></script>
<script src="bower_components/datatables.net-bs/js/dataTables.bootstrap.min.js"></script>
<!-- SlimScroll -->
<script src="bower_components/jquery-slimscroll/jquery.slimscroll.min.js"></script>
<!-- FastClick -->
<script src="bower_components/fastclick/lib/fastclick.js"></script>
<!-- AdminLTE App -->
<script src="dist/js/adminlte.min.js"></script>
<!-- AdminLTE for demo purposes -->
<script src="dist/js/demo.js"></script>
<!-- page script -->
<script>
$(function () {
$('#example1').DataTable()
$('#example2').DataTable({
'paging' : true,
'lengthChange': false,
'searching' : false,
'ordering' : true,
'info' : true,
'autoWidth' : false
})
})
</script>
<div class="modal modal-primary fade" id="modal_new_product">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span></button>
<h4 class="modal-title">ADD NEW PRODUCT</h4>
</div>
<div class="modal-body">
<form role="form" action="save_product.php" method="post" enctype="multipart/form-data">
<div class="box-body">
<div class="form-group">
<label for="product_category">Category:</label>
<select class="form-control" id="product_category" name="product_category" required >
<option value="">--------Select Category----------</option>
<?php
include('dao/connect.php');
$result = $db->query("select * from product_category");
while ($de = $result->fetch_assoc()) {
$catid = $de['category_id'];
$cat = $de['category'];?>
<option value="<?php echo $catid; ?>"><?php echo $cat; ?></option>
<?php } ?>
</select>
</div>
<div class="form-group">
<label for="product_name">Product Name:</label>
<input name="product_name" type="text" class="form-control" id="product_name" required placeholder="eg Safcom 100">
</div>
<div class="form-group">
<label for="purchase_price">Purchase Price:</label>
<input type="number" class="form-control" id="purchase_price" name="purchase_price" autocomplete="off" placeholder="Purchase Price per Unit">
</div>
<div class="form-group">
<label for="wholesale_price">Wholesale Price.</label>
<input type="number" class="form-control" id="wholesale_price" autocomplete="off" name="wholesale_price" required placeholder="Wholesale Price">
</div>
<div class="form-group">
<label for="retail_price">Retail Price:</label>
<input type="number" class="form-control" id="retail_price" autocomplete="off" name="retail_price" placeholder="Retail Price per unit">
</div>
<div class="form-group">
<label for="qnty">Quantity on Hand:</label>
<input type="number" class="form-control" id="qnty" name="qnty" autocomplete="off" required placeholder="Quantity on Hand">
</div>
</div>
<!-- /.box-body -->
<div class="box-footer" align="center">
<button type="submit" class="btn btn-primary">Submit</button>
</div>
</form>
</div>
</div>
<!-- /.modal-content -->
</div>
<!-- /.modal-dialog -->
</div>
</body>
</html>