mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 17:27:33 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			340 lines
		
	
	
		
			11 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			340 lines
		
	
	
		
			11 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?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\Client;
 | |
| 
 | |
| use App\Utils\Ninja;
 | |
| use App\Utils\Number;
 | |
| use App\Models\Client;
 | |
| use App\Models\Credit;
 | |
| use App\Models\Invoice;
 | |
| use App\Models\Payment;
 | |
| use App\Services\Email\Email;
 | |
| use App\Utils\Traits\MakesDates;
 | |
| use Illuminate\Support\Facades\DB;
 | |
| use App\Services\Email\EmailObject;
 | |
| use App\Utils\Traits\GeneratesCounter;
 | |
| use Illuminate\Mail\Mailables\Address;
 | |
| use Illuminate\Database\QueryException;
 | |
| use App\Events\Statement\StatementWasEmailed;
 | |
| 
 | |
| class ClientService
 | |
| {
 | |
|     use MakesDates;
 | |
|     use GeneratesCounter;
 | |
| 
 | |
|     private string $client_start_date;
 | |
| 
 | |
|     private string $client_end_date;
 | |
| 
 | |
|     private bool $completed = true;
 | |
| 
 | |
|     public function __construct(private Client $client)
 | |
|     {
 | |
|     }
 | |
| 
 | |
|     public function calculateBalance(?Invoice $invoice = null)
 | |
|     {
 | |
|         $balance = Invoice::withTrashed()
 | |
|                           ->where('client_id', $this->client->id)
 | |
|                           ->whereIn('status_id', [Invoice::STATUS_SENT, Invoice::STATUS_PARTIAL])
 | |
|                           ->where('is_deleted', false)
 | |
|                           ->sum('balance');
 | |
| 
 | |
|         $pre_client_balance = $this->client->balance;
 | |
| 
 | |
|         try {
 | |
|             DB::connection(config('database.default'))->transaction(function () use ($balance) {
 | |
|                 $this->client = Client::withTrashed()->where('id', $this->client->id)->lockForUpdate()->first();
 | |
|                 $this->client->balance = $balance;
 | |
|                 $this->client->saveQuietly();
 | |
|             }, 2);
 | |
|         } catch (\Throwable $throwable) {
 | |
|             nlog("DB ERROR " . $throwable->getMessage());
 | |
|         }
 | |
| 
 | |
|         if($invoice && floatval($this->client->balance)  != floatval($pre_client_balance)) {
 | |
|             $diff = $this->client->balance - $pre_client_balance;
 | |
|             $invoice->ledger()->insertInvoiceBalance($diff, $this->client->balance, "Update Adjustment Invoice # {$invoice->number} => {$diff}");
 | |
|         }
 | |
| 
 | |
|         return $this;
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Seeing too many race conditions under heavy load here.
 | |
|      *
 | |
|      * @param  float $amount
 | |
|      * @return ClientService
 | |
|      */
 | |
|     public function updateBalance(float $amount)
 | |
|     {
 | |
|         try {
 | |
|             DB::connection(config('database.default'))->transaction(function () use ($amount) {
 | |
|                 $this->client = Client::withTrashed()->where('id', $this->client->id)->lockForUpdate()->first();
 | |
|                 $this->client->balance += $amount;
 | |
|                 $this->client->saveQuietly();
 | |
|             }, 2);
 | |
|         } catch (\Throwable $throwable) {
 | |
| 
 | |
|             if (DB::connection(config('database.default'))->transactionLevel() > 0) {
 | |
|                 DB::connection(config('database.default'))->rollBack();
 | |
|             }
 | |
| 
 | |
|         } catch(\Exception $exception) {
 | |
| 
 | |
|             if (DB::connection(config('database.default'))->transactionLevel() > 0) {
 | |
|                 DB::connection(config('database.default'))->rollBack();
 | |
|             }
 | |
|         }
 | |
| 
 | |
|         return $this;
 | |
|     }
 | |
| 
 | |
|     public function updateBalanceAndPaidToDate(float $balance, float $paid_to_date)
 | |
|     {
 | |
|         try {
 | |
|             DB::connection(config('database.default'))->transaction(function () use ($balance, $paid_to_date) {
 | |
|                 $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->saveQuietly();
 | |
|             }, 2);
 | |
|         } catch (\Throwable $throwable) {
 | |
|             nlog("DB ERROR " . $throwable->getMessage());
 | |
| 
 | |
|             if (DB::connection(config('database.default'))->transactionLevel() > 0) {
 | |
|                 DB::connection(config('database.default'))->rollBack();
 | |
|             }
 | |
| 
 | |
|         } catch(\Exception $exception) {
 | |
|             nlog("DB ERROR " . $exception->getMessage());
 | |
| 
 | |
|             if (DB::connection(config('database.default'))->transactionLevel() > 0) {
 | |
|                 DB::connection(config('database.default'))->rollBack();
 | |
|             }
 | |
|         }
 | |
| 
 | |
|         return $this;
 | |
|     }
 | |
| 
 | |
|     public function updatePaidToDate(float $amount)
 | |
|     {
 | |
|         try {
 | |
|             DB::connection(config('database.default'))->transaction(function () use ($amount) {
 | |
|                 $this->client = Client::withTrashed()->where('id', $this->client->id)->lockForUpdate()->first();
 | |
|                 $this->client->paid_to_date += $amount;
 | |
|                 $this->client->saveQuietly();
 | |
|             }, 2);
 | |
|         } catch (\Throwable $throwable) {
 | |
|             nlog("DB ERROR " . $throwable->getMessage());
 | |
| 
 | |
|             if (DB::connection(config('database.default'))->transactionLevel() > 0) {
 | |
|                 DB::connection(config('database.default'))->rollBack();
 | |
|             }
 | |
| 
 | |
|         } catch(\Exception $exception) {
 | |
|             nlog("DB ERROR " . $exception->getMessage());
 | |
| 
 | |
|             if (DB::connection(config('database.default'))->transactionLevel() > 0) {
 | |
|                 DB::connection(config('database.default'))->rollBack();
 | |
|             }
 | |
|         }
 | |
| 
 | |
|         return $this;
 | |
|     }
 | |
| 
 | |
|     public function applyNumber(): self
 | |
|     {
 | |
|         $x = 1;
 | |
| 
 | |
|         if(isset($this->client->number)) {
 | |
|             return $this;
 | |
|         }
 | |
| 
 | |
|         do {
 | |
|             try {
 | |
|                 $this->client->number = $this->getNextClientNumber($this->client);
 | |
|                 $this->client->saveQuietly();
 | |
| 
 | |
|                 $this->completed = false;
 | |
|             } catch (QueryException $e) {
 | |
|                 $x++;
 | |
| 
 | |
|                 if ($x > 10) {
 | |
|                     $this->completed = false;
 | |
|                 }
 | |
|             }
 | |
|         } while ($this->completed);
 | |
| 
 | |
|         return $this;
 | |
|     }
 | |
| 
 | |
|     public function updatePaymentBalance()
 | |
|     {
 | |
|         $amount = Payment::query()->where('client_id', $this->client->id)
 | |
|                         ->where('is_deleted', 0)
 | |
|                         ->whereIn('status_id', [Payment::STATUS_COMPLETED, Payment::STATUS_PENDING, Payment::STATUS_PARTIALLY_REFUNDED, Payment::STATUS_REFUNDED])
 | |
|                         ->selectRaw('SUM(payments.amount - payments.applied) as amount')->first()->amount ?? 0;
 | |
| 
 | |
|         DB::connection(config('database.default'))->transaction(function () use ($amount) {
 | |
|             $this->client = Client::withTrashed()->where('id', $this->client->id)->lockForUpdate()->first();
 | |
|             $this->client->payment_balance = $amount;
 | |
|             $this->client->saveQuietly();
 | |
|         }, 2);
 | |
| 
 | |
|         return $this;
 | |
|     }
 | |
| 
 | |
| 
 | |
|     public function adjustCreditBalance(float $amount)
 | |
|     {
 | |
|         $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(function ($query) {
 | |
|                           $query->whereDate('due_date', '<=', now()->format('Y-m-d'))
 | |
|                                   ->orWhereNull('due_date');
 | |
|                       })
 | |
|                       ->orderBy('created_at', 'ASC');
 | |
| 
 | |
|         return Number::roundValue($credits->sum('balance'), $this->client->currency()->precision);
 | |
|     }
 | |
| 
 | |
|     public function getCredits()
 | |
|     {
 | |
|         return Credit::query()->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'))
 | |
|                               ->orWhereNull('due_date');
 | |
|                   })
 | |
|                   ->orderBy('created_at', 'ASC')->get();
 | |
|     }
 | |
