-
Notifications
You must be signed in to change notification settings - Fork 1
/
edit-exptype.php
154 lines (127 loc) · 5.13 KB
/
edit-exptype.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
<?php require_once 'config/config.php';
$Title = "Expense Type";
$title = "exptype";
$row = fetchRecord($_POST['id'],'exptype');
?>
<!DOCTYPE html>
<html lang="en">
<head>
<title>Add <?=$Title?></title>
<?php require_once $include_path.'head.php'; ?>
</head>
<body>
<!-- HK Wrapper -->
<div class="hk-wrapper hk-vertical-nav">
<!-- Top Navbar -->
<?php require_once $include_path.'navbar.php'; ?>
<!-- /Top Navbar -->
<!-- Vertical Nav -->
<?php require_once $include_path.'sidebar.php'; ?>
<!-- /Vertical Nav -->
<!-- Setting Panel -->
<?php require_once $include_path.'setting.php'; ?>
<!-- /Setting Panel -->
<!-- Main Content -->
<div class="hk-pg-wrapper">
<!-- Container -->
<div class="container mt-xl-50 mt-sm-30 mt-15">
<!-- Title -->
<div class="hk-pg-header align-items-top">
<div>
<h2 class="hk-pg-title font-weight-600 mb-10">UPDATE <?=$Title?>!</h2>
</div>
</div>
<!-- /Title -->
<!-- Row -->
<div class="row">
<div class="col-xl-12">
<section class="hk-sec-wrapper">
<div class="row">
<div class="col-sm">
<form id="myform">
<input type="hidden" name="Id" value="<?php echo $row->Id; ?>">
<div class="form-group row">
<label for="inputEmail3" class="col-sm-2 col-form-label">Name</label>
<div class="col-sm-10">
<input type="text" name="Name" class="form-control" id="name" value="<?php echo $row->Name; ?>" placeholder="name">
</div>
</div>
<div class="form-group row mb-0">
<div class="col-sm-10">
<button type="submit" id="submit" class="btn btn-gradient-info">Update</button>
</div>
</div>
</form>
</div>
</div>
</section>
</div>
</div>
<!-- /Row -->
</div>
<!-- /Container -->
<!-- Footer -->
<?php require_once $include_path.'footer.php'; ?>
<!-- /Footer -->
</div>
<!-- /Main Content -->
</div>
<!-- /HK Wrapper -->
<?php require_once $include_path.'foot.php'; ?>
<script type="text/javascript">
$(document).ready(function () {
iziToast.settings({
timeout: 2500,
resetOnHover: true,
animateInside: true,
transitionIn: 'bounceInUp',
transitionOut: 'flipOutX'
});
$("#myform").submit(function (e) {
e.preventDefault();
var formData = $("#myform").serialize();
$.ajax({
type: "POST",
url : "<?php echo $action_url; ?>update_<?=$title?>.php",
data: formData,
beforeSend: function() {
$('#submit').attr('disabled', true);
$("#submit").html("<i id='sub' class='fad fa-sync-alt fa-spin fa-lg'></i>").addClass("btn-success");
},
complete: function() {
$('#submit').empty().addClass('btn btn-gradient-info').html('Update');
$('#submit').attr('disabled', false);
},
success: function (response) {
if (response == "Success") {
iziToast.success({
title: 'Succes',
message: '<?=$Title?> Updated'
});
window.setTimeout(function() {
window.location.href = '<?php echo $base_url; ?>list-<?=$title?>.php';
}, 3000);
}else if(response == "Existed"){
iziToast.info({
title: 'Existed',
message: 'Already Existed'
});
}else if (response == "Invalid") {
iziToast.error({
title: 'Invalid',
message: 'Something Went Wrong'
});
}
},
error: function(e) {
iziToast.warning({
title: 'Request Error',
message: e.statusText
});
}
});
});
});
</script>
</body>
</html>