-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrentals.php
220 lines (217 loc) · 12.6 KB
/
rentals.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
<?php
include_once 'functions/menu/offcanva-menu.php';
include_once 'functions/authentication.php';
include_once 'functions/tables/datatables.php';
?>
<!DOCTYPE html>
<html data-bs-theme="light" lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
<title>Reports - CUSTMBRS</title>
<meta name="description" content="CUSTMBRS - Cottage Usage Scheduling with Transaction Monitoring for a Beach Resort System">
<link rel="icon" type="image/png" sizes="128x128" href="assets/img/icon.png">
<link rel="icon" type="image/png" sizes="128x128" href="assets/img/icon.png">
<link rel="icon" type="image/png" sizes="128x128" href="assets/img/icon.png">
<link rel="icon" type="image/png" sizes="128x128" href="assets/img/icon.png">
<link rel="icon" type="image/png" sizes="128x128" href="assets/img/icon.png">
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/css/Nunito.css">
<link rel="stylesheet" href="assets/fonts/fontawesome-all.min.css">
<link rel="stylesheet" href="assets/css/Application-Form.css">
<link rel="stylesheet" href="assets/css/Articles-Cards-images.css">
<link rel="stylesheet" href="assets/css/bootstrap-select.min.css">
<link rel="stylesheet" href="assets/css/Navbar-Centered-Links-icons.css">
</head>
<body id="page-top">
<div id="wrapper">
<div class="d-flex flex-column" id="content-wrapper">
<nav class="navbar navbar-expand-md bg-body py-3 mb-5">
<div class="container-fluid"><img src="assets/img/icon.png" width="32"><a class="navbar-brand d-flex align-items-center" href="#"><span> Sere's Point Beach Resort</span></a><button data-bs-toggle="collapse" class="navbar-toggler" data-bs-target="#navcol-2"><span class="visually-hidden">Toggle navigation</span><span class="navbar-toggler-icon"></span></button>
<div class="collapse navbar-collapse" id="navcol-2">
<ul class="navbar-nav ms-auto"></ul><button class="btn btn-light ms-md-2" data-bs-toggle="offcanvas" data-bss-tooltip="" data-bs-placement="left" type="button" data-bs-target="#offcanvas-menu" title="Here you can see all the menu list of the site such as (Dashboard, Customers, Rents and etc.).">Menu</button>
</div>
</div>
</nav>
<div id="content">
<div class="container-fluid">
<div class="d-sm-flex justify-content-between align-items-center mb-4">
<h3 class="text-dark mb-0">Rentals Management</h3>
</div>
<div class="row mb-3">
<div class="col-md-6 col-xl-3 mb-4">
<div class="card shadow border-start-primary py-2" data-bs-toggle="tooltip" data-bss-tooltip="" title="Here you can see your current earnings.">
<div class="card-body">
<div class="row align-items-center no-gutters">
<div class="col me-2">
<div class="text-uppercase text-primary fw-bold text-xs mb-1"><span>CURRENT SALES</span></div>
<div class="text-dark fw-bold h5 mb-0"><span>₱<?php echo get_sales()?></span></span></span></div>
</div>
<div class="col-auto"><i class="fas fa-calendar fa-2x text-gray-300"></i></div>
</div>
</div>
</div>
</div>
<div class="col-md-6 col-xl-3 mb-4">
<div class="card shadow border-start-success py-2" data-bs-toggle="tooltip" data-bss-tooltip="" title="Here you can see your montly earnings.">
<div class="card-body">
<div class="row align-items-center no-gutters">
<div class="col me-2">
<div class="text-uppercase text-warning fw-bold text-xs mb-1"><span>MONTLY SALES</span></div>
<div class="text-dark fw-bold h5 mb-0"><span>₱<?php echo get_sales()?></span></div>
</div>
<div class="col-auto"><i class="fas fa-calendar fa-2x text-gray-300"></i></div>
</div>
</div>
</div>
</div>
<div class="col-md-6 col-xl-3 mb-4">
<div class="card shadow border-start-success py-2" data-bs-toggle="tooltip" data-bss-tooltip="" title="Here you can see your annual earnings.">
<div class="card-body">
<div class="row align-items-center no-gutters">
<div class="col me-2">
<div class="text-uppercase text-warning fw-bold text-xs mb-1"><span>ANNUAL SALES</span></div>
<div class="text-dark fw-bold h5 mb-0"><span>₱<?php echo get_sales('annual')?></span></div>
</div>
<div class="col-auto"><i class="fas fa-calendar fa-2x text-gray-300"></i></div>
</div>
</div>
</div>
</div>
</div>
<div class="card shadow">
<div class="card-header py-3">
<p class="text-primary m-0 fw-bold">Transaction List</p>
</div>
<div class="card-body">
<div class="table-responsive table mt-2" id="dataTable-1" role="grid" aria-describedby="dataTable_info">
<table class="table my-0 table-display" id="dataTable">
<thead>
<tr>
<th>Cottage #</th>
<th>Transaction #</th>
<th>Customer</th>
<th>Price</th>
<th>Balance</th>
<th>Type</th>
<th>Start Date</th>
<th>End Date</th>
<th>Status</th>
<th>Created At</th>
<th class="text-center">Option</th>
</tr>
</thead>
<tbody>
<?php rentals_list(); ?>
</tbody>
<tfoot>
<tr></tr>
</tfoot>
</table>
</div>
</div>
</div>
</div>
</div>
<footer class="bg-white sticky-footer">
<div class="container my-auto">
<div class="text-center my-auto copyright"><span>Copyright © CUTMBRS 2023</span></div>
</div>
</footer>
</div><a class="border rounded d-inline scroll-to-top" href="#page-top"><i class="fas fa-angle-up"></i></a>
</div>
<?php menu(); ?>
<div class="modal fade" role="dialog" tabindex="-1" id="paid">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title">Payment Status</h4><button class="btn-close" type="button" aria-label="Close" data-bs-dismiss="modal"></button>
</div>
<div class="modal-body">
<p>Are you sure you want to mark this as paid?</p>
</div>
<div class="modal-footer"><button class="btn btn-light" type="button" data-bs-dismiss="modal">Close</button>
<form action="functions/mark-paid.php" method="post">
<input type="hidden" name="id">
<button class="btn btn-primary" type="submit">Mark Paid</button>
</form></div>
</div>
</div>
</div>
<div class="modal fade" role="dialog" tabindex="-1" id="partiallypaid">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title">Payment Status</h4><button class="btn-close" type="button" aria-label="Close" data-bs-dismiss="modal"></button>
</div>
<div class="modal-body">
<form action="functions/mark-partiallypaid.php" method="post">
<div class="mb-1">
<label class="form-label">Partial Amount</label>
<input class="form-control" type="number" name="amount" required placeholder="Amount" min="1" value="1">
</div>
</div>
<div class="modal-footer"><button class="btn btn-light" type="button" data-bs-dismiss="modal">Close</button>
<input type="hidden" name="id">
<input type="hidden" name="price">
<input type="hidden" name="transaction">
<button class="btn btn-primary" type="submit">Mark Partially Paid</button>
</form></div>
</div>
</div>
</div>
<div class="modal fade" role="dialog" tabindex="-1" id="cancel">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title">Rental Cancel</h4><button class="btn-close" type="button" aria-label="Close" data-bs-dismiss="modal"></button>
</div>
<div class="modal-body">
<p>Are you sure you want to cancel this rental?</p>
</div>
<div class="modal-footer"><button class="btn btn-light" type="button" data-bs-dismiss="modal">Close</button>
<form action="functions/rental-cancel.php" method="post">
<input type="hidden" name="id">
<button class="btn btn-primary" type="submit">Cancel</button>
</form></div>
</div>
</div>
</div>
<script src="assets/js/jquery.min.js"></script>
<script src="assets/bootstrap/js/bootstrap.min.js"></script>
<script src="assets/js/bs-init.js"></script>
<script src="assets/js/bootstrap-select.min.js"></script>
<script src="assets/js/datatables.min.js"></script>
<script src="assets/js/pdfmake.min.js"></script>
<script src="assets/js/vfs_fonts.js"></script>
<script src="assets/js/jszip.min.js"></script>
<script src="assets/js/theme.js"></script>
<script src="assets/js/buttons.print.min.js"></script>
<script src="assets/js/buttons.html5.min.js"></script>
<script src="assets/js/sweetalert2.all.min.js"></script>
<script src="assets/js/main.js"></script>
<script src="assets/js/index.global.min.js"></script>
<script src="assets/js/tinymce.min.js"></script>
<script>
$('button[data-bs-target="#paid"]').on('click', function() {
var id = $(this).data('id');
$('input[name="id"]').val(id);
console.log(id);
});
$('button[data-bs-target="#partiallypaid"]').on('click', function() {
var id = $(this).data('id');
var price = $(this).data('price');
var transaction = $(this).data('transaction');
$('input[name="id"]').val(id);
$('input[name="price"]').val(price);
$('input[name="transaction"]').val(transaction);
console.log(id);
});
$('button[data-bs-target="#cancel"]').on('click', function() {
var id = $(this).data('id');
$('input[name="id"]').val(id);
console.log(id);
});
</script>
</body>
</html>