Add network graph for the home page

This commit is contained in:
dario-cfpt
2020-01-07 08:32:08 +01:00
parent 5fa7f19eb1
commit 05bf75babe
55 changed files with 832 additions and 56 deletions

View File

@ -82,7 +82,11 @@ class FE_Charts {
static getAllHouses() {
return __awaiter(this, void 0, void 0, function* () {
let houses = null;
yield House.findAll().then(results => {
yield House.findAll({
order: [
["Id_House", "ASC"]
]
}).then(results => {
houses = results;
}).catch(err => FE_Charts.logError(err));
return houses;