Show points and average in grades
This commit is contained in:
parent
2c8319d4c9
commit
e03bec084d
2 changed files with 18 additions and 10 deletions
|
@ -37,12 +37,20 @@
|
||||||
],
|
],
|
||||||
"SrednieOcen": [
|
"SrednieOcen": [
|
||||||
{
|
{
|
||||||
"IdPrzedmiot": 303,
|
"IdPrzedmiot": 300,
|
||||||
"Wpis": "4"
|
"Wpis": "4.13"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"IdPrzedmiot": 304,
|
"IdPrzedmiot": 301,
|
||||||
"Wpis": "2.5"
|
"Wpis": "4.1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"IdPrzedmiot": 302,
|
||||||
|
"Wpis": "1.99"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"IdPrzedmiot": 303,
|
||||||
|
"Wpis": "4"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
|
@ -402,9 +402,9 @@ router.all("/Oceny.mvc/Get", (req, res) => {
|
||||||
|
|
||||||
res.json({
|
res.json({
|
||||||
"data": {
|
"data": {
|
||||||
"IsSrednia": false,
|
"IsSrednia": true,
|
||||||
"IsPunkty": false,
|
"IsPunkty": true,
|
||||||
"Oceny": require("../../data/api/dictionaries/Przedmioty").map(item => {
|
"Oceny": require("../../data/api/dictionaries/Przedmioty").map((item, index) => {
|
||||||
return {
|
return {
|
||||||
"Przedmiot": item.Nazwa,
|
"Przedmiot": item.Nazwa,
|
||||||
"Pozycja": item.Pozycja,
|
"Pozycja": item.Pozycja,
|
||||||
|
@ -423,10 +423,10 @@ router.all("/Oceny.mvc/Get", (req, res) => {
|
||||||
}),
|
}),
|
||||||
"ProponowanaOcenaRoczna": dictMap.getByValue(summary.OcenyPrzewidywane, "IdPrzedmiot", item.Id, {"Wpis": ""}).Wpis,
|
"ProponowanaOcenaRoczna": dictMap.getByValue(summary.OcenyPrzewidywane, "IdPrzedmiot", item.Id, {"Wpis": ""}).Wpis,
|
||||||
"OcenaRoczna": dictMap.getByValue(summary.OcenyPrzewidywane, "IdPrzedmiot", item.Id, {"Wpis": ""}).Wpis,
|
"OcenaRoczna": dictMap.getByValue(summary.OcenyPrzewidywane, "IdPrzedmiot", item.Id, {"Wpis": ""}).Wpis,
|
||||||
"ProponowanaOcenaRocznaPunkty": null,
|
"ProponowanaOcenaRocznaPunkty": index * 2.5 + 1,
|
||||||
"OcenaRocznaPunkty": null,
|
"OcenaRocznaPunkty": index * 3 + 2,
|
||||||
"Srednia": dictMap.getByValue(summary.SrednieOcen, "IdPrzedmiot", item.Id, {"Wpis": 0}).Wpis,
|
"Srednia": dictMap.getByValue(summary.SrednieOcen, "IdPrzedmiot", item.Id, {"Wpis": 0}).Wpis,
|
||||||
"SumaPunktow": null,
|
"SumaPunktow": index * 3 + 3,
|
||||||
"WidocznyPrzedmiot": false
|
"WidocznyPrzedmiot": false
|
||||||
};
|
};
|
||||||
}),
|
}),
|
||||||
|
|
Loading…
Reference in a new issue