refactor: replace custom CRM with Monica fork
Some checks failed
Build & Push Monica Image to Gitea Registry / build-and-push (push) Failing after 9s

This commit is contained in:
Kroonk
2026-05-22 16:19:55 +02:00
parent 38cc4c09ca
commit a213a1dba0
2215 changed files with 242567 additions and 6015 deletions

View File

@@ -0,0 +1,33 @@
<?php
use App\Models\Contact\Gift;
use App\Models\Contact\Note;
use App\Models\Contact\Task;
use App\Models\Contact\Contact;
use App\Models\Account\Activity;
use App\Models\Contact\Reminder;
use Illuminate\Database\Migrations\Migration;
class CalculateStatistics extends Migration
{
/**
* Run the migrations.
*
* @return void
* @psalm-suppress UndefinedMagicPropertyAssignment
*/
public function up()
{
Contact::unsetEventDispatcher();
foreach (Contact::all() as $contact) {
$contact->number_of_reminders = Reminder::where('contact_id', $contact->id)->count();
$contact->number_of_notes = Note::where('contact_id', $contact->id)->count();
$contact->number_of_activities = Activity::where('contact_id', $contact->id)->count();
$contact->number_of_gifts_ideas = Gift::where('contact_id', $contact->id)->where('is_an_idea', 'true')->count();
$contact->number_of_gifts_offered = Gift::where('contact_id', $contact->id)->where('has_been_offered', 'true')->count();
$contact->number_of_tasks_in_progress = Task::where('contact_id', $contact->id)->where('status', 'inprogress')->count();
$contact->number_of_tasks_completed = Task::where('contact_id', $contact->id)->where('status', 'completed')->count();
$contact->save();
}
}
}