mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-06 03:02:34 +01:00
107 lines
2.7 KiB
PHP
107 lines
2.7 KiB
PHP
<?php
|
|
/**
|
|
* payment Ninja (https://paymentninja.com).
|
|
*
|
|
* @link https://github.com/paymentninja/paymentninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2021. payment Ninja LLC (https://paymentninja.com)
|
|
*
|
|
* @license https://opensource.org/licenses/AAL
|
|
*/
|
|
|
|
namespace App\Services\Payment;
|
|
|
|
use App\Factory\PaymentFactory;
|
|
use App\Models\Invoice;
|
|
use App\Models\Payment;
|
|
use App\Models\PaymentHash;
|
|
|
|
class PaymentService
|
|
{
|
|
private $payment;
|
|
|
|
public function __construct($payment)
|
|
{
|
|
$this->payment = $payment;
|
|
}
|
|
|
|
public function manualPayment($invoice) :?Payment
|
|
{
|
|
/* Create Payment */
|
|
$payment = PaymentFactory::create($invoice->company_id, $invoice->user_id);
|
|
|
|
$payment->amount = $invoice->balance;
|
|
$payment->status_id = Payment::STATUS_COMPLETED;
|
|
$payment->client_id = $invoice->client_id;
|
|
$payment->transaction_reference = ctrans('texts.manual_entry');
|
|
$payment->currency_id = $invoice->client->getSetting('currency_id');
|
|
/* Create a payment relationship to the invoice entity */
|
|
$payment->save();
|
|
|
|
$payment->invoices()->attach($invoice->id, [
|
|
'amount' => $payment->amount,
|
|
]);
|
|
|
|
return $payment;
|
|
}
|
|
|
|
public function sendEmail($contact = null)
|
|
{
|
|
return (new SendEmail($this->payment, $contact))->run();
|
|
}
|
|
|
|
public function reversePayment()
|
|
{
|
|
$invoices = $this->payment->invoices()->get();
|
|
$client = $this->payment->client;
|
|
|
|
$invoices->each(function ($invoice) {
|
|
if ($invoice->pivot->amount > 0) {
|
|
$invoice->status_id = Invoice::STATUS_SENT;
|
|
$invoice->balance = $invoice->pivot->amount;
|
|
$invoice->save();
|
|
}
|
|
});
|
|
|
|
$this->payment
|
|
->ledger()
|
|
->updatePaymentBalance($this->payment->amount);
|
|
|
|
$client->service()
|
|
->updateBalance($this->payment->amount)
|
|
->updatePaidToDate($this->payment->amount * -1)
|
|
->save();
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function refundPayment(array $data) :?Payment
|
|
{
|
|
return ((new RefundPayment($this->payment, $data)))->run();
|
|
}
|
|
|
|
public function deletePayment() :?Payment
|
|
{
|
|
return (new DeletePayment($this->payment))->run();
|
|
}
|
|
|
|
public function updateInvoicePayment(PaymentHash $payment_hash) :?Payment
|
|
{
|
|
return ((new UpdateInvoicePayment($this->payment, $payment_hash)))->run();
|
|
}
|
|
|
|
public function applyNumber()
|
|
{
|
|
$this->payment = (new ApplyNumber($this->payment))->run();
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function save()
|
|
{
|
|
$this->payment->save();
|
|
|
|
return $this->payment->fresh();
|
|
}
|
|
}
|