forked from RickyLeRoi/proges
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.php
223 lines (198 loc) · 7.98 KB
/
settings.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
<!DOCTYPE html>
<html lang="it">
<head>
<!-- blu #071E3F arancione #EA640C -->
<meta charset="utf-8">
<title>Settaggi liste</title>
<meta name="description" content="Gestionale per etichettificio Provenzano"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
<?php include("function/session.php");
include("DB/config.php");
?>
<?php include_once("template/parrot/style.php") // Carica gli stili del tema in uso ?>
<style>
label {
color: #FFF;
}
</style>
</head>
<body>
<!-- #### Navbars #### -->
<?php include_once("template/parrot/navbar.php") ?>
<?php
include("./DB/config.php");
if(isset($_POST["fatt"])) {
$fatt = mysqli_real_escape_string($conndb,$_POST['fatt']);
$ndc = mysqli_real_escape_string($conndb,$_POST['ndc']);
$ddt = mysqli_real_escape_string($conndb,$_POST['ddt']);
$prev = mysqli_real_escape_string($conndb,$_POST['prev']);
$clienti = mysqli_real_escape_string($conndb,$_POST['clienti']);
$fornitori = mysqli_real_escape_string($conndb,$_POST['fornitori']);
$config = mysqli_real_escape_string($conndb,$_POST['config']);
if ($config === "false") {
$query = " INSERT INTO settings (max_fatt,max_ndc,max_ddt,max_prev, max_clienti, max_fornitori, id_user)
VALUES ($fatt, $ndc, $ddt, $prev, $clienti, $fornitori, $userID)";
$msg = "inseriti";
}
if ($config === "true") {
$query = " UPDATE settings
SET max_fatt=".$fatt.", max_ndc=".$ndc.",max_ddt=".$ddt.", max_prev=".$prev.", max_clienti=".$clienti.", max_fornitori=".$fornitori."
WHERE id_user = ".$userID;
$msg = "aggiornati";
}
/* check connection */
if ($result = $conndb->query($query)) {
$success = "Record ".$msg." con successo";
}
if ($conndb->connect_errno) {
printf("Connect failed: %s\n", $conndb->connect_error);
}
}
$query = "SELECT * FROM settings WHERE id_user LIKE ".$userID;
/* check connection */
if ($result = $conndb->query($query)) {
$row = $result->fetch_object();
if ($result->num_rows === 0) {
$norows = "Non è presente alcuna configurazione";
$config = "false";
}
else {
$config = "true";
}
}
if ($conndb->connect_errno) {
printf("Connect failed: %s\n", $conndb->connect_error);
}
?>
<div class="container">
<?php if(isset($norows)) : ?>
<div class="alert alert-warning" role="alert">
<?php echo $norows ?>
</div>
<?php endif; ?>
<?php if(isset($success)) : ?>
<div class="alert alert-success" role="alert">
<?php echo $success ?>
</div>
<?php endif; ?>
<!--
<h2 style="color: #FFF" >Record visualizzabili</h2>
<form class="form-horizontal" method="post" action="#">
<div class="form-group">
<label class="col-sm-2 control-label">Lista fatture</label>
<div class="col-sm-10">
<select name="fatt" class="form-control" value="<?php echo @$row->max_fatt ?>">
<option value="10">10</option>
<option value="20" selected="selected">20</option>
<option value="30">30</option>
<option value="50">50</option>
<option value="100">100</option>
</select>
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label">Lista NDC</label>
<div class="col-sm-10">
<select name="ndc" class="form-control" value="<?php echo @$row->max_ndc ?>">
<option value="10">10</option>
<option value="20" selected="selected">20</option>
<option value="30">30</option>
<option value="50">50</option>
<option value="100">100</option>
</select>
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label">Lista DDT</label>
<div class="col-sm-10">
<select name="ddt" class="form-control" value="<?php echo @$row->max_ddt ?>">
<option value="10">10</option>
<option value="20">20</option>
<option value="30" selected="selected">30</option>
<option value="50">50</option>
<option value="100">100</option>
</select>
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label">Lista preventivi</label>
<div class="col-sm-10">
<select name="prev" class="form-control" value="<?php echo @$row->max_prev ?>">
<option value="10">10</option>
<option value="20">20</option>
<option value="30" selected="selected">30</option>
<option value="50">50</option>
<option value="100">100</option>
</select>
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label">Lista clienti</label>
<div class="col-sm-10">
<select name="clienti" class="form-control" value="<?php echo @$row->max_clienti ?>">
<option value="10">10</option>
<option value="20">20</option>
<option value="30" selected="selected">30</option>
<option value="50">50</option>
<option value="100">100</option>
</select>
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label">Lista fornitori</label>
<div class="col-sm-10">
<select name="fornitori" class="form-control" value="<?php echo @$row->max_fornitori ?>">
<option value="10">10</option>
<option value="20" selected="selected">20</option>
<option value="30">30</option>
<option value="50">50</option>
<option value="100">100</option>
</select>
<input type="hidden" name="config" value="<?php echo $config ?>">
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<button type="submit" class="btn btn-default">Conferma</button>
</div>
</div>
</form>
<!-- <div class="alert alert-info" role="alert">
<span><b>Nota bene:</b><br>
Impostare un numero alto potrebbe incidere negativamente sulle prestazioni del server</span>
</div>-->
<h2 style="color: #FFF">Backup DB</h2>
<form class="form-horizontal" action="DB/dumpDB.php" method="POST">
<div class="form-group">
<label class="col-sm-2 control-label">Dump</label>
<div class="col-sm-10">
<input class="btn btn-default" type="submit" value="Backup">
</div>
</div>
</form>
</div>
<form class="form-horizontal" action="function/download.php" method="POST">
<div class="form-group">
<label class="col-sm-2 control-label">Download</label>
<div class="col-sm-10">
<select class="btn btn-default" name="file">
<?php
$dir = "DB/backup";
$dh = opendir($dir);
while (false !== ($filename = readdir($dh))) {
$files[] = $filename;
}
rsort($files);
for ($i=0; $i<count($files); $i++) {
echo "<option>".$files[$i]."</option>";
}
?>
</select>
<input class="btn btn-default" type="submit" value="Scarica">
</div>
</div>
</form>
<!--</div>-->
<?php include_once("template/parrot/foot.php") ?>
</body>
</html>