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

220 lines
7.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
*
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
2019-05-11 05:32:07 +02:00
*
* @license https://opensource.org/licenses/AAL
*/
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;
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;
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
{
if ($payment->amount >= 0) {
return $this->applyPayment($data, $payment);
}
2020-06-06 03:07:31 +02: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 11:59:24 +01:00
2020-10-20 07:14:11 +02:00
$is_existing_payment = true;
2020-06-06 03:07:31 +02:00
//check currencies here and fill the exchange rate data if necessary
if (! $payment->id) {
$this->processExchangeRates($data, $payment);
2020-06-06 03:07:31 +02:00
2020-10-20 07:14:11 +02:00
$is_existing_payment = false;
2020-11-25 04:44:37 +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) {
if ($data['amount'] == '') {
2020-06-06 06:00:59 +02:00
$data['amount'] = array_sum(array_column($data['invoices'], 'amount'));
}
2020-06-06 06:00:59 +02:00
$client->service()->updatePaidToDate($data['amount'])->save();
2020-06-06 03:07:31 +02:00
}
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'));
2020-11-25 15:19:52 +01:00
if ($data['amount'] == $_credit_totals) {
2020-10-21 08:40:05 +02:00
$data['amount'] = 0;
2020-11-25 15:19:52 +01:00
} else {
2020-10-21 08:40:05 +02:00
$client->service()->updatePaidToDate($_credit_totals)->save();
2020-11-25 15:19:52 +01:00
}
2020-10-21 01:47:12 +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;
$payment->save();
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) {
$payment->number = $payment->client->getNextPaymentNumber($payment->client);
}
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'));
$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 05:31:30 +02:00
$invoice = Invoice::whereId($paid_invoice['invoice_id'])->first();
if ($invoice) {
2020-06-06 03:07:31 +02:00
$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();
2020-01-07 10:35:55 +01:00
$payment->credits()->saveMany($credits);
//todo optimize into a single query
foreach ($data['credits'] as $paid_credit) {
2020-11-25 10:21:26 +01:00
$credit = Credit::withTrashed()->find($this->decodePrimaryKey($paid_credit['credit_id']));
2020-01-07 10:35:55 +01:00
if ($credit) {
ApplyCreditPayment::dispatchNow($credit, $payment, $paid_credit['amount'], $credit->company);
}
2020-01-07 10:35:55 +01:00
}
}
if ( ! $is_existing_payment && ! $this->import_mode ) {
event( new PaymentWasCreated( $payment, $payment->company, Ninja::eventVars() ) );
}
2021-01-20 11:59:24 +01: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 08:33:04 +02: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 11:10:49 +01:00
* @param $data
* @param $payment
* @return
*/
private function processExchangeRates($data, $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;
}
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
2020-11-25 10:21:26 +01:00
event(new PaymentWasDeleted($payment, $payment->company, Ninja::eventVars()));
return $payment;
//return parent::delete($payment);
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
}
}