Belikhun/themis-web-interface

Về Format điểm

Closed this issue · 1 comments

🙋‍♀️ hỏi đáp


❓ Câu Hỏi

Làm sao để điểm của server trả về cho thí sinh hiện đúng phần thập phân như trong Themis ạ 🔢
Ví dụ, trong Themis của em đặt điểm của mỗi test là 0.175 điểm, nhưng trên server chỉ hiện 0.17 điểm ạ

Thông tin thêm

Capture
THEMIS

Bạn sửa ở /lib/logParser.php:233 nha.

private function __f($str) {
-    return round((float) str_replace(",", ".", $str), 2);
+    return round((float) str_replace(",", ".", $str), 3);
}