2020-02-03 11:33:07 +01:00
|
|
|
<?php
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* client Ninja (https://clientninja.com).
|
2020-02-03 11:33:07 +01:00
|
|
|
*
|
|
|
|
* @link https://github.com/clientninja/clientninja source repository
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2020. client Ninja LLC (https://clientninja.com)
|
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Services\Client;
|
|
|
|
|
|
|
|
use App\Models\Client;
|
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)
|
|
|
|
{
|
|
|
|
$this->client->balance += $amount;
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function updatePaidToDate(float $amount)
|
|
|
|
{
|
|
|
|
$this->client->paid_to_date += $amount;
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function adjustCreditBalance(float $amount)
|
|
|
|
{
|
|
|
|
$this->client->credit_balance += $amount;
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2020-10-13 05:25:51 +02:00
|
|
|
public function getCreditBalance() :float
|
|
|
|
{
|
2020-10-15 02:37:16 +02:00
|
|
|
|
2020-10-13 05:25:51 +02:00
|
|
|
$credits = $this->client->credits
|
|
|
|
->where('is_deleted', false)
|
|
|
|
->where('balance', '>', 0)
|
|
|
|
->sortBy('created_at');
|
|
|
|
|
|
|
|
return Number::roundValue($credits->sum('balance'), $this->client->currency()->precision);
|
|
|
|
}
|
|
|
|
|
2020-10-14 01:53:20 +02:00
|
|
|
public function getCredits() :Collection
|
2020-10-13 14:28:30 +02:00
|
|
|
{
|
|
|
|
|
|
|
|
return $this->client->credits
|
|
|
|
->where('is_deleted', false)
|
|
|
|
->where('balance', '>', 0)
|
|
|
|
->sortBy('created_at');
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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
|
|
|
|
2020-03-21 06:37:30 +01:00
|
|
|
return $this->client;
|
2020-02-03 11:33:07 +01:00
|
|
|
}
|
|
|
|
}
|