-
Notifications
You must be signed in to change notification settings - Fork 1
/
add-filled.php
155 lines (132 loc) · 5.86 KB
/
add-filled.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
<?php require_once 'config/config.php';
$Title = "Filled";
$title = "filled";
?>
<!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 -->
<!-- /Title -->
<!-- Row -->
<div class="row">
<div class="col-xl-12">
<section class="hk-sec-wrapper">
<h5 class="hk-sec-title">Add Stock(Filled)</h5>
<div class="row">
<div class="col-sm">
<form id="myform">
<div class="form-group row">
<label for="inputEmail3" class="col-sm-2 col-form-label">Bottles</label>
<div class="col-sm-10">
<input type="number" name="FBottle" class="form-control" id="bottle" placeholder="Bottles">
</div>
</div>
<div class="form-group row">
<label for="inputEmail3" class="col-sm-2 col-form-label">Shells</label>
<div class="col-sm-10">
<input type="number" name="FShell" class="form-control" id="shell" placeholder="Shells">
</div>
</div>
<div class="form-group row">
<label for="inputEmail3" class="col-sm-2 col-form-label">Pallets</label>
<div class="col-sm-10">
<input type="number" name="FPallet" class="form-control" id="pallets" placeholder="Pallets">
</div>
</div>
<div class="form-group row mb-0">
<div class="col-sm-6">
<button type="submit" id="submit" class="btn btn-gradient-info">Add</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 -->
<!-- jQuery -->
<?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; ?>add_<?=$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('Add <?=$Title?>');
$('#submit').attr('disabled', false);
},
success: function (response) {
if (response == "Success") {
iziToast.success({
title: 'Succes',
message: '<?=$Title?> Added'
});
$('#myform').trigger("reset");
}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>