Fix field names in grades summary
This commit is contained in:
parent
d073a30459
commit
93476b2bb3
3 changed files with 11 additions and 7 deletions
|
@ -38,19 +38,23 @@
|
|||
"SrednieOcen": [
|
||||
{
|
||||
"IdPrzedmiot": 300,
|
||||
"Wpis": 4.13
|
||||
"SredniaOcen": "4,13",
|
||||
"SumaPunktow": "123"
|
||||
},
|
||||
{
|
||||
"IdPrzedmiot": 301,
|
||||
"Wpis": 4.1
|
||||
"SredniaOcen": "4,1",
|
||||
"SumaPunktow": "234"
|
||||
},
|
||||
{
|
||||
"IdPrzedmiot": 302,
|
||||
"Wpis": 1.99
|
||||
"SredniaOcen": "1,99",
|
||||
"SumaPunktow": "345"
|
||||
},
|
||||
{
|
||||
"IdPrzedmiot": 303,
|
||||
"Wpis": 4
|
||||
"SredniaOcen": "4",
|
||||
"SumaPunktow": "456"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
@ -86,7 +86,7 @@ router.get("/Oceny(\.mvc|)/Wszystkie", (req, res) => {
|
|||
normalGrades: subjects.map(item => {
|
||||
return {
|
||||
"subject": item.Nazwa,
|
||||
"average": dictMap.getByValue(summary.SrednieOcen, "IdPrzedmiot", item.Id).Wpis,
|
||||
"average": dictMap.getByValue(summary.SrednieOcen, "IdPrzedmiot", item.Id).SredniaOcen,
|
||||
"predictedRating": dictMap.getByValue(summary.OcenyPrzewidywane, "IdPrzedmiot", item.Id).Wpis,
|
||||
"finalRating": dictMap.getByValue(summary.OcenyPrzewidywane, "IdPrzedmiot", item.Id).Wpis
|
||||
};
|
||||
|
|
|
@ -425,8 +425,8 @@ router.all("/Oceny.mvc/Get", (req, res) => {
|
|||
"OcenaRoczna": dictMap.getByValue(summary.OcenyPrzewidywane, "IdPrzedmiot", item.Id, {"Wpis": ""}).Wpis,
|
||||
"ProponowanaOcenaRocznaPunkty": index * 2.5 + 1 + "",
|
||||
"OcenaRocznaPunkty": index * 3 + 2 + "",
|
||||
"Srednia": dictMap.getByValue(summary.SrednieOcen, "IdPrzedmiot", item.Id, {"Wpis": 0}).Wpis,
|
||||
"SumaPunktow": (index * 3 + 3) + "/" + (index * 3 + 4),
|
||||
"Srednia": parseFloat(dictMap.getByValue(summary.SrednieOcen, "IdPrzedmiot", item.Id, {"SredniaOcen": "0"}).SredniaOcen.replace(/,/,'.')),
|
||||
"SumaPunktow": dictMap.getByValue(summary.SrednieOcen, "IdPrzedmiot", item.Id, {"SumaPunktow": "0"}).SumaPunktow,
|
||||
"WidocznyPrzedmiot": false
|
||||
};
|
||||
}),
|
||||
|
|
Loading…
Reference in a new issue