forked from MoussaKassim/MO-DJIB-consulting
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathContrôle_teperature.html
215 lines (178 loc) · 7.29 KB
/
Contrôle_teperature.html
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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contrôle de Température HACCP</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
color: #333;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.container {
background-color: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
max-width: 400px;
width: 100%;
animation: fadeIn 1s ease-in-out;
}
h1 {
text-align: center;
color: #007bff;
}
label {
display: block;
margin-top: 10px;
font-weight: bold;
}
input, select {
width: 100%;
padding: 8px;
margin-top: 5px;
box-sizing: border-box;
border-radius: 4px;
border: 1px solid #ccc;
}
button {
margin-top: 20px;
padding: 10px;
width: 100%;
background-color: #007bff;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
transition: background-color 0.3s ease;
}
button:hover {
background-color: #0056b3;
}
.warning {
color: red;
font-weight: bold;
margin-top: 10px;
text-align: center;
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
@keyframes slideIn {
from { transform: translateY(20px); opacity: 0; }
to { transform: translateY(0); opacity: 1; }
}
.alert {
animation: slideIn 0.5s ease-out;
}
</style>
<!-- Inclusion de la bibliothèque SheetJS -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/xlsx/0.18.5/xlsx.full.min.js"></script>
</head>
<body>
<div class="container">
<h1>Contrôle Température HACCP</h1>
<p>Veillez à suivre les instructions HACCP pour un relevé correct.</p>
<form id="temperatureForm">
<label for="time">Moment de la journée :</label>
<select id="time" required>
<option value="matin">Matin</option>
<option value="apres-midi">Après-midi</option>
</select>
<label for="tempType">Type de froid :</label>
<select id="tempType" required onchange="adjustTemperatureRange()">
<option value="positif">Froid Positif</option>
<option value="negatif">Froid Négatif</option>
</select>
<label for="deviceNumber">Numéro de l'appareil :</label>
<input type="text" id="deviceNumber" placeholder="Ex: Frigo 1" required>
<label for="date">Date :</label>
<input type="date" id="date" required>
<label for="temperature">Température (°C) :</label>
<input type="number" id="temperature" step="0.1" required>
<label for="personName">Nom de la personne :</label>
<input type="text" id="personName" required>
<div id="warningMessage" class="warning"></div>
<button type="button" onclick="saveTemperature()">Sauvegarder le relevé</button>
<button type="button" onclick="exportDataToExcel()">Exporter les données du mois</button>
</form>
</div>
<script>
let tempRange = {min: 0, max: 4}; // Default range for cold positive
function adjustTemperatureRange() {
const tempType = document.getElementById('tempType').value;
if (tempType === 'positif') {
tempRange = {min: 0, max: 4}; // Adjust to cold positive range
} else {
tempRange = {min: -20, max: 0}; // Adjust to cold negative range
}
}
function validateTemperature(temp) {
return temp >= tempRange.min && temp <= tempRange.max;
}
function saveTemperature() {
const time = document.getElementById('time').value;
const tempType = document.getElementById('tempType').value;
const deviceNumber = document.getElementById('deviceNumber').value;
const date = document.getElementById('date').value;
const temperature = parseFloat(document.getElementById('temperature').value);
const personName = document.getElementById('personName').value;
const warningMessage = document.getElementById('warningMessage');
if (!validateTemperature(temperature)) {
warningMessage.textContent = `Attention : La température est hors des limites HACCP (${tempRange.min}°C à ${tempRange.max}°C) pour ${tempType === 'positif' ? 'froid positif' : 'froid négatif'}.`;
warningMessage.classList.add('alert');
return;
} else {
warningMessage.textContent = '';
}
const entry = {
time: time,
tempType: tempType,
temperature: temperature,
date: date,
personName: personName
};
const monthKey = `${deviceNumber}_${date.split('-').slice(0, 2).join('_')}`;
const storedData = localStorage.getItem(monthKey);
let data = storedData ? JSON.parse(storedData) : [];
data.push(entry);
localStorage.setItem(monthKey, JSON.stringify(data));
alert("Relevé de température sauvegardé !");
}
function exportDataToExcel() {
const deviceNumber = document.getElementById('deviceNumber').value;
const date = document.getElementById('date').value;
const monthKey = `${deviceNumber}_${date.split('-').slice(0, 2).join('_')}`;
const storedData = localStorage.getItem(monthKey);
if (storedData) {
const data = JSON.parse(storedData);
// Création du workbook
const workbook = XLSX.utils.book_new();
// Créer une nouvelle feuille pour le réfrigérateur/congélateur/chambre froide
const worksheetData = data.map(entry => ({
"Moment de la journée": entry.time,
"Type de froid": entry.tempType,
"Température (°C)": entry.temperature,
"Date": entry.date,
"Nom de la personne": entry.personName
}));
const worksheet = XLSX.utils.json_to_sheet(worksheetData);
XLSX.utils.book_append_sheet(workbook, worksheet, `Appareil_${deviceNumber}`);
// Sauvegarder le fichier avec le numéro de l'appareil et la date
const filename = `Controle_Temperature_${monthKey}.xlsx`;
XLSX.writeFile(workbook, filename);
} else {
alert("Aucune donnée disponible pour ce mois.");
}
}
</script>
</body>
</html>