2018-10-15 14:40:34 +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
|
|
|
|
*
|
2020-01-07 01:13:47 +01:00
|
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
2018-10-15 14:40:34 +02:00
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
2020-02-19 21:44:12 +01:00
|
|
|
use App\Events\Payment\PaymentWasVoided;
|
2019-08-19 08:50:33 +02:00
|
|
|
use App\Models\BaseModel;
|
2020-01-29 03:03:47 +01:00
|
|
|
use App\Models\Credit;
|
2019-10-04 00:06:38 +02:00
|
|
|
use App\Models\DateFormat;
|
2019-05-03 09:57:55 +02:00
|
|
|
use App\Models\Filterable;
|
2019-12-16 12:34:38 +01:00
|
|
|
use App\Models\Paymentable;
|
2020-02-20 22:05:01 +01:00
|
|
|
use App\Services\Ledger\LedgerService;
|
2020-02-22 03:25:49 +01:00
|
|
|
use App\Services\Payment\PaymentService;
|
2020-07-08 14:02:16 +02:00
|
|
|
use App\Utils\Ninja;
|
2019-10-03 23:51:54 +02:00
|
|
|
use App\Utils\Number;
|
2019-10-04 00:06:38 +02:00
|
|
|
use App\Utils\Traits\MakesDates;
|
2018-11-20 05:36:56 +01:00
|
|
|
use App\Utils\Traits\MakesHash;
|
2020-01-29 03:03:47 +01:00
|
|
|
use App\Utils\Traits\Payment\Refundable;
|
2018-10-15 14:40:34 +02:00
|
|
|
use Illuminate\Database\Eloquent\Model;
|
2019-11-18 11:46:01 +01:00
|
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
2018-10-15 14:40:34 +02:00
|
|
|
|
2018-11-02 11:54:46 +01:00
|
|
|
class Payment extends BaseModel
|
2018-10-15 14:40:34 +02:00
|
|
|
{
|
2018-11-20 05:36:56 +01:00
|
|
|
use MakesHash;
|
2019-05-03 09:57:55 +02:00
|
|
|
use Filterable;
|
2019-10-04 00:06:38 +02:00
|
|
|
use MakesDates;
|
2019-11-18 11:46:01 +01:00
|
|
|
use SoftDeletes;
|
2020-01-29 03:03:47 +01:00
|
|
|
use Refundable;
|
|
|
|
|
2019-05-13 08:18:46 +02:00
|
|
|
const STATUS_PENDING = 1;
|
2020-07-06 13:22:36 +02:00
|
|
|
const STATUS_CANCELLED = 2;
|
2019-05-13 08:18:46 +02:00
|
|
|
const STATUS_FAILED = 3;
|
|
|
|
const STATUS_COMPLETED = 4;
|
|
|
|
const STATUS_PARTIALLY_REFUNDED = 5;
|
|
|
|
const STATUS_REFUNDED = 6;
|
|
|
|
|
2019-08-19 08:50:33 +02:00
|
|
|
const TYPE_CREDIT_CARD = 1;
|
|
|
|
const TYPE_BANK_TRANSFER = 2;
|
|
|
|
const TYPE_PAYPAL = 3;
|
2019-11-27 10:47:59 +01:00
|
|
|
const TYPE_CRYPTO = 4;
|
2019-08-19 08:50:33 +02:00
|
|
|
const TYPE_DWOLLA = 5;
|
|
|
|
const TYPE_CUSTOM1 = 6;
|
|
|
|
const TYPE_ALIPAY = 7;
|
|
|
|
const TYPE_SOFORT = 8;
|
|
|
|
const TYPE_SEPA = 9;
|
|
|
|
const TYPE_GOCARDLESS = 10;
|
|
|
|
const TYPE_APPLE_PAY = 11;
|
|
|
|
const TYPE_CUSTOM2 = 12;
|
|
|
|
const TYPE_CUSTOM3 = 13;
|
|
|
|
const TYPE_TOKEN = 'token';
|
|
|
|
|
2019-06-26 06:04:10 +02:00
|
|
|
protected $fillable = [
|
2020-06-26 00:29:24 +02:00
|
|
|
'assigned_user_id',
|
2019-12-30 22:59:12 +01:00
|
|
|
'client_id',
|
2019-12-16 12:34:38 +01:00
|
|
|
'type_id',
|
2019-06-26 06:04:10 +02:00
|
|
|
'amount',
|
2019-12-16 12:34:38 +01:00
|
|
|
'date',
|
2019-12-17 11:50:45 +01:00
|
|
|
'transaction_reference',
|
2020-02-03 11:33:07 +01:00
|
|
|
'number',
|
2020-07-22 09:53:14 +02:00
|
|
|
'is_manual',
|
|
|
|
'private_notes',
|
2020-11-08 22:21:52 +01:00
|
|
|
'custom_value1',
|
|
|
|
'custom_value2',
|
|
|
|
'custom_value3',
|
|
|
|
'custom_value4',
|
2019-12-30 22:59:12 +01:00
|
|
|
];
|
2018-11-20 05:36:56 +01:00
|
|
|
|
2019-09-02 07:08:26 +02:00
|
|
|
protected $casts = [
|
2020-03-06 12:19:09 +01:00
|
|
|
'exchange_rate' => 'float',
|
2019-09-26 00:27:26 +02:00
|
|
|
'settings' => 'object',
|
|
|
|
'updated_at' => 'timestamp',
|
|
|
|
'created_at' => 'timestamp',
|
|
|
|
'deleted_at' => 'timestamp',
|
2019-11-19 22:06:48 +01:00
|
|
|
'is_deleted' => 'bool',
|
2020-09-01 01:28:37 +02:00
|
|
|
'meta' => 'object',
|
2019-09-02 07:08:26 +02:00
|
|
|
];
|
|
|
|
|
2020-02-06 10:35:51 +01:00
|
|
|
protected $with = [
|
|
|
|
'paymentables',
|
|
|
|
];
|
|
|
|
|
2020-07-23 05:55:11 +02:00
|
|
|
protected $touches = [];
|
2020-07-16 13:01:39 +02:00
|
|
|
|
2020-05-06 13:49:42 +02:00
|
|
|
public function getEntityType()
|
|
|
|
{
|
2020-09-06 11:38:10 +02:00
|
|
|
return self::class;
|
2020-05-06 13:49:42 +02:00
|
|
|
}
|
|
|
|
|
2019-05-03 09:57:55 +02:00
|
|
|
public function client()
|
|
|
|
{
|
2019-11-25 10:38:55 +01:00
|
|
|
return $this->belongsTo(Client::class)->withTrashed();
|
2019-05-03 09:57:55 +02:00
|
|
|
}
|
2018-11-20 05:36:56 +01:00
|
|
|
|
2020-06-27 02:05:31 +02:00
|
|
|
public function company_gateway()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(CompanyGateway::class)->withTrashed();
|
|
|
|
}
|
|
|
|
|
2019-05-03 09:57:55 +02:00
|
|
|
public function company()
|
2018-11-20 05:36:56 +01:00
|
|
|
{
|
2019-05-03 09:57:55 +02:00
|
|
|
return $this->belongsTo(Company::class);
|
2018-11-20 05:36:56 +01:00
|
|
|
}
|
|
|
|
|
2020-05-19 00:22:18 +02:00
|
|
|
public function contact()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(ClientContact::class);
|
|
|
|
}
|
|
|
|
|
2019-05-03 09:57:55 +02:00
|
|
|
public function user()
|
2018-11-20 05:36:56 +01:00
|
|
|
{
|
2019-11-25 10:38:55 +01:00
|
|
|
return $this->belongsTo(User::class)->withTrashed();
|
2018-11-20 05:36:56 +01:00
|
|
|
}
|
2019-04-28 07:31:32 +02:00
|
|
|
|
2019-11-05 11:16:38 +01:00
|
|
|
public function assigned_user()
|
|
|
|
{
|
2019-12-30 22:59:12 +01:00
|
|
|
return $this->belongsTo(User::class, 'assigned_user_id', 'id')->withTrashed();
|
2019-11-05 11:16:38 +01:00
|
|
|
}
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2019-04-28 07:31:32 +02:00
|
|
|
public function documents()
|
|
|
|
{
|
|
|
|
return $this->morphMany(Document::class, 'documentable');
|
|
|
|
}
|
2019-05-13 08:18:46 +02:00
|
|
|
|
|
|
|
public function invoices()
|
|
|
|
{
|
2020-03-21 06:37:30 +01:00
|
|
|
return $this->morphedByMany(Invoice::class, 'paymentable')->withPivot('amount', 'refunded')->withTimestamps();
|
2020-01-07 01:13:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function credits()
|
|
|
|
{
|
2020-03-21 06:37:30 +01:00
|
|
|
return $this->morphedByMany(Credit::class, 'paymentable')->withPivot('amount', 'refunded')->withTimestamps();
|
2019-05-13 08:18:46 +02:00
|
|
|
}
|
2019-05-15 07:03:18 +02:00
|
|
|
|
|
|
|
public function company_ledger()
|
|
|
|
{
|
|
|
|
return $this->morphMany(CompanyLedger::class, 'company_ledgerable');
|
|
|
|
}
|
2019-08-16 07:20:28 +02:00
|
|
|
|
2019-08-19 08:50:33 +02:00
|
|
|
public function type()
|
2019-08-16 07:20:28 +02:00
|
|
|
{
|
2019-12-18 11:49:28 +01:00
|
|
|
return $this->belongsTo(PaymentType::class);
|
2019-12-16 12:34:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function paymentables()
|
|
|
|
{
|
|
|
|
return $this->hasMany(Paymentable::class);
|
2019-08-16 07:20:28 +02:00
|
|
|
}
|
|
|
|
|
2019-10-03 23:51:54 +02:00
|
|
|
public function formattedAmount()
|
|
|
|
{
|
|
|
|
return Number::formatMoney($this->amount, $this->client);
|
|
|
|
}
|
|
|
|
|
2019-10-04 00:06:38 +02:00
|
|
|
public function clientPaymentDate()
|
|
|
|
{
|
2020-09-06 11:38:10 +02:00
|
|
|
if (! $this->date) {
|
2019-10-08 01:05:41 +02:00
|
|
|
return '';
|
2019-12-30 22:59:12 +01:00
|
|
|
}
|
2019-10-08 01:05:41 +02:00
|
|
|
|
2019-10-04 00:06:38 +02:00
|
|
|
$date_format = DateFormat::find($this->client->getSetting('date_format_id'));
|
|
|
|
|
2019-12-16 12:34:38 +01:00
|
|
|
return $this->createClientDate($this->date, $this->client->timezone()->name)->format($date_format->format);
|
2019-10-04 00:06:38 +02:00
|
|
|
}
|
|
|
|
|
2019-08-16 07:20:28 +02:00
|
|
|
public static function badgeForStatus(int $status)
|
|
|
|
{
|
|
|
|
switch ($status) {
|
2019-08-19 08:50:33 +02:00
|
|
|
case self::STATUS_PENDING:
|
2019-08-20 00:29:19 +02:00
|
|
|
return '<h6><span class="badge badge-secondary">'.ctrans('texts.payment_status_1').'</span></h6>';
|
2019-08-19 08:50:33 +02:00
|
|
|
break;
|
2020-07-06 13:22:36 +02:00
|
|
|
case self::STATUS_CANCELLED:
|
2019-08-20 00:29:19 +02:00
|
|
|
return '<h6><span class="badge badge-warning">'.ctrans('texts.payment_status_2').'</span></h6>';
|
2019-08-19 08:50:33 +02:00
|
|
|
break;
|
|
|
|
case self::STATUS_FAILED:
|
2019-08-20 00:29:19 +02:00
|
|
|
return '<h6><span class="badge badge-danger">'.ctrans('texts.payment_status_3').'</span></h6>';
|
2019-08-19 08:50:33 +02:00
|
|
|
break;
|
|
|
|
case self::STATUS_COMPLETED:
|
2019-08-20 00:29:19 +02:00
|
|
|
return '<h6><span class="badge badge-info">'.ctrans('texts.payment_status_4').'</span></h6>';
|
2019-08-19 08:50:33 +02:00
|
|
|
break;
|
|
|
|
case self::STATUS_PARTIALLY_REFUNDED:
|
2019-08-20 00:29:19 +02:00
|
|
|
return '<h6><span class="badge badge-success">'.ctrans('texts.payment_status_5').'</span></h6>';
|
2019-08-16 07:20:28 +02:00
|
|
|
break;
|
2019-08-19 08:50:33 +02:00
|
|
|
case self::STATUS_REFUNDED:
|
2019-08-20 00:29:19 +02:00
|
|
|
return '<h6><span class="badge badge-primary">'.ctrans('texts.payment_status_6').'</span></h6>';
|
2019-12-30 22:59:12 +01:00
|
|
|
break;
|
2019-08-16 07:20:28 +02:00
|
|
|
default:
|
2020-09-06 11:38:10 +02:00
|
|
|
// code...
|
2019-08-16 07:20:28 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2019-11-12 05:41:02 +01:00
|
|
|
|
2020-02-20 22:05:01 +01:00
|
|
|
public function ledger()
|
|
|
|
{
|
|
|
|
return new LedgerService($this);
|
|
|
|
}
|
|
|
|
|
2020-02-22 03:25:49 +01:00
|
|
|
public function service()
|
|
|
|
{
|
|
|
|
return new PaymentService($this);
|
|
|
|
}
|
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
public function resolveRouteBinding($value, $field = NULL)
|
2019-11-12 05:41:02 +01:00
|
|
|
{
|
|
|
|
return $this
|
2019-11-18 11:46:01 +01:00
|
|
|
->withTrashed()
|
2019-11-12 05:41:02 +01:00
|
|
|
->where('id', $this->decodePrimaryKey($value))->firstOrFail();
|
|
|
|
}
|
2020-01-27 08:49:04 +01:00
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
public function refund(array $data) :self
|
2020-01-27 08:49:04 +01:00
|
|
|
{
|
2020-06-01 05:16:06 +02:00
|
|
|
return $this->service()->refundPayment($data);
|
|
|
|
|
|
|
|
//return $this->processRefund($data);
|
2020-01-27 08:49:04 +01:00
|
|
|
}
|
2020-02-19 21:44:12 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function getCompletedAmount() :float
|
|
|
|
{
|
|
|
|
return $this->amount - $this->refunded;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function recordRefund($amount = null)
|
|
|
|
{
|
|
|
|
//do i need $this->isRefunded() here?
|
|
|
|
if ($this->isVoided()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
//if no refund specified
|
|
|
|
if (! $amount) {
|
|
|
|
$amount = $this->amount;
|
|
|
|
}
|
|
|
|
|
|
|
|
$new_refund = min($this->amount, $this->refunded + $amount);
|
|
|
|
$refund_change = $new_refund - $this->refunded;
|
|
|
|
|
|
|
|
if ($refund_change) {
|
|
|
|
$this->refunded = $new_refund;
|
|
|
|
$this->status_id = $this->refunded == $this->amount ? self::STATUS_REFUNDED : self::STATUS_PARTIALLY_REFUNDED;
|
|
|
|
$this->save();
|
|
|
|
|
2020-07-08 14:02:16 +02:00
|
|
|
event(new PaymentWasRefunded($this, $refund_change, $this->company, Ninja::eventVars()));
|
2020-02-19 21:44:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function isVoided()
|
|
|
|
{
|
2020-07-06 13:22:36 +02:00
|
|
|
return $this->status_id == self::STATUS_CANCELLED;
|
2020-02-19 21:44:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function isPartiallyRefunded()
|
|
|
|
{
|
|
|
|
return $this->status_id == self::STATUS_PARTIALLY_REFUNDED;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function isRefunded()
|
|
|
|
{
|
|
|
|
return $this->status_id == self::STATUS_REFUNDED;
|
|
|
|
}
|
|
|
|
|
2020-06-28 05:05:58 +02:00
|
|
|
public function setStatus($status)
|
|
|
|
{
|
|
|
|
$this->status_id = $status;
|
|
|
|
$this->save();
|
|
|
|
}
|
|
|
|
|
2020-02-19 21:44:12 +01:00
|
|
|
public function markVoided()
|
|
|
|
{
|
|
|
|
if ($this->isVoided() || $this->isPartiallyRefunded() || $this->isRefunded()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->refunded = $this->amount;
|
2020-07-06 13:22:36 +02:00
|
|
|
$this->status_id = self::STATUS_CANCELLED;
|
2020-02-19 21:44:12 +01:00
|
|
|
$this->save();
|
|
|
|
|
2020-07-08 14:02:16 +02:00
|
|
|
event(new PaymentWasVoided($this, $this->company, Ninja::eventVars()));
|
2020-02-19 21:44:12 +01:00
|
|
|
}
|
2020-11-09 03:39:42 +01:00
|
|
|
|
|
|
|
public function getLink()
|
|
|
|
{
|
|
|
|
return route('client.payments.show', $this->hashed_id);
|
|
|
|
}
|
|
|
|
|
2018-10-15 14:40:34 +02:00
|
|
|
}
|