Добавлен расширенный отчет по реализации
Добавлен монитор активности
This commit is contained in:
miroman-afk
2023-08-03 11:05:15 +03:00
parent 19ad7d1c8a
commit c4dc6e02a0
93 changed files with 13328 additions and 1122 deletions

View File

@@ -8,11 +8,11 @@ class Reasons extends Model {
protected $table = 'reasons';
public static function getName($data) {
$reason_name = Reasons::where('code', intval($data))->where('is_history', 0)->first();
$reason_name = self::where('code', intval($data))->where('is_history', 0)->first();
if ($reason_name) {
$reason_name = $reason_name['name'];
} else {
$reason_name = Reasons::where('code', intval($data))->where('is_history', 1)->first();
$reason_name = self::where('code', intval($data))->where('is_history', 1)->first();
if ($reason_name) {
$reason_name = $reason_name['name'];
} else {