Update points in grades

This commit is contained in:
Mikołaj Pich 2019-05-30 13:02:00 +02:00
parent 359b9c39d0
commit d073a30459
No known key found for this signature in database
GPG key ID: F62B26E36D4C4BAA

View file

@ -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": index * 2.5 + 1,
"OcenaRocznaPunkty": index * 3 + 2,
"ProponowanaOcenaRocznaPunkty": index * 2.5 + 1 + "",
"OcenaRocznaPunkty": index * 3 + 2 + "",
"Srednia": dictMap.getByValue(summary.SrednieOcen, "IdPrzedmiot", item.Id, {"Wpis": 0}).Wpis,
"SumaPunktow": index * 3 + 3,
"SumaPunktow": (index * 3 + 3) + "/" + (index * 3 + 4),
"WidocznyPrzedmiot": false
};
}),