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

193 lines
5.6 KiB
PHP
Raw Normal View History

2020-07-01 06:37:05 +02:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
2020-07-01 06:37:05 +02:00
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
*
* @license https://opensource.org/licenses/AAL
*/
namespace App\Repositories\Migration;
use App\Events\Payment\PaymentWasCreated;
use App\Factory\CreditFactory;
use App\Jobs\Credit\ApplyCreditPayment;
use App\Libraries\Currency\Conversion\CurrencyApi;
use App\Models\Activity;
use App\Models\Client;
use App\Models\Credit;
use App\Models\Invoice;
use App\Models\Payment;
use App\Repositories\ActivityRepository;
use App\Repositories\BaseRepository;
use App\Repositories\CreditRepository;
2020-07-17 11:47:17 +02:00
use App\Utils\Ninja;
2020-07-01 06:37:05 +02:00
use App\Utils\Traits\MakesHash;
use App\Utils\Traits\SavesDocuments;
use Illuminate\Http\Request;
use Illuminate\Support\Carbon;
/**
* PaymentMigrationRepository.
2020-07-01 06:37:05 +02:00
*/
class PaymentMigrationRepository extends BaseRepository
{
use MakesHash;
use SavesDocuments;
protected $credit_repo;
protected $activity_repo;
public function __construct(CreditRepository $credit_repo)
{
$this->credit_repo = $credit_repo;
$this->activity_repo = new ActivityRepository();
}
public function getClassName()
{
return Payment::class;
}
/**
* 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);
}
return $payment;
}
/**
* Handles a positive payment request.
2020-07-01 06:37:05 +02:00
* @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
{
//check currencies here and fill the exchange rate data if necessary
if (! $payment->id) {
2020-07-01 06:37:05 +02:00
$this->processExchangeRates($data, $payment);
/*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-07-01 06:37:05 +02:00
$data['amount'] = array_sum(array_column($data['invoices'], 'amount'));
}
2020-07-01 06:37:05 +02:00
}
}
/*Fill the payment*/
$payment->fill($data);
$payment->status_id = Payment::STATUS_COMPLETED;
$payment->save();
/*Ensure payment number generated*/
if (! $payment->number || strlen($payment->number) == 0) {
2020-07-01 06:37:05 +02:00
$payment->number = $payment->client->getNextPaymentNumber($payment->client);
}
$invoice_totals = 0;
$credit_totals = 0;
2020-10-18 09:46:10 +02:00
$invoices = false;
2020-07-01 06:37:05 +02:00
/*Iterate through invoices and apply payments*/
if (array_key_exists('invoices', $data) && is_array($data['invoices']) && count($data['invoices']) > 0) {
$invoice_totals = array_sum(array_column($data['invoices'], 'amount'));
2020-07-01 06:37:05 +02:00
$invoices = Invoice::whereIn('id', array_column($data['invoices'], 'invoice_id'))->get();
$payment->invoices()->saveMany($invoices);
$payment->invoices->each(function ($inv) use ($invoice_totals) {
2020-07-01 06:37:05 +02:00
$inv->pivot->amount = $invoice_totals;
$inv->pivot->save();
});
}
2020-07-01 06:37:05 +02:00
$fields = new \stdClass;
$fields->payment_id = $payment->id;
$fields->user_id = $payment->user_id;
$fields->company_id = $payment->company_id;
$fields->activity_type_id = Activity::CREATE_PAYMENT;
foreach ($payment->invoices as $invoice) {
2020-07-01 06:37:05 +02:00
$fields->invoice_id = $invoice->id;
2020-07-17 11:47:17 +02:00
$this->activity_repo->save($fields, $invoice, Ninja::eventVars());
2020-07-01 06:37:05 +02:00
}
2020-10-18 09:46:10 +02:00
if ($invoices && count($invoices) == 0) {
2020-07-17 23:52:35 +02:00
$this->activity_repo->save($fields, $payment, Ninja::eventVars());
2020-07-01 06:37:05 +02:00
}
if ($invoice_totals == $payment->amount) {
2020-07-01 06:37:05 +02:00
$payment->applied += $payment->amount;
} elseif ($invoice_totals < $payment->amount) {
$payment->applied += $invoice_totals;
}
$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-07-01 06:37:05 +02:00
*/
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) {
$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;
}
public function delete($payment)
{
//cannot double delete a payment
if ($payment->is_deleted) {
2020-07-01 06:37:05 +02:00
return;
}
2020-07-01 06:37:05 +02:00
$payment->service()->deletePayment();
return parent::delete($payment);
}
public function restore($payment)
{
//we cannot restore a deleted payment.
if ($payment->is_deleted) {
2020-07-01 06:37:05 +02:00
return;
}
2020-07-01 06:37:05 +02:00
return parent::restore($payment);
}
}