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

149 lines
4.0 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;
2022-09-05 09:18:08 +02:00
use App\Models\Credit;
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-09-05 03:51:47 +02:00
2022-11-24 10:33:52 +01:00
try {
\DB::connection(config('database.default'))->transaction(function () use($amount) {
2022-09-05 03:51:47 +02:00
2022-11-24 10:33:52 +01:00
$this->client = Client::withTrashed()->where('id', $this->client->id)->lockForUpdate()->first();
$this->client->balance += $amount;
$this->client->save();
2022-09-05 03:51:47 +02:00
2022-11-24 10:33:52 +01:00
}, 2);
}
catch (\Throwable $throwable) {
nlog("DB ERROR " . $throwable->getMessage());
}
2022-09-05 03:51:47 +02:00
return $this;
2022-11-24 10:33:52 +01:00
2022-09-05 03:51:47 +02:00
}
public function updateBalanceAndPaidToDate(float $balance, float $paid_to_date)
{
2022-11-24 10:33:52 +01:00
try {
\DB::connection(config('database.default'))->transaction(function () use($balance, $paid_to_date) {
2022-09-05 03:51:47 +02:00
2022-11-24 10:33:52 +01:00
$this->client = Client::withTrashed()->where('id', $this->client->id)->lockForUpdate()->first();
$this->client->balance += $balance;
$this->client->paid_to_date += $paid_to_date;
$this->client->save();
}, 2);
}
catch (\Throwable $throwable) {
nlog("DB ERROR " . $throwable->getMessage());
}
2022-09-05 03:51:47 +02:00
return $this;
}
public function updatePaidToDate(float $amount)
{
2022-09-05 03:51:47 +02:00
// $this->client->paid_to_date += $amount;
\DB::connection(config('database.default'))->transaction(function () use($amount) {
$this->client = Client::withTrashed()->where('id', $this->client->id)->lockForUpdate()->first();
2022-09-05 03:51:47 +02:00
$this->client->paid_to_date += $amount;
$this->client->save();
}, 2);
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
{
$credits = Credit::withTrashed()->where('client_id', $this->client->id)
->where('is_deleted', false)
->where('balance', '>', 0)
->where(function ($query) {
$query->whereDate('due_date', '<=', now()->format('Y-m-d'))
2021-07-03 23:48:16 +02:00
->orWhereNull('due_date');
})
->orderBy('created_at', 'ASC');
return Number::roundValue($credits->sum('balance'), $this->client->currency()->precision);
}
public function getCredits()
2020-10-13 14:28:30 +02:00
{
2022-09-05 09:18:08 +02:00
return Credit::where('client_id', $this->client->id)
2020-10-13 14:28:30 +02:00
->where('is_deleted', false)
->where('balance', '>', 0)
->where(function ($query) {
$query->whereDate('due_date', '<=', now()->format('Y-m-d'))
2021-07-04 01:02:16 +02:00
->orWhereNull('due_date');
})
->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
2021-09-14 13:55:24 +02:00
*/
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();
}
}