2019-05-03 10:32:30 +02:00
|
|
|
<?php
|
2019-05-11 05:32:07 +02:00
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2019-05-11 05:32:07 +02: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)
|
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;
|
|
|
|
|
2019-11-18 11:46:01 +01:00
|
|
|
use App\Events\Payment\PaymentWasCreated;
|
2020-11-25 10:21:26 +01:00
|
|
|
use App\Events\Payment\PaymentWasDeleted;
|
2020-02-01 21:45:23 +01:00
|
|
|
use App\Jobs\Credit\ApplyCreditPayment;
|
2022-03-10 01:32:04 +01:00
|
|
|
use App\Jobs\Ninja\TransactionLog;
|
2020-04-19 12:29:58 +02:00
|
|
|
use App\Libraries\Currency\Conversion\CurrencyApi;
|
2020-03-09 10:38:15 +01:00
|
|
|
use App\Models\Client;
|
2020-01-07 10:35:55 +01:00
|
|
|
use App\Models\Credit;
|
2019-11-18 11:46:01 +01:00
|
|
|
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;
|
2020-04-08 12:48:31 +02:00
|
|
|
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;
|
2020-04-19 12:29:58 +02:00
|
|
|
use Illuminate\Support\Carbon;
|
2019-05-03 10:32:30 +02:00
|
|
|
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* PaymentRepository.
|
2019-05-03 10:32:30 +02:00
|
|
|
*/
|
2021-02-18 04:05:33 +01:00
|
|
|
class PaymentRepository extends BaseRepository {
|
|
|
|
use MakesHash;
|
|
|
|
use SavesDocuments;
|
2020-04-08 12:48:31 +02:00
|
|
|
|
2021-02-18 04:05:33 +01:00
|
|
|
protected $credit_repo;
|
2020-01-03 10:34:10 +01:00
|
|
|
|
2021-02-18 04:05:33 +01:00
|
|
|
public function __construct( CreditRepository $credit_repo ) {
|
|
|
|
$this->credit_repo = $credit_repo;
|
|
|
|
}
|
2020-01-03 10:34:10 +01:00
|
|
|
|
2021-02-18 04:05:33 +01:00
|
|
|
/**
|
|
|
|
* Saves and updates a payment. //todo refactor to handle refunds and payments.
|
|
|
|
*
|
|
|
|
* @param array $data the request object
|
2020-01-17 22:10:38 +01:00
|
|
|
* @param Payment $payment The Payment object
|
|
|
|
* @return Payment|null Payment $payment
|
2019-12-29 07:28:57 +01:00
|
|
|
*/
|
2020-01-17 22:10:38 +01:00
|
|
|
public function save(array $data, Payment $payment): ?Payment
|
2019-12-30 22:59:12 +01:00
|
|
|
{
|
2022-04-05 05:54:10 +02:00
|
|
|
return $this->applyPayment($data, $payment);
|
2020-01-11 23:01:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Handles a positive payment request.
|
2020-06-05 05:52:53 +02:00
|
|
|
* @param array $data The data object
|
|
|
|
* @param Payment $payment The $payment entity
|
2020-01-11 23:01:28 +01:00
|
|
|
* @return Payment The updated/created payment object
|
|
|
|
*/
|
2020-01-17 22:10:38 +01:00
|
|
|
private function applyPayment(array $data, Payment $payment): ?Payment
|
2020-01-11 23:01:28 +01:00
|
|
|
{
|
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
|
|
|
|
2020-03-09 10:38:15 +01:00
|
|
|
//check currencies here and fill the exchange rate data if necessary
|
2020-09-06 11:38:10 +02:00
|
|
|
if (! $payment->id) {
|
2022-05-11 07:25:33 +02:00
|
|
|
$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;
|
2022-02-25 03:16:49 +01:00
|
|
|
$client = Client::where('id', $data['client_id'])->withTrashed()->first();
|
2020-10-21 05:10:32 +02:00
|
|
|
|
2020-06-06 03:07:31 +02:00
|
|
|
/*We only update the paid to date ONCE per payment*/
|
|
|
|
if (array_key_exists('invoices', $data) && is_array($data['invoices']) && count($data['invoices']) > 0) {
|
2020-09-06 11:38:10 +02:00
|
|
|
if ($data['amount'] == '') {
|
2020-06-06 06:00:59 +02:00
|
|
|
$data['amount'] = array_sum(array_column($data['invoices'], 'amount'));
|
2020-09-06 11:38:10 +02:00
|
|
|
}
|
|
|
|
|
2020-06-06 06:00:59 +02:00
|
|
|
$client->service()->updatePaidToDate($data['amount'])->save();
|
2020-06-06 03:07:31 +02:00
|
|
|
}
|
2022-07-11 10:24:49 +02:00
|
|
|
|
2022-01-05 00:02:46 +01:00
|
|
|
else{
|
2021-07-14 04:22:37 +02:00
|
|
|
//this fixes an edge case with unapplied payments
|
|
|
|
$client->service()->updatePaidToDate($data['amount'])->save();
|
|
|
|
}
|
2020-10-21 05:10:32 +02:00
|
|
|
|
2020-10-21 01:47:12 +02:00
|
|
|
if (array_key_exists('credits', $data) && is_array($data['credits']) && count($data['credits']) > 0) {
|
2020-10-21 06:03:22 +02:00
|
|
|
$_credit_totals = array_sum(array_column($data['credits'], 'amount'));
|
|
|
|
|
2022-03-10 01:32:04 +01:00
|
|
|
$client->service()->updatePaidToDate($_credit_totals)->save();
|
|
|
|
|
2020-10-21 01:47:12 +02:00
|
|
|
}
|
2021-06-20 22:55:48 +02:00
|
|
|
|
2020-03-21 06:37:30 +01:00
|
|
|
}
|
2020-01-17 22:10:38 +01:00
|
|
|
|
2020-06-05 05:52:53 +02:00
|
|
|
/*Fill the payment*/
|
2020-01-17 22:10:38 +01:00
|
|
|
$payment->fill($data);
|
2021-01-13 22:16:07 +01:00
|
|
|
$payment->is_manual = true;
|
2020-01-03 09:49:59 +01:00
|
|
|
$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) {
|
2022-05-11 07:25:33 +02:00
|
|
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2019-11-18 11:46:01 +01:00
|
|
|
$payment->save();
|
2020-01-09 21:15:10 +01:00
|
|
|
|
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
|
|
|
|
2020-06-05 05:52:53 +02:00
|
|
|
/*Ensure payment number generated*/
|
2020-09-06 11:38:10 +02:00
|
|
|
if (! $payment->number || strlen($payment->number) == 0) {
|
2021-10-17 04:49:32 +02:00
|
|
|
$payment->number = $payment->client->getNextPaymentNumber($payment->client, $payment);
|
2020-03-21 06:37:30 +01:00
|
|
|
}
|
2020-01-17 22:10:38 +01:00
|
|
|
|
2020-08-04 07:09:07 +02:00
|
|
|
/*Set local total variables*/
|
2020-01-09 21:15:10 +01:00
|
|
|
$invoice_totals = 0;
|
|
|
|
$credit_totals = 0;
|
|
|
|
|
2020-06-05 05:52:53 +02:00
|
|
|
/*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) {
|
2021-04-09 11:51:17 +02:00
|
|
|
|
2020-01-17 22:10:38 +01:00
|
|
|
$invoice_totals = array_sum(array_column($data['invoices'], 'amount'));
|
2020-01-09 21:15:10 +01:00
|
|
|
|
2020-01-23 21:35:00 +01:00
|
|
|
$invoices = Invoice::whereIn('id', array_column($data['invoices'], 'invoice_id'))->get();
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2019-11-18 11:46:01 +01:00
|
|
|
$payment->invoices()->saveMany($invoices);
|
2020-01-09 21:15:10 +01:00
|
|
|
|
2020-09-19 07:02:34 +02:00
|
|
|
//todo optimize this into a single query
|
2020-01-17 22:10:38 +01:00
|
|
|
foreach ($data['invoices'] as $paid_invoice) {
|
2021-11-15 11:46:58 +01:00
|
|
|
$invoice = Invoice::withTrashed()->whereId($paid_invoice['invoice_id'])->first();
|
2019-12-01 12:23:24 +01:00
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
if ($invoice) {
|
2021-04-09 11:51:17 +02:00
|
|
|
$invoice = $invoice->service()
|
|
|
|
->markSent()
|
|
|
|
->applyPayment($payment, $paid_invoice['amount'])
|
|
|
|
->save();
|
2020-09-06 11:38:10 +02:00
|
|
|
}
|
2019-12-01 12:23:24 +01:00
|
|
|
}
|
2019-12-30 22:59:12 +01:00
|
|
|
} else {
|
2020-06-05 05:52:53 +02:00
|
|
|
//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.
|
2020-09-06 11:38:10 +02:00
|
|
|
//$payment->client->service()->updatePaidToDate($payment->amount)->save();
|
2019-11-16 04:12:29 +01:00
|
|
|
}
|
|
|
|
|
2020-01-17 22:10:38 +01:00
|
|
|
if (array_key_exists('credits', $data) && is_array($data['credits'])) {
|
|
|
|
$credit_totals = array_sum(array_column($data['credits'], 'amount'));
|
|
|
|
|
2022-08-22 05:24:33 +02:00
|
|
|
// $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);
|
|
|
|
|
2020-09-19 07:02:34 +02:00
|
|
|
//todo optimize into a single query
|
2020-01-17 22:10:38 +01:00
|
|
|
foreach ($data['credits'] as $paid_credit) {
|
2022-08-22 05:24:33 +02:00
|
|
|
$credit = Credit::withTrashed()->find($paid_credit['credit_id']);
|
2020-01-07 10:35:55 +01:00
|
|
|
|
2020-03-21 06:37:30 +01:00
|
|
|
if ($credit) {
|
2022-04-07 01:06:02 +02:00
|
|
|
$credit = $credit->service()->markSent()->save();
|
2022-08-22 02:27:11 +02:00
|
|
|
(new ApplyCreditPayment($credit, $payment, $paid_credit['amount'], $credit->company))->handle();
|
2020-03-21 06:37:30 +01:00
|
|
|
}
|
2020-01-07 10:35:55 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-18 04:05:33 +01:00
|
|
|
if ( ! $is_existing_payment && ! $this->import_mode ) {
|
2021-04-15 23:58:34 +02:00
|
|
|
|
2021-08-06 01:20:21 +02:00
|
|
|
if (array_key_exists('email_receipt', $data) && $data['email_receipt'] == 'true')
|
2021-04-15 23:58:34 +02:00
|
|
|
$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) ) );
|
2021-02-18 04:05:33 +01:00
|
|
|
}
|
2019-11-18 11:46:01 +01:00
|
|
|
|
2020-11-25 15:19:52 +01:00
|
|
|
$payment->applied += ($invoice_totals - $credit_totals); //wont work because - check tests
|
2020-01-09 21:15:10 +01:00
|
|
|
|
|
|
|
$payment->save();
|
2020-06-18 05:19:38 +02:00
|
|
|
|
2022-03-10 01:32:04 +01:00
|
|
|
$transaction = [
|
|
|
|
'invoice' => [],
|
|
|
|
'payment' => $payment->transaction_event(),
|
|
|
|
'client' => $payment->client->transaction_event(),
|
|
|
|
'credit' => [],
|
|
|
|
'metadata' => [],
|
|
|
|
];
|
|
|
|
|
|
|
|
TransactionLog::dispatch(TransactionEvent::PAYMENT_MADE, $transaction, $payment->company->db);
|
|
|
|
|
2022-04-27 01:05:16 +02:00
|
|
|
return $payment->refresh();
|
2020-01-03 09:49:59 +01:00
|
|
|
}
|
|
|
|
|
2020-03-09 10:38:15 +01:00
|
|
|
/**
|
2020-03-21 06:37:30 +01:00
|
|
|
* If the client is paying in a currency other than
|
2020-09-06 11:38:10 +02:00
|
|
|
* the company currency, we need to set a record.
|
2020-10-28 11:10:49 +01:00
|
|
|
* @param $data
|
|
|
|
* @param $payment
|
|
|
|
* @return
|
2020-03-09 10:38:15 +01:00
|
|
|
*/
|
2021-11-22 11:09:28 +01:00
|
|
|
public function processExchangeRates($data, $payment)
|
2020-03-09 10:38:15 +01:00
|
|
|
{
|
2021-06-20 22:55:48 +02:00
|
|
|
|
2022-05-11 07:25:33 +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;
|
2022-05-11 07:25:33 +02:00
|
|
|
}
|
2021-06-20 22:55:48 +02:00
|
|
|
|
2021-11-22 05:25:43 +01:00
|
|
|
$client = Client::withTrashed()->find($data['client_id']);
|
2020-03-09 10:38:15 +01:00
|
|
|
|
|
|
|
$client_currency = $client->getSetting('currency_id');
|
|
|
|
$company_currency = $client->company->settings->currency_id;
|
|
|
|
|
2020-03-21 06:37:30 +01:00
|
|
|
if ($company_currency != $client_currency) {
|
2020-03-09 10:38:15 +01:00
|
|
|
|
2020-04-19 12:29:58 +02:00
|
|
|
$exchange_rate = new CurrencyApi();
|
|
|
|
|
|
|
|
$payment->exchange_rate = $exchange_rate->exchangeRate($client_currency, $company_currency, Carbon::parse($payment->date));
|
2021-06-23 08:49:40 +02:00
|
|
|
$payment->exchange_currency_id = $company_currency;
|
2022-01-19 23:26:52 +01:00
|
|
|
$payment->currency_id = $client_currency;
|
2021-06-23 08:49:40 +02:00
|
|
|
|
2022-02-08 13:29:59 +01:00
|
|
|
return $payment;
|
2020-03-09 10:38:15 +01:00
|
|
|
}
|
2022-02-02 09:51:29 +01:00
|
|
|
|
|
|
|
$payment->currency_id = $company_currency;
|
|
|
|
|
2020-03-09 10:38:15 +01:00
|
|
|
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
|
2020-09-06 11:38:10 +02:00
|
|
|
if ($payment->is_deleted) {
|
2020-06-28 00:24:08 +02:00
|
|
|
return;
|
2020-09-06 11:38:10 +02:00
|
|
|
}
|
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
|
|
|
|
2021-05-06 23:12:07 +02:00
|
|
|
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.
|
2020-09-06 11:38:10 +02:00
|
|
|
if ($payment->is_deleted) {
|
2020-06-28 05:05:58 +02:00
|
|
|
return;
|
2020-09-06 11:38:10 +02:00
|
|
|
}
|
2020-06-28 05:05:58 +02:00
|
|
|
|
|
|
|
return parent::restore($payment);
|
2020-06-28 00:24:08 +02:00
|
|
|
}
|
2019-12-30 22:59:12 +01:00
|
|
|
}
|