1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-22 17:31:35 +02:00
invoiceninja/app/Services/Client/ClientService.php

105 lines
2.6 KiB
PHP
Raw Normal View History

<?php
/**
2021-02-18 00:51:56 +01:00
* Invoice Ninja (https://invoiceninja.com).
*
2021-02-18 00:51:56 +01:00
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2022-04-27 05:20:41 +02:00
* @copyright Copyright (c) 2022. Invoice Ninja LLC (https://invoiceninja.com)
*
2021-06-16 08:58:16 +02:00
* @license https://www.elastic.co/licensing/elastic-license
*/
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;
use App\Utils\Number;
2020-10-14 01:53:20 +02:00
use Illuminate\Database\Eloquent\Collection;
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;
return $this;
}
public function updatePaidToDate(float $amount)
{
2022-03-27 08:04:13 +02:00
$this->client->paid_to_date += $amount;
return $this;
}
public function adjustCreditBalance(float $amount)
{
2022-03-27 08:04:13 +02:00
$this->client->credit_balance += $amount;
return $this;
}
public function getCreditBalance() :float
{
2021-07-02 08:36:14 +02:00
$credits = $this->client->credits()
->where('is_deleted', false)
->where('balance', '>', 0)
2021-07-03 23:48:16 +02:00
->where(function ($query){
$query->whereDate('due_date', '<=', now()->format('Y-m-d'))
->orWhereNull('due_date');
})
2021-07-02 08:36:14 +02:00
->orderBy('created_at','ASC');
return Number::roundValue($credits->sum('balance'), $this->client->currency()->precision);
}
2021-07-05 23:53:32 +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)
2021-07-04 01:02:16 +02:00
->where(function ($query){
$query->whereDate('due_date', '<=', now()->format('Y-m-d'))
->orWhereNull('due_date');
})
2021-07-08 12:56:21 +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.
*
* @param array $options
*/
public function statement(array $options = [])
{
return (new Statement($this->client, $options))->run();
}
public function save() :Client
{
$this->client->save();
2022-03-01 11:25:18 +01:00
return $this->client->fresh();
}
}