Show points and average in grades

This commit is contained in:
Mikołaj Pich 2019-05-30 12:27:28 +02:00
parent 2c8319d4c9
commit e03bec084d
No known key found for this signature in database
GPG key ID: F62B26E36D4C4BAA
2 changed files with 18 additions and 10 deletions

View file

@ -37,12 +37,20 @@
],
"SrednieOcen": [
{
"IdPrzedmiot": 303,
"Wpis": "4"
"IdPrzedmiot": 300,
"Wpis": "4.13"
},
{
"IdPrzedmiot": 304,
"Wpis": "2.5"
"IdPrzedmiot": 301,
"Wpis": "4.1"
},
{
"IdPrzedmiot": 302,
"Wpis": "1.99"
},
{
"IdPrzedmiot": 303,
"Wpis": "4"
}
]
}

View file

@ -402,9 +402,9 @@ router.all("/Oceny.mvc/Get", (req, res) => {
res.json({
"data": {
"IsSrednia": false,
"IsPunkty": false,
"Oceny": require("../../data/api/dictionaries/Przedmioty").map(item => {
"IsSrednia": true,
"IsPunkty": true,
"Oceny": require("../../data/api/dictionaries/Przedmioty").map((item, index) => {
return {
"Przedmiot": item.Nazwa,
"Pozycja": item.Pozycja,
@ -423,10 +423,10 @@ router.all("/Oceny.mvc/Get", (req, res) => {
}),
"ProponowanaOcenaRoczna": dictMap.getByValue(summary.OcenyPrzewidywane, "IdPrzedmiot", item.Id, {"Wpis": ""}).Wpis,
"OcenaRoczna": dictMap.getByValue(summary.OcenyPrzewidywane, "IdPrzedmiot", item.Id, {"Wpis": ""}).Wpis,
"ProponowanaOcenaRocznaPunkty": null,
"OcenaRocznaPunkty": null,
"ProponowanaOcenaRocznaPunkty": index * 2.5 + 1,
"OcenaRocznaPunkty": index * 3 + 2,
"Srednia": dictMap.getByValue(summary.SrednieOcen, "IdPrzedmiot", item.Id, {"Wpis": 0}).Wpis,
"SumaPunktow": null,
"SumaPunktow": index * 3 + 3,
"WidocznyPrzedmiot": false
};
}),