invoiceninja/app/Repositories/PaymentRepository.php

242 lines
8.1 KiB
PHP
Raw Normal View History

2019-05-03 18:32:30 +10:00
<?php
2019-05-11 13:32:07 +10:00
/**
* Invoice Ninja (https://invoiceninja.com).
2019-05-11 13:32:07 +10:00
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
2019-05-11 13:32:07 +10:00
*
2021-06-16 16:58:16 +10:00
* @license https://www.elastic.co/licensing/elastic-license
2019-05-11 13:32:07 +10:00
*/
2019-05-03 18:32:30 +10:00
namespace App\Repositories;
use App\Events\Payment\PaymentWasCreated;
2020-11-25 20:21:26 +11:00
use App\Events\Payment\PaymentWasDeleted;
use App\Jobs\Credit\ApplyCreditPayment;
use App\Libraries\Currency\Conversion\CurrencyApi;
use App\Models\Client;
2020-01-07 20:35:55 +11:00
use App\Models\Credit;
use App\Models\Invoice;
2019-05-03 18:32:30 +10:00
use App\Models\Payment;
2020-07-08 22:02:16 +10:00
use App\Utils\Ninja;
use App\Utils\Traits\MakesHash;
2020-06-22 21:36:39 +10:00
use App\Utils\Traits\SavesDocuments;
2019-05-03 18:32:30 +10:00
use Illuminate\Http\Request;
use Illuminate\Support\Carbon;
2019-05-03 18:32:30 +10:00
/**
* PaymentRepository.
2019-05-03 18:32:30 +10:00
*/
class PaymentRepository extends BaseRepository {
use MakesHash;
use SavesDocuments;
protected $credit_repo;
2020-01-03 20:34:10 +11:00
public function __construct( CreditRepository $credit_repo ) {
$this->credit_repo = $credit_repo;
}
2020-01-03 20:34:10 +11: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
{
if ($payment->amount >= 0) {
return $this->applyPayment($data, $payment);
}
2020-06-06 11:07:31 +10:00
return $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 21:59:24 +11:00
2020-10-20 16:14:11 +11:00
$is_existing_payment = true;
2020-06-06 11:07:31 +10:00
//check currencies here and fill the exchange rate data if necessary
if (! $payment->id) {
$this->processExchangeRates($data, $payment);
2020-06-06 11:07:31 +10:00
2020-10-20 16:14:11 +11:00
$is_existing_payment = false;
2020-11-25 14:44:37 +11:00
$client = Client::where('id', $data['client_id'])->withTrashed()->first();
2020-10-21 14:10:32 +11:00
2020-06-06 11:07:31 +10: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) {
if ($data['amount'] == '') {
2020-06-06 14:00:59 +10:00
$data['amount'] = array_sum(array_column($data['invoices'], 'amount'));
}
2020-06-06 14:00:59 +10:00
$client->service()->updatePaidToDate($data['amount'])->save();
2020-06-06 11:07:31 +10:00
}
elseif($data['amount'] >0){
//this fixes an edge case with unapplied payments
$client->service()->updatePaidToDate($data['amount'])->save();
}
2020-10-21 14:10:32 +11:00
2020-10-21 10:47:12 +11:00
if (array_key_exists('credits', $data) && is_array($data['credits']) && count($data['credits']) > 0) {
2020-10-21 15:03:22 +11:00
$_credit_totals = array_sum(array_column($data['credits'], 'amount'));
2020-11-25 15:19:52 +01:00
if ($data['amount'] == $_credit_totals) {
2020-10-21 17:40:05 +11:00
$data['amount'] = 0;
2020-11-25 15:19:52 +01:00
} else {
2020-10-21 17:40:05 +11:00
$client->service()->updatePaidToDate($_credit_totals)->save();
2020-11-25 15:19:52 +01:00
}
2020-10-21 10:47:12 +11:00
}
2021-06-21 06:55:48 +10:00
}
/*Fill the payment*/
$payment->fill($data);
2021-01-14 08:16:07 +11:00
$payment->is_manual = true;
$payment->status_id = Payment::STATUS_COMPLETED;
$payment->save();
2020-08-04 15:09:07 +10:00
/*Save documents*/
2020-06-22 21:36:39 +10:00
if (array_key_exists('documents', $data)) {
$this->saveDocuments($data['documents'], $payment);
}
2020-06-06 11:07:31 +10:00
/*Ensure payment number generated*/
if (! $payment->number || strlen($payment->number) == 0) {
$payment->number = $payment->client->getNextPaymentNumber($payment->client);
}
2020-08-04 15:09:07 +10:00
/*Set local total variables*/
$invoice_totals = 0;
$credit_totals = 0;
/*Iterate through invoices and apply payments*/
2020-06-06 11:07:31 +10:00
if (array_key_exists('invoices', $data) && is_array($data['invoices']) && count($data['invoices']) > 0) {
$invoice_totals = array_sum(array_column($data['invoices'], 'amount'));
$invoices = Invoice::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) {
2020-06-30 13:31:30 +10:00
$invoice = Invoice::whereId($paid_invoice['invoice_id'])->first();
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 10:08:55 +10: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();
2020-01-07 20:35:55 +11:00
$payment->credits()->saveMany($credits);
//todo optimize into a single query
foreach ($data['credits'] as $paid_credit) {
2020-11-25 20:21:26 +11:00
$credit = Credit::withTrashed()->find($this->decodePrimaryKey($paid_credit['credit_id']));
2020-01-07 20:35:55 +11:00
if ($credit) {
ApplyCreditPayment::dispatchNow($credit, $payment, $paid_credit['amount'], $credit->company);
}
2020-01-07 20:35:55 +11:00
}
}
if ( ! $is_existing_payment && ! $this->import_mode ) {
2021-07-01 09:14:30 +10:00
if (array_key_exists('email_receipt', $data) && $data['email_receipt'] == true)
$payment->service()->sendEmail();
2021-07-01 15:56:44 +10:00
elseif(!array_key_exists('email_receipt', $data) && $payment->client->getSetting('client_manual_payment_notification'))
$payment->service()->sendEmail();
2021-05-07 07:12:07 +10:00
event( new PaymentWasCreated( $payment, $payment->company, Ninja::eventVars(auth()->user() ? auth()->user()->id : null) ) );
}
2021-01-20 21:59:24 +11:00
nlog("payment amount = {$payment->amount}");
nlog("payment applied = {$payment->applied}");
nlog("invoice totals = {$invoice_totals}");
nlog("credit totals = {$credit_totals}");
2020-11-25 15:19:52 +01:00
$payment->applied += ($invoice_totals - $credit_totals); //wont work because - check tests
2020-10-21 17:33:04 +11:00
// $payment->applied += $invoice_totals; //wont work because - check tests
$payment->save();
return $payment->fresh();
}
/**
* If the client is paying in a currency other than
* the company currency, we need to set a record.
2020-10-28 21:10:49 +11:00
* @param $data
* @param $payment
* @return
*/
private function processExchangeRates($data, $payment)
{
2021-06-21 06:55:48 +10:00
if(array_key_exists('exchange_rate', $data) && isset($data['exchange_rate']))
return $payment;
$client = Client::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 = $client_currency;
$payment->exchange_currency_id = $company_currency;
}
return $payment;
}
2020-06-28 08:24:08 +10:00
public function delete($payment)
{
2020-06-28 13:05:58 +10:00
//cannot double delete a payment
if ($payment->is_deleted) {
2020-06-28 08:24:08 +10:00
return;
}
2020-06-28 08:24:08 +10:00
2020-11-25 20:21:26 +11:00
$payment = $payment->service()->deletePayment();
2020-06-28 08:24:08 +10:00
2021-05-07 07:12:07 +10:00
event(new PaymentWasDeleted($payment, $payment->company, Ninja::eventVars(auth()->user() ? auth()->user()->id : null)));
2020-11-25 20:21:26 +11:00
return $payment;
//return parent::delete($payment);
2020-06-28 13:05:58 +10:00
}
public function restore($payment)
{
//we cannot restore a deleted payment.
if ($payment->is_deleted) {
2020-06-28 13:05:58 +10:00
return;
}
2020-06-28 13:05:58 +10:00
return parent::restore($payment);
2020-06-28 08:24:08 +10:00
}
}