1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 08:51:34 +02:00
invoiceninja/app/Models/SystemLog.php
David Bomba 5fafbac36f
Tax Rates (#3026)
* Insert generic for client country if not set

* Invoice fixes

* fixes

* Schema changes

* Refactor Schema and implement fixes for testS

* Use Dispatcher for system logs

* Add TaxRateController

* Update OpenAPI definitions for Tax Rates
2019-10-29 13:55:26 +11:00

48 lines
1010 B
PHP

<?php
/**
* 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 Illuminate\Database\Eloquent\Model;
class SystemLog extends Model
{
/* Category IDs */
const CATEGORY_GATEWAY_RESPONSE = 1;
/* Event IDs*/
const EVENT_PAYMENT_RECONCILIATION_FAILURE = 10;
const EVENT_PAYMENT_RECONCILIATION_SUCCESS = 11;
const EVENT_GATEWAY_SUCCESS = 21;
const EVENT_GATEWAY_FAILURE = 22;
const EVENT_GATEWAY_ERROR = 23;
/*Type IDs*/
const TYPE_PAYPAL = 300;
const TYPE_STRIPE = 301;
const TYPE_LEDGER = 302;
protected $fillable = [
'client_id',
'company_id',
'user_id',
'log',
'category_id',
'event_id',
'type_id',
];
protected $casts = [
'log' => 'array'
];
}