2020-02-03 11:33:07 +01:00
|
|
|
<?php
|
|
|
|
/**
|
2021-02-18 00:51:56 +01:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2020-02-03 11:33:07 +01:00
|
|
|
*
|
2021-02-18 00:51:56 +01:00
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
2020-02-03 11:33:07 +01:00
|
|
|
*
|
2022-04-27 05:20:41 +02:00
|
|
|
* @copyright Copyright (c) 2022. Invoice Ninja LLC (https://invoiceninja.com)
|
2020-02-03 11:33:07 +01:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2020-02-03 11:33:07 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Services\Client;
|
|
|
|
|
|
|
|
use App\Models\Client;
|
2021-08-01 07:46:40 +02:00
|
|
|
use App\Services\Client\Merge;
|
2021-01-18 03:12:48 +01:00
|
|
|
use App\Services\Client\PaymentMethod;
|
2020-10-13 05:25:51 +02:00
|
|
|
use App\Utils\Number;
|
2020-10-14 01:53:20 +02:00
|
|
|
use Illuminate\Database\Eloquent\Collection;
|
2020-02-03 11:33:07 +01:00
|
|
|
|
|
|
|
class ClientService
|
|
|
|
{
|
|
|
|
private $client;
|
|
|
|
|
|
|
|
public function __construct(Client $client)
|
|
|
|
{
|
|
|
|
$this->client = $client;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function updateBalance(float $amount)
|
|
|
|
{
|
2022-03-27 08:04:13 +02:00
|
|
|
$this->client->balance += $amount;
|
2020-02-03 11:33:07 +01:00
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function updatePaidToDate(float $amount)
|
|
|
|
{
|
2022-03-27 08:04:13 +02:00
|
|
|
$this->client->paid_to_date += $amount;
|
2020-02-03 11:33:07 +01:00
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function adjustCreditBalance(float $amount)
|
|
|
|
{
|
2022-03-27 08:04:13 +02:00
|
|
|
$this->client->credit_balance += $amount;
|
2020-02-03 11:33:07 +01:00
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2020-10-13 05:25:51 +02:00
|
|
|
public function getCreditBalance() :float
|
|
|
|
{
|
2021-07-02 08:36:14 +02:00
|
|
|
$credits = $this->client->credits()
|
2020-10-13 05:25:51 +02:00
|
|
|
->where('is_deleted', false)
|
|
|
|
->where('balance', '>', 0)
|
2022-06-21 11:57:17 +02:00
|
|
|
->where(function ($query) {
|
|
|
|
$query->whereDate('due_date', '<=', now()->format('Y-m-d'))
|
2021-07-03 23:48:16 +02:00
|
|
|
->orWhereNull('due_date');
|
|
|
|
})
|
2022-06-21 11:57:17 +02:00
|
|
|
->orderBy('created_at', 'ASC');
|
2020-10-13 05:25:51 +02:00
|
|
|
|
|
|
|
return Number::roundValue($credits->sum('balance'), $this->client->currency()->precision);
|
|
|
|
}
|
|
|
|
|
2022-06-21 11:57:17 +02:00
|
|
|
public function getCredits()
|
2020-10-13 14:28:30 +02:00
|
|
|
{
|
2021-07-02 08:36:14 +02:00
|
|
|
return $this->client->credits()
|
2020-10-13 14:28:30 +02:00
|
|
|
->where('is_deleted', false)
|
|
|
|
->where('balance', '>', 0)
|
2022-06-21 11:57:17 +02:00
|
|
|
->where(function ($query) {
|
|
|
|
$query->whereDate('due_date', '<=', now()->format('Y-m-d'))
|
2021-07-04 01:02:16 +02:00
|
|
|
->orWhereNull('due_date');
|
|
|
|
})
|
2022-06-21 11:57:17 +02:00
|
|
|
->orderBy('created_at', 'ASC')->get();
|
2020-10-13 14:28:30 +02:00
|
|
|
}
|
|
|
|
|
2021-01-18 03:12:48 +01:00
|
|
|
public function getPaymentMethods(float $amount)
|
|
|
|
{
|
|
|
|
return (new PaymentMethod($this->client, $amount))->run();
|
|
|
|
}
|
2020-10-13 14:28:30 +02:00
|
|
|
|
2021-08-01 07:46:40 +02:00
|
|
|
public function merge(Client $mergable_client)
|
|
|
|
{
|
2021-08-01 09:21:08 +02:00
|
|
|
$this->client = (new Merge($this->client, $mergable_client))->run();
|
|
|
|
|
|
|
|
return $this;
|
2021-08-01 07:46:40 +02:00
|
|
|
}
|
|
|
|
|
2021-09-14 13:55:24 +02:00
|
|
|
/**
|
|
|
|
* Generate the client statement.
|
2022-06-21 11:57:17 +02:00
|
|
|
*
|
|
|
|
* @param array $options
|
2021-09-14 13:55:24 +02:00
|
|
|
*/
|
|
|
|
public function statement(array $options = [])
|
|
|
|
{
|
|
|
|
return (new Statement($this->client, $options))->run();
|
|
|
|
}
|
|
|
|
|
2020-02-03 11:33:07 +01:00
|
|
|
public function save() :Client
|
|
|
|
{
|
2020-03-21 06:37:30 +01:00
|
|
|
$this->client->save();
|
2020-02-03 11:33:07 +01:00
|
|
|
|
2022-03-01 11:25:18 +01:00
|
|
|
return $this->client->fresh();
|
2020-02-03 11:33:07 +01:00
|
|
|
}
|
|
|
|
}
|