2022-03-09 08:40:45 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2024-04-12 06:15:41 +02:00
|
|
|
* @copyright Copyright (c) 2024. Invoice Ninja LLC (https://invoiceninja.com)
|
2022-03-09 08:40:45 +01:00
|
|
|
*
|
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class Bank.
|
2023-03-08 08:33:42 +01:00
|
|
|
*
|
|
|
|
* @property int $id
|
|
|
|
* @property int $client_id
|
|
|
|
* @property int $invoice_id
|
|
|
|
* @property int $payment_id
|
|
|
|
* @property int $credit_id
|
|
|
|
* @property string $client_balance
|
|
|
|
* @property string $client_paid_to_date
|
|
|
|
* @property string $client_credit_balance
|
|
|
|
* @property string $invoice_balance
|
|
|
|
* @property string $invoice_amount
|
|
|
|
* @property string $invoice_partial
|
|
|
|
* @property string $invoice_paid_to_date
|
|
|
|
* @property int|null $invoice_status
|
|
|
|
* @property string $payment_amount
|
|
|
|
* @property string $payment_applied
|
|
|
|
* @property string $payment_refunded
|
|
|
|
* @property int|null $payment_status
|
|
|
|
* @property array|null $paymentables
|
|
|
|
* @property int $event_id
|
|
|
|
* @property int $timestamp
|
|
|
|
* @property array|null $payment_request
|
|
|
|
* @property array|null $metadata
|
|
|
|
* @property string $credit_balance
|
|
|
|
* @property string $credit_amount
|
|
|
|
* @property int|null $credit_status
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|StaticModel company()
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|StaticModel exclude($columns)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|TransactionEvent newModelQuery()
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|TransactionEvent newQuery()
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|TransactionEvent query()
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|TransactionEvent whereClientBalance($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|TransactionEvent whereClientCreditBalance($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|TransactionEvent whereClientId($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|TransactionEvent whereClientPaidToDate($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|TransactionEvent whereCreditAmount($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|TransactionEvent whereCreditBalance($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|TransactionEvent whereCreditId($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|TransactionEvent whereCreditStatus($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|TransactionEvent whereEventId($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|TransactionEvent whereId($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|TransactionEvent whereInvoiceAmount($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|TransactionEvent whereInvoiceBalance($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|TransactionEvent whereInvoiceId($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|TransactionEvent whereInvoicePaidToDate($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|TransactionEvent whereInvoicePartial($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|TransactionEvent whereInvoiceStatus($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|TransactionEvent whereMetadata($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|TransactionEvent wherePaymentAmount($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|TransactionEvent wherePaymentApplied($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|TransactionEvent wherePaymentId($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|TransactionEvent wherePaymentRefunded($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|TransactionEvent wherePaymentRequest($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|TransactionEvent wherePaymentStatus($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|TransactionEvent wherePaymentables($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|TransactionEvent whereTimestamp($value)
|
|
|
|
* @mixin \Eloquent
|
2022-03-09 08:40:45 +01:00
|
|
|
*/
|
|
|
|
class TransactionEvent extends StaticModel
|
|
|
|
{
|
|
|
|
public $timestamps = false;
|
|
|
|
|
|
|
|
public $guarded = ['id'];
|
|
|
|
|
|
|
|
public $casts = [
|
2022-03-10 01:32:04 +01:00
|
|
|
'metadata' => 'array',
|
2022-03-09 08:40:45 +01:00
|
|
|
'payment_request' => 'array',
|
|
|
|
'paymentables' => 'array',
|
|
|
|
];
|
|
|
|
|
2022-03-09 10:32:46 +01:00
|
|
|
public const INVOICE_MARK_PAID = 1;
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2022-03-09 10:32:46 +01:00
|
|
|
public const INVOICE_UPDATED = 2;
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2022-03-09 10:32:46 +01:00
|
|
|
public const INVOICE_DELETED = 3;
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2022-03-09 10:32:46 +01:00
|
|
|
public const INVOICE_PAYMENT_APPLIED = 4;
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2022-03-09 10:32:46 +01:00
|
|
|
public const INVOICE_CANCELLED = 5;
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2022-03-09 10:32:46 +01:00
|
|
|
public const INVOICE_FEE_APPLIED = 6;
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2022-03-10 02:17:05 +01:00
|
|
|
public const INVOICE_REVERSED = 7;
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2022-03-09 10:32:46 +01:00
|
|
|
public const PAYMENT_MADE = 100;
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2022-03-09 10:32:46 +01:00
|
|
|
public const PAYMENT_APPLIED = 101;
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2022-03-09 10:32:46 +01:00
|
|
|
public const PAYMENT_REFUND = 102;
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2022-03-09 10:32:46 +01:00
|
|
|
public const PAYMENT_FAILED = 103;
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2022-03-10 01:32:04 +01:00
|
|
|
public const GATEWAY_PAYMENT_MADE = 104;
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2022-03-10 01:32:04 +01:00
|
|
|
public const PAYMENT_DELETED = 105;
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2022-03-10 01:32:04 +01:00
|
|
|
public const CLIENT_STATUS = 200;
|
2022-03-09 08:40:45 +01:00
|
|
|
}
|