| 
 | |
|     public function getPaymentMethods(float $amount)
 | |
|     {
 | |
|         return (new PaymentMethod($this->client, $amount))->run();
 | |
|     }
 | |
| 
 | |
|     public function merge(Client $mergable_client)
 | |
|     {
 | |
|         $this->client = (new Merge($this->client, $mergable_client))->run();
 | |
| 
 | |
|         return $this;
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Generate the client statement.
 | |
|      *
 | |
|      * @param array $options
 | |
|      * @param bool $send_email determines if we should send this statement direct to the client
 | |
|      */
 | |
|     public function statement(array $options = [], bool $send_email = false)
 | |
|     {
 | |
|         $statement = (new Statement($this->client, $options));
 | |
| 
 | |
|         $pdf = $statement->run();
 | |
| 
 | |
|         if ($send_email) {
 | |
|             // If selected, ignore clients that don't have any invoices to put on the statement.
 | |
|             if (!empty($options['only_clients_with_invoices']) && $statement->getInvoices()->count() == 0) {
 | |
|                 return false;
 | |
|             }
 | |
| 
 | |
|             $this->emailStatement($pdf, $statement->options);
 | |
|             return;
 | |
|         }
 | |
| 
 | |
|         return $pdf;
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Emails the statement to the client
 | |
|      *
 | |
|      * @param  mixed $pdf     The pdf blob
 | |
|      * @param  array  $options The statement options array
 | |
|      */
 | |
|     private function emailStatement($pdf, array $options): void
 | |
|     {
 | |
|         $this->client_start_date = $this->translateDate($options['start_date'], $this->client->date_format(), $this->client->locale());
 | |
|         $this->client_end_date = $this->translateDate($options['end_date'], $this->client->date_format(), $this->client->locale());
 | |
| 
 | |
|         $email_object = $this->buildStatementMailableData($pdf);
 | |
|         Email::dispatch($email_object, $this->client->company);
 | |
| 
 | |
|         event(new StatementWasEmailed($this->client, $this->client->company, $this->client_end_date, Ninja::eventVars()));
 | |
| 
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Builds and returns an EmailObject for Client Statements
 | |
|      *
 | |
|      * @param  mixed $pdf       The PDF to send
 | |
|      * @return EmailObject      The EmailObject to send
 | |
|      */
 | |
|     public function buildStatementMailableData($pdf): EmailObject
 | |
|     {
 | |
|         $email = $this->client->present()->email();
 | |
| 
 | |
|         $email_object = new EmailObject();
 | |
|         $email_object->to = [new Address($email, $this->client->present()->name())];
 | |
| 
 | |
|         $cc_contacts = $this->client
 | |
|                             ->contacts()
 | |
|                             ->where('send_email', true)
 | |
|                             ->where('email', '!=', $email)
 | |
|                             ->get();
 | |
| 
 | |
|         foreach ($cc_contacts as $contact) {
 | |
| 
 | |
|             $email_object->cc[] = new Address($contact->email, $contact->present()->name());
 | |
| 
 | |
|         }
 | |
| 
 | |
|         $invoice = $this->client->invoices()->whereHas('invitations')->first();
 | |
| 
 | |
|         $email_object->attachments = [['file' => base64_encode($pdf), 'name' => ctrans('texts.statement') . ".pdf"]];
 | |
|         $email_object->client_id = $this->client->id;
 | |
|         $email_object->entity_class = Invoice::class;
 | |
|         $email_object->entity_id = $invoice?->id ?? null;
 | |
|         $email_object->invitation_id = $invoice?->invitations?->first()?->id ?? null;
 | |
|         $email_object->email_template_subject = 'email_subject_statement';
 | |
|         $email_object->email_template_body = 'email_template_statement';
 | |
|         $email_object->variables = [
 | |
|             '$client' => $this->client->present()->name(),
 | |
|             '$start_date' => $this->client_start_date,
 | |
|             '$end_date' => $this->client_end_date,
 | |
|         ];
 | |
| 
 | |
|         return $email_object;
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Saves the client instance
 | |
|      *
 | |
|      * @return Client The Client Model
 | |
|      */
 | |
|     public function save(): Client
 | |
|     {
 | |
|         $this->client->saveQuietly();
 | |
| 
 | |
|         return $this->client->fresh();
 | |
|     }
 | |
| }
 |