1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 08:51:34 +02:00
invoiceninja/app/Repositories/PaymentRepository.php

267 lines
9.2 KiB
PHP
Raw Normal View History

2019-05-03 10:32:30 +02:00
<?php
2019-05-11 05:32:07 +02:00
/**
* Invoice Ninja (https://invoiceninja.com).
2019-05-11 05:32:07 +02:00
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2023-01-28 23:21:40 +01:00
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
2019-05-11 05:32:07 +02:00
*
2021-06-16 08:58:16 +02:00
* @license https://www.elastic.co/licensing/elastic-license
2019-05-11 05:32:07 +02:00
*/
2019-05-03 10:32:30 +02:00
namespace App\Repositories;
use App\Events\Payment\PaymentWasCreated;
2020-11-25 10:21:26 +01:00
use App\Events\Payment\PaymentWasDeleted;
use App\Jobs\Credit\ApplyCreditPayment;
2022-03-10 01:32:04 +01:00
use App\Jobs\Ninja\TransactionLog;
use App\Libraries\Currency\Conversion\CurrencyApi;
use App\Models\Client;
2020-01-07 10:35:55 +01:00
use App\Models\Credit;
use App\Models\Invoice;
2019-05-03 10:32:30 +02:00
use App\Models\Payment;
2022-03-10 01:32:04 +01:00
use App\Models\TransactionEvent;
2020-07-08 14:02:16 +02:00
use App\Utils\Ninja;
use App\Utils\Traits\MakesHash;
2020-06-22 13:36:39 +02:00
use App\Utils\Traits\SavesDocuments;
2019-05-03 10:32:30 +02:00
use Illuminate\Http\Request;
use Illuminate\Support\Carbon;
2019-05-03 10:32:30 +02:00
/**
* PaymentRepository.
2019-05-03 10:32:30 +02:00
*/
class PaymentRepository extends BaseRepository {
use MakesHash;
use SavesDocuments;
protected $credit_repo;
2020-01-03 10:34:10 +01:00
public function __construct( CreditRepository $credit_repo ) {
$this->credit_repo = $credit_repo;
}
2020-01-03 10:34:10 +01:00
/**
* Saves and updates a payment. //todo refactor to handle refunds and payments.
*
* @param array $data the request object
* @param Payment $payment The Payment object
* @return Payment|null Payment $payment
*/
public function save(array $data, Payment $payment): ?Payment
{
2022-04-05 05:54:10 +02:00
return $this->applyPayment($data, $payment);
}
/**
* Handles a positive payment request.
* @param array $data The data object
* @param Payment $payment The $payment entity
* @return Payment The updated/created payment object
*/
private function applyPayment(array $data, Payment $payment): ?Payment
{
2021-01-20 11:59:24 +01:00
2020-10-20 07:14:11 +02:00
$is_existing_payment = true;
2022-02-25 03:16:49 +01:00
$client = false;
2020-06-06 03:07:31 +02:00
//check currencies here and fill the exchange rate data if necessary
if (! $payment->id) {
$payment = $this->processExchangeRates($data, $payment);
/* This is needed here otherwise the ->fill() overwrites anything that exists*/
if($payment->exchange_rate != 1)
unset($data['exchange_rate']);
2020-06-06 03:07:31 +02:00
2020-10-20 07:14:11 +02:00
$is_existing_payment = false;
2020-10-21 05:10:32 +02:00
\DB::connection(config('database.default'))->transaction(function () use ($data) {
$client = Client::where('id', $data['client_id'])->withTrashed()->lockForUpdate()->first();
/*We only update the paid to date ONCE per payment*/
if (array_key_exists('invoices', $data) && is_array($data['invoices']) && count($data['invoices']) > 0) {
if ($data['amount'] == '') {
$data['amount'] = array_sum(array_column($data['invoices'], 'amount'));
}
2022-09-05 03:51:47 +02:00
$client->service()->updatePaidToDate($data['amount'])->save();
2023-02-01 05:00:45 +01:00
$client->saveQuietly();
}
else{
//this fixes an edge case with unapplied payments
2022-09-05 03:51:47 +02:00
$client->service()->updatePaidToDate($data['amount'])->save();
// $client->paid_to_date += $data['amount'];
2023-02-01 05:00:45 +01:00
$client->saveQuietly();
}
2022-07-11 10:24:49 +02:00
if (array_key_exists('credits', $data) && is_array($data['credits']) && count($data['credits']) > 0) {
$_credit_totals = array_sum(array_column($data['credits'], 'amount'));
2020-10-21 05:10:32 +02:00
2022-09-05 03:51:47 +02:00
$client->service()->updatePaidToDate($_credit_totals)->save();
// $client->paid_to_date += $_credit_totals;
2023-02-01 05:00:45 +01:00
$client->saveQuietly();
}
2020-10-21 06:03:22 +02:00
}, 1);
2021-06-20 22:55:48 +02:00
}
/*Fill the payment*/
$payment->fill($data);
2021-01-13 22:16:07 +01:00
$payment->is_manual = true;
$payment->status_id = Payment::STATUS_COMPLETED;
2022-01-19 23:26:52 +01:00
2022-02-25 03:16:49 +01:00
if (! $payment->currency_id && $client) {
if(property_exists($client->settings, 'currency_id'))
$payment->currency_id = $client->settings->currency_id;
else
$payment->currency_id = $client->company->settings->currency_id;
2022-02-25 03:06:29 +01:00
}
2023-02-01 05:00:45 +01:00
$payment->saveQuietly();
2020-08-04 07:09:07 +02:00
/*Save documents*/
2020-06-22 13:36:39 +02:00
if (array_key_exists('documents', $data)) {
$this->saveDocuments($data['documents'], $payment);
}
2020-06-06 03:07:31 +02:00
/*Ensure payment number generated*/
if (! $payment->number || strlen($payment->number) == 0) {
2022-08-28 23:59:40 +02:00
// $payment->number = $payment->client->getNextPaymentNumber($payment->client, $payment);
$payment->service()->applyNumber();
}
2020-08-04 07:09:07 +02:00
/*Set local total variables*/
$invoice_totals = 0;
$credit_totals = 0;
/*Iterate through invoices and apply payments*/
2020-06-06 03:07:31 +02:00
if (array_key_exists('invoices', $data) && is_array($data['invoices']) && count($data['invoices']) > 0) {
$invoice_totals = array_sum(array_column($data['invoices'], 'amount'));
2022-10-02 02:00:32 +02:00
$invoices = Invoice::withTrashed()->whereIn('id', array_column($data['invoices'], 'invoice_id'))->get();
$payment->invoices()->saveMany($invoices);
//todo optimize this into a single query
foreach ($data['invoices'] as $paid_invoice) {
// $invoice = Invoice::withTrashed()->whereId($paid_invoice['invoice_id'])->first();
$invoice = $invoices->firstWhere('id', $paid_invoice['invoice_id']);
if ($invoice) {
$invoice = $invoice->service()
->markSent()
->applyPayment($payment, $paid_invoice['amount'])
->save();
}
}
} else {
//payment is made, but not to any invoice, therefore we are applying the payment to the clients paid_to_date only
2020-07-01 02:08:55 +02:00
//01-07-2020 i think we were duplicating the paid to date here.
//$payment->client->service()->updatePaidToDate($payment->amount)->save();
}
if (array_key_exists('credits', $data) && is_array($data['credits'])) {
$credit_totals = array_sum(array_column($data['credits'], 'amount'));
// $credits = Credit::whereIn('id', $this->transformKeys(array_column($data['credits'], 'credit_id')))->get();
$credits = Credit::whereIn('id', array_column($data['credits'], 'credit_id'))->get();
2020-01-07 10:35:55 +01:00
$payment->credits()->saveMany($credits);
//todo optimize into a single query
foreach ($data['credits'] as $paid_credit) {
// $credit = Credit::withTrashed()->find($paid_credit['credit_id']);
$credit = $credits->firstWhere('id', $paid_credit['credit_id']);
if ($credit) {
$credit = $credit->service()->markSent()->save();
2022-08-22 02:27:11 +02:00
(new ApplyCreditPayment($credit, $payment, $paid_credit['amount'], $credit->company))->handle();
}
2020-01-07 10:35:55 +01:00
}
}
if ( ! $is_existing_payment && ! $this->import_mode ) {
2021-08-06 01:20:21 +02:00
if (array_key_exists('email_receipt', $data) && $data['email_receipt'] == 'true')
$payment->service()->sendEmail();
2021-07-01 07:56:44 +02:00
elseif(!array_key_exists('email_receipt', $data) && $payment->client->getSetting('client_manual_payment_notification'))
$payment->service()->sendEmail();
2021-05-06 23:12:07 +02:00
event( new PaymentWasCreated( $payment, $payment->company, Ninja::eventVars(auth()->user() ? auth()->user()->id : null) ) );
}
2020-11-25 15:19:52 +01:00
$payment->applied += ($invoice_totals - $credit_totals); //wont work because - check tests
2023-02-01 05:00:45 +01:00
$payment->saveQuietly();
2022-03-10 01:32:04 +01:00
return $payment->refresh();
}
/**
* If the client is paying in a currency other than
* the company currency, we need to set a record.
2020-10-28 11:10:49 +01:00
* @param $data
* @param $payment
* @return
*/
2021-11-22 11:09:28 +01:00
public function processExchangeRates($data, $payment)
{
2021-06-20 22:55:48 +02:00
if(array_key_exists('exchange_rate', $data) && isset($data['exchange_rate']) && $data['exchange_rate'] != 1){
2021-06-20 22:55:48 +02:00
return $payment;
}
2021-06-20 22:55:48 +02:00
$client = Client::withTrashed()->find($data['client_id']);
$client_currency = $client->getSetting('currency_id');
$company_currency = $client->company->settings->currency_id;
if ($company_currency != $client_currency) {
$exchange_rate = new CurrencyApi();
$payment->exchange_rate = $exchange_rate->exchangeRate($client_currency, $company_currency, Carbon::parse($payment->date));
$payment->exchange_currency_id = $company_currency;
2022-01-19 23:26:52 +01:00
$payment->currency_id = $client_currency;
2022-02-08 13:29:59 +01:00
return $payment;
}
$payment->currency_id = $company_currency;
return $payment;
}
2020-06-28 00:24:08 +02:00
public function delete($payment)
{
2020-06-28 05:05:58 +02:00
//cannot double delete a payment
if ($payment->is_deleted) {
2020-06-28 00:24:08 +02:00
return;
}
2020-06-28 00:24:08 +02:00
2020-11-25 10:21:26 +01:00
$payment = $payment->service()->deletePayment();
2020-06-28 00:24:08 +02:00
if($payment)
event(new PaymentWasDeleted($payment, $payment->company, Ninja::eventVars(auth()->user() ? auth()->user()->id : null)));
2020-11-25 10:21:26 +01:00
return $payment;
2022-08-22 02:27:11 +02:00
2020-06-28 05:05:58 +02:00
}
public function restore($payment)
{
//we cannot restore a deleted payment.
if ($payment->is_deleted) {
2020-06-28 05:05:58 +02:00
return;
}
2020-06-28 05:05:58 +02:00
return parent::restore($payment);
2020-06-28 00:24:08 +02:00
}
}