1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-15 07:33:04 +01:00
invoiceninja/app/Services/Chart/ChartCalculations.php

393 lines
11 KiB
PHP
Raw Normal View History

2024-06-28 23:42:45 +02:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2024. Invoice Ninja LLC (https://invoiceninja.com)
*
* @license https://www.elastic.co/licensing/elastic-license
*/
namespace App\Services\Chart;
2024-08-06 00:22:00 +02:00
use App\Models\Expense;
2024-06-28 23:42:45 +02:00
use App\Models\Invoice;
use App\Models\Payment;
use App\Models\Quote;
2024-08-05 10:52:34 +02:00
use App\Models\Task;
2024-08-06 00:22:00 +02:00
use Illuminate\Contracts\Database\Eloquent\Builder;
2024-06-28 23:42:45 +02:00
/**
* Class ChartCalculations.
*/
trait ChartCalculations
{
public function getActiveInvoices($data): int|float
{
$result = 0;
$q = Invoice::query()
->withTrashed()
->where('company_id', $this->company->id)
->where('is_deleted', 0)
->whereIn('status_id', [2,3,4]);
2024-08-22 08:45:06 +02:00
if(in_array($data['period'], ['current,previous'])) {
2024-06-28 23:42:45 +02:00
$q->whereBetween('date', [$data['start_date'], $data['end_date']]);
2024-08-22 08:45:06 +02:00
}
2024-06-28 23:42:45 +02:00
match ($data['calculation']) {
'sum' => $result = $q->sum('amount'),
'avg' => $result = $q->avg('amount'),
'count' => $result = $q->count(),
default => $result = 0,
};
return $result;
}
public function getOutstandingInvoices($data): int|float
{
$result = 0;
$q = Invoice::query()
->withTrashed()
->where('company_id', $this->company->id)
->where('is_deleted', 0)
->whereIn('status_id', [2,3]);
2024-08-22 08:45:06 +02:00
if(in_array($data['period'], ['current,previous'])) {
2024-06-28 23:42:45 +02:00
$q->whereBetween('date', [$data['start_date'], $data['end_date']]);
2024-08-22 08:45:06 +02:00
}
2024-06-28 23:42:45 +02:00
match ($data['calculation']) {
'sum' => $result = $q->sum('balance'),
'avg' => $result = $q->avg('balance'),
'count' => $result = $q->count(),
default => $result = 0,
};
return $result;
}
public function getCompletedPayments($data): int|float
{
$result = 0;
$q = Payment::query()
->withTrashed()
->where('company_id', $this->company->id)
->where('is_deleted', 0)
->where('status_id', 4);
2024-08-22 08:45:06 +02:00
if(in_array($data['period'], ['current,previous'])) {
2024-06-28 23:42:45 +02:00
$q->whereBetween('date', [$data['start_date'], $data['end_date']]);
2024-08-22 08:45:06 +02:00
}
2024-06-28 23:42:45 +02:00
match ($data['calculation']) {
'sum' => $result = $q->sum('amount'),
'avg' => $result = $q->avg('amount'),
'count' => $result = $q->count(),
default => $result = 0,
};
return $result;
}
public function getRefundedPayments($data): int|float
{
$result = 0;
$q = Payment::query()
->withTrashed()
->where('company_id', $this->company->id)
->where('is_deleted', 0)
->whereIn('status_id', [5,6]);
2024-08-22 08:45:06 +02:00
if(in_array($data['period'], ['current,previous'])) {
2024-06-28 23:42:45 +02:00
$q->whereBetween('date', [$data['start_date'], $data['end_date']]);
2024-08-22 08:45:06 +02:00
}
2024-06-28 23:42:45 +02:00
match ($data['calculation']) {
'sum' => $result = $q->sum('refunded'),
'avg' => $result = $q->avg('refunded'),
'count' => $result = $q->count(),
default => $result = 0,
};
return $result;
}
public function getActiveQuotes($data): int|float
{
$result = 0;
$q = Quote::query()
->withTrashed()
->where('company_id', $this->company->id)
->where('is_deleted', 0)
->whereIn('status_id', [2,3])
2024-08-22 08:45:06 +02:00
->where(function ($qq) {
2024-06-28 23:42:45 +02:00
$qq->where('due_date', '>=', now()->toDateString())->orWhereNull('due_date');
});
2024-08-22 08:45:06 +02:00
if(in_array($data['period'], ['current,previous'])) {
2024-06-28 23:42:45 +02:00
$q->whereBetween('date', [$data['start_date'], $data['end_date']]);
2024-08-22 08:45:06 +02:00
}
2024-06-28 23:42:45 +02:00
match ($data['calculation']) {
'sum' => $result = $q->sum('refunded'),
'avg' => $result = $q->avg('refunded'),
'count' => $result = $q->count(),
default => $result = 0,
};
return $result;
}
public function getUnapprovedQuotes($data): int|float
{
$result = 0;
$q = Quote::query()
->withTrashed()
->where('company_id', $this->company->id)
->where('is_deleted', 0)
->whereIn('status_id', [2])
2024-08-22 08:45:06 +02:00
->where(function ($qq) {
2024-06-28 23:42:45 +02:00
$qq->where('due_date', '>=', now()->toDateString())->orWhereNull('due_date');
});
2024-08-22 08:45:06 +02:00
if(in_array($data['period'], ['current,previous'])) {
2024-06-28 23:42:45 +02:00
$q->whereBetween('date', [$data['start_date'], $data['end_date']]);
2024-08-22 08:45:06 +02:00
}
2024-06-28 23:42:45 +02:00
match ($data['calculation']) {
'sum' => $result = $q->sum('refunded'),
'avg' => $result = $q->avg('refunded'),
'count' => $result = $q->count(),
default => $result = 0,
};
return $result;
}
2024-08-05 10:52:34 +02:00
public function getLoggedTasks($data): int|float
{
2024-08-06 00:22:00 +02:00
$q = $this->taskQuery($data);
2024-08-05 10:52:34 +02:00
2024-08-06 00:22:00 +02:00
return $this->taskCalculations($q, $data);
2024-08-05 10:52:34 +02:00
2024-08-06 00:22:00 +02:00
}
2024-08-05 10:52:34 +02:00
2024-08-06 00:22:00 +02:00
public function getPaidTasks($data): int|float
{
$q = $this->taskQuery($data);
2024-08-22 08:45:06 +02:00
$q->whereHas('invoice', function ($query) {
2024-08-06 00:22:00 +02:00
$query->where('status_id', 4)->where('is_deleted', 0);
});
2024-08-05 10:52:34 +02:00
2024-08-06 00:22:00 +02:00
return $this->taskCalculations($q, $data);
2024-08-05 10:52:34 +02:00
2024-08-06 00:22:00 +02:00
}
2024-08-05 10:52:34 +02:00
2024-08-06 00:22:00 +02:00
public function getInvoicedTasks($data): int|float
{
2024-08-05 10:52:34 +02:00
2024-08-06 00:22:00 +02:00
$q = $this->taskQuery($data);
$q->whereHas('invoice');
2024-08-05 10:52:34 +02:00
2024-08-06 00:22:00 +02:00
return $this->taskCalculations($q, $data);
2024-08-05 10:52:34 +02:00
2024-08-06 00:22:00 +02:00
}
2024-08-22 08:45:06 +02:00
2024-08-06 00:22:00 +02:00
/**
* All Expenses
*/
public function getLoggedExpenses($data): int|float
{
$q = $this->expenseQuery($data);
return $this->expenseCalculations($q, $data);
}
2024-08-22 08:45:06 +02:00
2024-08-06 00:22:00 +02:00
/**
* Expenses that should be invoiced - but are not yet invoiced.
*/
public function getPendingExpenses($data): int|float
{
$q = $this->expenseQuery($data);
$q->where('should_be_invoiced', true)->whereNull('invoice_id');
return $this->expenseCalculations($q, $data);
}
/**
* Invoiced.
*/
public function getInvoicedExpenses($data): int|float
{
$q = $this->expenseQuery($data);
$q->whereNotNull('invoice_id');
return $this->expenseCalculations($q, $data);
}
/**
* Paid.
*/
public function getPaidExpenses($data): int|float
{
$q = $this->expenseQuery($data);
$q->whereNotNull('payment_date');
return $this->expenseCalculations($q, $data);
}
/**
* Paid.
*/
public function getInvoicedPaidExpenses($data): int|float
{
$q = $this->expenseQuery($data);
$q->whereNotNull('invoice_id')->whereNotNull('payment_date');
return $this->expenseCalculations($q, $data);
}
private function expenseCalculations(Builder $query, array $data): int|float
{
$result = 0;
$calculated = $this->expenseCalculator($query, $data);
2024-08-22 08:45:06 +02:00
2024-08-05 10:52:34 +02:00
match ($data['calculation']) {
'sum' => $result = $calculated->sum(),
'avg' => $result = $calculated->avg(),
2024-08-06 00:22:00 +02:00
'count' => $result = $query->count(),
2024-08-05 10:52:34 +02:00
default => $result = 0,
};
return $result;
2024-08-06 00:22:00 +02:00
}
private function expenseCalculator(Builder $query, array $data)
{
2024-08-22 08:45:06 +02:00
2024-08-06 00:22:00 +02:00
return $query->get()
->when($data['currency_id'] == '999', function ($collection) {
$collection->map(function ($e) {
/** @var \App\Models\Expense $e */
return $e->amount * $e->exchange_rate;
});
})
->when($data['currency_id'] != '999', function ($collection) {
$collection->map(function ($e) {
2024-08-22 08:45:06 +02:00
2024-08-06 00:22:00 +02:00
/** @var \App\Models\Expense $e */
return $e->amount;
});
});
}
private function expenseQuery($data): Builder
{
$query = Expense::query()
->withTrashed()
->where('company_id', $this->company->id)
->where('is_deleted', 0);
2024-08-22 08:45:06 +02:00
2024-08-06 00:22:00 +02:00
if(in_array($data['period'], ['current,previous'])) {
$query->whereBetween('date', [$data['start_date'], $data['end_date']]);
}
2024-08-22 08:45:06 +02:00
2024-08-06 00:22:00 +02:00
return $query;
2024-08-05 10:52:34 +02:00
}
2024-08-06 00:22:00 +02:00
////////////////////////////////////////////////////////////////
2024-08-05 10:52:34 +02:00
private function taskMoneyCalculator($query, $data)
{
return $query->get()
->when($data['currency_id'] == '999', function ($collection) {
$collection->map(function ($t) {
return $t->taskCompanyValue();
});
})
->when($data['currency_id'] != '999', function ($collection) {
$collection->map(function ($t) {
return $t->taskValue();
});
});
}
2024-08-06 00:22:00 +02:00
private function taskQuery($data): Builder
2024-08-05 10:52:34 +02:00
{
$q = Task::query()
->withTrashed()
->where('company_id', $this->company->id)
2024-08-06 00:22:00 +02:00
->where('is_deleted', 0);
2024-08-22 08:45:06 +02:00
2024-08-05 10:52:34 +02:00
if(in_array($data['period'], ['current,previous'])) {
$q->whereBetween('calculated_start_date', [$data['start_date'], $data['end_date']]);
}
2024-08-06 00:22:00 +02:00
return $q;
}
private function taskCalculations(Builder $q, array $data): int|float
{
2024-08-22 08:45:06 +02:00
2024-08-06 00:22:00 +02:00
$result = 0;
$calculated = collect();
2024-08-05 10:52:34 +02:00
2024-08-06 00:22:00 +02:00
if($data['calculation'] != 'count' && $data['format'] == 'money') {
2024-08-05 10:52:34 +02:00
if($data['currency_id'] != '999') {
$q->whereHas('client', function ($query) use ($data) {
$query->where('settings->currency_id', $data['currency_id']);
});
}
$calculated = $this->taskMoneyCalculator($q, $data);
}
if($data['calculation'] != 'count' && $data['format'] == 'time') {
$calculated = $q->get()->map(function ($t) {
return $t->calcDuration();
});
}
match ($data['calculation']) {
'sum' => $result = $calculated->sum(),
'avg' => $result = $calculated->avg(),
'count' => $result = $q->count(),
default => $result = 0,
};
return $result;
}
2024-08-06 00:22:00 +02:00
2024-08-22 08:45:06 +02:00
}