-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhouses.php
177 lines (170 loc) · 5.34 KB
/
houses.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
<?php include('db_connect.php');?>
<div class="container-fluid">
<div class="col-lg-12">
<div class="row">
<!-- FORM Panel -->
<div class="col-md-4">
<form action="" id="manage-house">
<div class="card">
<div class="card-header">
House Form
</div>
<div class="card-body">
<div class="form-group" id="msg"></div>
<input type="hidden" name="id">
<div class="form-group">
<label class="control-label">House No</label>
<input type="text" class="form-control" name="house_no" required="">
</div>
<div class="form-group">
<label class="control-label">Category</label>
<select name="category_id" id="" class="custom-select" required>
<?php
$categories = $conn->query("SELECT * FROM categories order by name asc");
if($categories->num_rows > 0):
while($row= $categories->fetch_assoc()) :
?>
<option value="<?php echo $row['id'] ?>"><?php echo $row['name'] ?></option>
<?php endwhile; ?>
<?php else: ?>
<option selected="" value="" disabled="">Please check the category list.</option>
<?php endif; ?>
</select>
</div>
<div class="form-group">
<label for="" class="control-label">Description</label>
<textarea name="description" id="" cols="30" rows="4" class="form-control" required></textarea>
</div>
<div class="form-group">
<label class="control-label">Price</label>
<input type="number" class="form-control text-right" name="price" step="any" required="">
</div>
</div>
<div class="card-footer">
<div class="row">
<div class="col-md-12">
<button class="btn btn-sm btn-primary col-sm-3 offset-md-3"> Save</button>
<button class="btn btn-sm btn-default col-sm-3" type="reset" > Cancel</button>
</div>
</div>
</div>
</div>
</form>
</div>
<!-- FORM Panel -->
<!-- Table Panel -->
<div class="col-md-8">
<div class="card">
<div class="card-header">
<b>House List</b>
</div>
<div class="card-body">
<table class="table table-bordered table-hover">
<thead>
<tr>
<th class="text-center">#</th>
<th class="text-center">House</th>
<th class="text-center">Action</th>
</tr>
</thead>
<tbody>
<?php
$i = 1;
$house = $conn->query("SELECT h.*,c.name as cname FROM houses h inner join categories c on c.id = h.category_id order by id asc");
while($row=$house->fetch_assoc()):
?>
<tr>
<td class="text-center"><?php echo $i++ ?></td>
<td class="">
<p>House #: <b><?php echo $row['house_no'] ?></b></p>
<p><small>House Type: <b><?php echo $row['cname'] ?></b></small></p>
<p><small>Description: <b><?php echo $row['description'] ?></b></small></p>
<p><small>Price: <b><?php echo number_format($row['price'],2) ?></b></small></p>
</td>
<td class="text-center">
<button class="btn btn-sm btn-primary edit_house" type="button" data-id="<?php echo $row['id'] ?>" data-house_no="<?php echo $row['house_no'] ?>" data-description="<?php echo $row['description'] ?>" data-category_id="<?php echo $row['category_id'] ?>" data-price="<?php echo $row['price'] ?>" >Edit</button>
<button class="btn btn-sm btn-danger delete_house" type="button" data-id="<?php echo $row['id'] ?>">Delete</button>
</td>
</tr>
<?php endwhile; ?>
</tbody>
</table>
</div>
</div>
</div>
<!-- Table Panel -->
</div>
</div>
</div>
<style>
td{
vertical-align: middle !important;
}
td p {
margin: unset;
padding: unset;
line-height: 1em;
}
</style>
<script>
$('#manage-house').on('reset',function(e){
$('#msg').html('')
})
$('#manage-house').submit(function(e){
e.preventDefault()
start_load()
$('#msg').html('')
$.ajax({
url:'ajax.php?action=save_house',
data: new FormData($(this)[0]),
cache: false,
contentType: false,
processData: false,
method: 'POST',
type: 'POST',
success:function(resp){
if(resp==1){
alert_toast("Data successfully saved",'success')
setTimeout(function(){
location.reload()
},1500)
}
else if(resp==2){
$('#msg').html('<div class="alert alert-danger">House number already exist.</div>')
end_load()
}
}
})
})
$('.edit_house').click(function(){
start_load()
var cat = $('#manage-house')
cat.get(0).reset()
cat.find("[name='id']").val($(this).attr('data-id'))
cat.find("[name='house_no']").val($(this).attr('data-house_no'))
cat.find("[name='description']").val($(this).attr('data-description'))
cat.find("[name='price']").val($(this).attr('data-price'))
cat.find("[name='category_id']").val($(this).attr('data-category_id'))
end_load()
})
$('.delete_house').click(function(){
_conf("Are you sure to delete this house?","delete_house",[$(this).attr('data-id')])
})
function delete_house($id){
start_load()
$.ajax({
url:'ajax.php?action=delete_house',
method:'POST',
data:{id:$id},
success:function(resp){
if(resp==1){
alert_toast("Data successfully deleted",'success')
setTimeout(function(){
location.reload()
},1500)
}
}
})
}
$('table').dataTable()
</script>