1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 08:51:34 +02:00
invoiceninja/app/Models/Activity.php

244 lines
5.9 KiB
PHP
Raw Normal View History

2019-04-20 03:54:11 +02:00
<?php
2019-05-11 05:32:07 +02:00
/**
* Invoice Ninja (https://invoiceninja.com).
2019-05-11 05:32:07 +02:00
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2022-04-27 05:20:41 +02:00
* @copyright Copyright (c) 2022. Invoice Ninja LLC (https://invoiceninja.com)
2019-05-11 05:32:07 +02:00
*
2021-06-16 08:58:16 +02:00
* @license https://www.elastic.co/licensing/elastic-license
2019-05-11 05:32:07 +02:00
*/
2019-04-20 03:54:11 +02:00
namespace App\Models;
2020-08-12 02:01:27 +02:00
use App\Utils\Traits\MakesHash;
2019-04-20 03:54:11 +02:00
class Activity extends StaticModel
2019-04-20 03:54:11 +02:00
{
2020-08-12 02:01:27 +02:00
use MakesHash;
const CREATE_CLIENT = 1; //
const ARCHIVE_CLIENT = 2; //
const DELETE_CLIENT = 3; //
const CREATE_INVOICE = 4; //
const UPDATE_INVOICE = 5; //
const EMAIL_INVOICE = 6; //
const VIEW_INVOICE = 7; //
const ARCHIVE_INVOICE = 8; //
const DELETE_INVOICE = 9; //
const CREATE_PAYMENT = 10; //
const UPDATE_PAYMENT = 11; //
const ARCHIVE_PAYMENT = 12; //
const DELETE_PAYMENT = 13; //
const CREATE_CREDIT = 14; //
const UPDATE_CREDIT = 15; //
const ARCHIVE_CREDIT = 16; //
const DELETE_CREDIT = 17; //
const CREATE_QUOTE = 18; //
const UPDATE_QUOTE = 19; //
const EMAIL_QUOTE = 20; //
const VIEW_QUOTE = 21; //
const ARCHIVE_QUOTE = 22; //
const DELETE_QUOTE = 23; //
const RESTORE_QUOTE = 24; //
const RESTORE_INVOICE = 25; //
const RESTORE_CLIENT = 26; //
const RESTORE_PAYMENT = 27; //
const RESTORE_CREDIT = 28; //
const APPROVE_QUOTE = 29; //
2020-11-03 06:44:50 +01:00
const CREATE_VENDOR = 30; //
2020-11-03 11:04:15 +01:00
const ARCHIVE_VENDOR = 31;//
const DELETE_VENDOR = 32;//
const RESTORE_VENDOR = 33;//
const CREATE_EXPENSE = 34;//
const ARCHIVE_EXPENSE = 35;//
const DELETE_EXPENSE = 36;//
const RESTORE_EXPENSE = 37;//
const VOIDED_PAYMENT = 39; //
const REFUNDED_PAYMENT = 40; //
const FAILED_PAYMENT = 41;
2020-11-03 11:04:15 +01:00
const CREATE_TASK = 42; //
const UPDATE_TASK = 43; //
const ARCHIVE_TASK = 44; //
const DELETE_TASK = 45; //
const RESTORE_TASK = 46; //
const UPDATE_EXPENSE = 47;//
2021-01-14 04:44:52 +01:00
const CREATE_USER = 48;
const UPDATE_USER = 49;
const ARCHIVE_USER = 50;
const DELETE_USER = 51;
const RESTORE_USER = 52;
2022-05-27 10:25:32 +02:00
const MARK_SENT_INVOICE = 53; // not needed?
const PAID_INVOICE = 54; //
const EMAIL_INVOICE_FAILED = 57;
const REVERSED_INVOICE = 58; //
const CANCELLED_INVOICE = 59; //
const VIEW_CREDIT = 60; //
2020-11-03 11:04:15 +01:00
const UPDATE_CLIENT = 61; //
const UPDATE_VENDOR = 62; //
2020-08-12 04:02:21 +02:00
2020-11-09 03:39:42 +01:00
const INVOICE_REMINDER1_SENT = 63;
const INVOICE_REMINDER2_SENT = 64;
const INVOICE_REMINDER3_SENT = 65;
2020-11-09 06:00:15 +01:00
const INVOICE_REMINDER_ENDLESS_SENT = 66;
2020-11-09 03:39:42 +01:00
const CREATE_SUBSCRIPTION = 80;
const UPDATE_SUBSCRIPTION = 81;
const ARCHIVE_SUBSCRIPTION = 82;
const DELETE_SUBSCRIPTION = 83;
const RESTORE_SUBSCRIPTION = 84;
const CREATE_RECURRING_INVOICE = 100;
const UPDATE_RECURRING_INVOICE = 101;
const ARCHIVE_RECURRING_INVOICE = 102;
const DELETE_RECURRING_INVOICE = 103;
const RESTORE_RECURRING_INVOICE = 104;
2021-08-24 07:55:14 +02:00
const CREATE_RECURRING_QUOTE = 110;
const UPDATE_RECURRING_QUOTE = 111;
const ARCHIVE_RECURRING_QUOTE = 112;
const DELETE_RECURRING_QUOTE = 113;
const RESTORE_RECURRING_QUOTE = 114;
const CREATE_RECURRING_EXPENSE = 120;
const UPDATE_RECURRING_EXPENSE = 121;
const ARCHIVE_RECURRING_EXPENSE = 122;
const DELETE_RECURRING_EXPENSE = 123;
const RESTORE_RECURRING_EXPENSE = 124;
const CREATE_PURCHASE_ORDER = 130;
const UPDATE_PURCHASE_ORDER = 131;
const ARCHIVE_PURCHASE_ORDER = 132;
const DELETE_PURCHASE_ORDER = 133;
const RESTORE_PURCHASE_ORDER = 134;
const EMAIL_PURCHASE_ORDER = 135;
const VIEW_PURCHASE_ORDER = 136;
2022-06-15 08:27:21 +02:00
const ACCEPT_PURCHASE_ORDER = 137;
2019-09-17 12:27:48 +02:00
protected $casts = [
'is_system' => 'boolean',
'updated_at' => 'timestamp',
'created_at' => 'timestamp',
'deleted_at' => 'timestamp',
2019-09-17 12:27:48 +02:00
];
2019-04-20 14:09:40 +02:00
2021-05-30 10:03:31 +02:00
protected $appends = [
'hashed_id',
];
2021-10-08 06:00:17 +02:00
protected $with = [
'backup',
];
2021-05-30 10:03:31 +02:00
public function getHashedIdAttribute()
{
return $this->encodePrimaryKey($this->id);
}
public function getEntityType()
{
return self::class;
}
2019-04-21 14:24:26 +02:00
public function backup()
{
return $this->hasOne(Backup::class);
2019-04-21 14:24:26 +02:00
}
2019-04-22 01:15:07 +02:00
public function history()
{
return $this->hasOne(Backup::class);
}
2019-04-20 14:09:40 +02:00
/**
* @return mixed
*/
public function user()
{
return $this->belongsTo(User::class)->withTrashed();
}
/**
* @return mixed
*/
public function contact()
{
return $this->belongsTo(ClientContact::class)->withTrashed();
}
/**
* @return mixed
*/
public function client()
{
return $this->belongsTo(Client::class)->withTrashed();
}
/**
* @return mixed
*/
public function invoice()
{
return $this->belongsTo(Invoice::class)->withTrashed();
}
2022-05-27 10:25:32 +02:00
/**
* @return mixed
*/
public function recurring_invoice()
{
return $this->belongsTo(RecurringInvoice::class)->withTrashed();
}
2022-03-05 07:51:04 +01:00
public function credit()
{
return $this->belongsTo(Credit::class)->withTrashed();
}
2021-02-08 21:13:16 +01:00
/**
* @return mixed
*/
public function quote()
{
return $this->belongsTo(Quote::class)->withTrashed();
}
2019-04-20 14:09:40 +02:00
/**
* @return mixed
*/
public function payment()
{
return $this->belongsTo(Payment::class)->withTrashed();
}
2022-05-27 10:25:32 +02:00
public function expense()
{
return $this->belongsTo(Expense::class)->withTrashed();
}
public function task()
{
return $this->belongsTo(Task::class)->withTrashed();
}
2019-04-20 14:09:40 +02:00
2019-09-27 06:31:13 +02:00
public function company()
{
return $this->belongsTo(Company::class);
2019-09-27 06:31:13 +02:00
}
2020-08-12 02:01:27 +02:00
2020-11-25 15:19:52 +01:00
public function resolveRouteBinding($value, $field = null)
2020-08-12 02:01:27 +02:00
{
if (is_numeric($value)) {
throw new ModelNotFoundException("Record with value {$value} not found");
}
return $this
//->withTrashed()
->where('id', $this->decodePrimaryKey($value))->firstOrFail();
}
2019-04-20 03:54:11 +02:00
}