Модели для конструктора отчетов

This commit is contained in:
brusnitsyn
2026-06-22 16:58:50 +09:00
parent e646ded338
commit 71bd4b9d1a
6 changed files with 174 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
/**
* Пользовательский показатель: производный от базового показателя датасета
* (другой агрегат или процент/множитель), без свободного ввода SQL.
*/
class CustomMeasure extends Model
{
protected $fillable = [
'name',
'dataset',
'base_measure',
'aggregate',
'factor',
'unit',
'created_by',
];
protected $casts = [
'factor' => 'float',
];
public function creator(): BelongsTo
{
return $this->belongsTo(User::class, 'created_by');
}
}

View File

@@ -0,0 +1,32 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
/**
* Сохранённый отчёт конструктора: источник данных + конфигурация
* (измерения, показатели, фильтры, режим, детализация, настройки графика).
*/
class ReportDocument extends Model
{
protected $fillable = [
'name',
'description',
'dataset',
'config',
'period',
'created_by',
];
protected $casts = [
'config' => 'array',
'period' => 'array',
];
public function creator(): BelongsTo
{
return $this->belongsTo(User::class, 'created_by');
}
}

View File

@@ -0,0 +1,23 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
public function up(): void
{
Schema::table('report_templates', function (Blueprint $table) {
// ["doctor", "urgency", ...] — ключи параметров, запрашиваемых при формировании отчёта
$table->json('parameters')->nullable()->after('sections');
});
}
public function down(): void
{
Schema::table('report_templates', function (Blueprint $table) {
$table->dropColumn('parameters');
});
}
};

View File

@@ -0,0 +1,29 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
public function up(): void
{
Schema::create('report_documents', function (Blueprint $table) {
$table->id();
$table->string('name');
$table->string('description')->nullable();
$table->string('dataset');
// {dimensions:[], measures:[], filters:[], mode, detalization, chart:{metric,type}}
$table->json('config');
// дефолтный период отчёта (опц.): {start, end}
$table->json('period')->nullable();
$table->foreignId('created_by')->nullable()->constrained('users')->nullOnDelete();
$table->timestamps();
});
}
public function down(): void
{
Schema::dropIfExists('report_documents');
}
};

View File

@@ -0,0 +1,31 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
public function up(): void
{
Schema::create('custom_measures', function (Blueprint $table) {
$table->id();
$table->string('name');
$table->string('dataset');
// ключ базового показателя датасета
$table->string('base_measure');
// sum|avg|count|share — как пересчитать базовый показатель
$table->string('aggregate')->default('sum');
// множитель (для процента/нормировки), по умолчанию 1
$table->decimal('factor', 12, 4)->default(1);
$table->string('unit')->nullable();
$table->foreignId('created_by')->nullable()->constrained('users')->nullOnDelete();
$table->timestamps();
});
}
public function down(): void
{
Schema::dropIfExists('custom_measures');
}
};

View File

@@ -0,0 +1,27 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
public function up(): void
{
Schema::dropIfExists('report_templates');
}
public function down(): void
{
// Откат: воссоздаём прежнюю структуру шаблонов-секций (без данных).
Schema::create('report_templates', function (Blueprint $table) {
$table->id();
$table->string('name');
$table->json('sections');
$table->json('parameters')->nullable();
$table->json('required_permissions')->nullable();
$table->foreignId('created_by')->nullable()->constrained('users')->nullOnDelete();
$table->timestamps();
});
}
};