Statystyki

main
kry008 2025-01-08 10:21:44 +01:00
parent 0a7d6e9911
commit 89bcf50870
2 changed files with 27 additions and 0 deletions

View File

@ -105,5 +105,18 @@ apiLiczacy.get("/wyloguj", function(req, res) {
}); });
}); });
apiLiczacy.get("/top10Liczacy", function(req, res) {
con.query("SELECT idLiczacego, imie, nazwisko, sumaPrzeliczona FROM `sumaPrzeliczona` ORDER BY `sumaPrzeliczona`.`sumaPrzeliczona` DESC LIMIT 10;", function(err, result) {
if (err) throw err;
res.send(result);
});
});
apiLiczacy.get("/top10Wolontariuszy", function(req, res) {
con.query('SELECT numerIdentyfikatora, imie, nazwisko, suma FROM `SumaZebranaPrzezWolontariuszy` ORDER BY `SumaZebranaPrzezWolontariuszy`.`suma` DESC LIMIT 10;', function(err, result) {
if (err) throw err;
res.send(result);
});
});
module.exports = apiLiczacy; module.exports = apiLiczacy;

View File

@ -94,4 +94,18 @@ apiPanel.post("/potwierdzRozliczenie/:id", function(req, res) {
}); });
}); });
apiPanel.get("/top10Liczacy", function(req, res) {
con.query("SELECT idLiczacego, imie, nazwisko, sumaPrzeliczona FROM `sumaPrzeliczona` ORDER BY `sumaPrzeliczona`.`sumaPrzeliczona` DESC LIMIT 10;", function(err, result) {
if (err) throw err;
res.send(result);
});
});
apiPanel.get("/top10Wolontariuszy", function(req, res) {
con.query('SELECT numerIdentyfikatora, imie, nazwisko, suma FROM `SumaZebranaPrzezWolontariuszy` ORDER BY `SumaZebranaPrzezWolontariuszy`.`suma` DESC LIMIT 10;', function(err, result) {
if (err) throw err;
res.send(result);
});
});
module.exports = apiPanel; module.exports = apiPanel;