убрал лишнее

This commit is contained in:
2024-10-10 13:35:52 +03:00
parent 3b6fecec6c
commit 277ce3bb70
5 changed files with 48 additions and 101 deletions

View File

@ -32,7 +32,7 @@ class PriemRow
'spec_name' => $this->eduName,
'edu_level' => $this->eduLevel,
'edu_forms'=> $this->eduForm,
'avgScore' => $this->avgScore,
'avg_score' => $this->avgScore,
'contongent' => $this->all,
'budget' => $this->budget,
];
@ -45,7 +45,7 @@ class PriemRow
foreach ($contingent as $key => $con) {
$all += (int)$con;
if ($key !== 3) {
$budget += $con;
$budget += (int)$con;
}
}
$this->all = $all;