1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00
invoiceninja/app/Models/Payment.php

165 lines
4.4 KiB
PHP
Raw Normal View History

<?php
2019-05-11 05:32:07 +02:00
/**
* Invoice Ninja (https://invoiceninja.com)
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2019. Invoice Ninja LLC (https://invoiceninja.com)
*
* @license https://opensource.org/licenses/AAL
*/
namespace App\Models;
use App\Models\BaseModel;
2019-10-04 00:06:38 +02:00
use App\Models\DateFormat;
2019-05-03 09:57:55 +02:00
use App\Models\Filterable;
use App\Models\Paymentable;
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;
use App\Utils\Traits\MakesHash;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
class Payment extends BaseModel
{
use MakesHash;
2019-05-03 09:57:55 +02:00
use Filterable;
2019-10-04 00:06:38 +02:00
use MakesDates;
use SoftDeletes;
2019-05-13 08:18:46 +02:00
const STATUS_PENDING = 1;
const STATUS_VOIDED = 2;
const STATUS_FAILED = 3;
const STATUS_COMPLETED = 4;
const STATUS_PARTIALLY_REFUNDED = 5;
const STATUS_REFUNDED = 6;
const TYPE_CREDIT_CARD = 1;
const TYPE_BANK_TRANSFER = 2;
const TYPE_PAYPAL = 3;
const TYPE_CRYPTO = 4;
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';
protected $fillable = [
'client_id',
'type_id',
'amount',
'date',
'transaction_reference',
'number'
];
protected $casts = [
'settings' => 'object',
'updated_at' => 'timestamp',
'created_at' => 'timestamp',
'deleted_at' => 'timestamp',
'is_deleted' => 'bool',
];
2019-05-03 09:57:55 +02:00
public function client()
{
return $this->belongsTo(Client::class)->withTrashed();
2019-05-03 09:57:55 +02:00
}
2019-05-03 09:57:55 +02:00
public function company()
{
2019-05-03 09:57:55 +02:00
return $this->belongsTo(Company::class);
}
2019-05-03 09:57:55 +02:00
public function user()
{
return $this->belongsTo(User::class)->withTrashed();
}
2019-04-28 07:31:32 +02:00
public function assigned_user()
{
return $this->belongsTo(User::class, 'assigned_user_id', 'id')->withTrashed();
}
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()
{
return $this->morphedByMany(Invoice::class, 'paymentable')->withPivot('amount');
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
public function type()
2019-08-16 07:20:28 +02:00
{
return $this->belongsTo(PaymentType::class);
}
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()
{
if (!$this->date) {
2019-10-08 01:05:41 +02:00
return '';
}
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'));
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) {
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>';
break;
case self::STATUS_VOIDED:
2019-08-20 00:29:19 +02:00
return '<h6><span class="badge badge-warning">'.ctrans('texts.payment_status_2').'</span></h6>';
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>';
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>';
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;
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>';
break;
2019-08-16 07:20:28 +02:00
default:
# code...
break;
}
}
public function resolveRouteBinding($value)
{
return $this
->withTrashed()
->where('id', $this->decodePrimaryKey($value))->firstOrFail();
}
}