1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 17:01:33 +02:00
invoiceninja/app/Models/Expense.php

130 lines
2.7 KiB
PHP
Raw Normal View History

<?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
*/
namespace App\Models;
use Illuminate\Database\Eloquent\SoftDeletes;
class Expense extends BaseModel
{
use SoftDeletes;
use Filterable;
protected $fillable = [
'client_id',
'assigned_user_id',
'vendor_id',
'invoice_id',
'currency_id',
2020-10-13 06:14:13 +02:00
'date',
'invoice_currency_id',
'amount',
'foreign_amount',
'exchange_rate',
'private_notes',
'public_notes',
'bank_id',
'transaction_id',
'category_id',
'tax_rate1',
'tax_name1',
'tax_rate2',
'tax_name2',
'tax_rate3',
'tax_name3',
'payment_date',
'payment_type_id',
'project_id',
'transaction_reference',
'invoice_documents',
'should_be_invoiced',
'custom_value1',
'custom_value2',
'custom_value3',
'custom_value4',
2020-10-29 10:40:13 +01:00
'number',
'tax_amount1',
'tax_amount2',
'tax_amount3',
'uses_inclusive_taxes',
'calculate_tax_by_amount',
];
protected $casts = [
'is_deleted' => 'boolean',
'updated_at' => 'timestamp',
'created_at' => 'timestamp',
'deleted_at' => 'timestamp',
];
2020-07-23 05:55:11 +02:00
protected $touches = [];
public function getEntityType()
{
return self::class;
}
2019-04-28 07:31:32 +02:00
public function documents()
{
return $this->morphMany(Document::class, 'documentable');
}
2021-01-04 12:22:48 +01:00
public function user()
{
return $this->belongsTo(User::class)->withTrashed();
}
public function assigned_user()
{
return $this->belongsTo(User::class, 'assigned_user_id', 'id')->withTrashed();
}
2020-07-16 23:50:02 +02:00
public function company()
{
return $this->belongsTo(Company::class);
}
2020-12-07 11:43:21 +01:00
public function vendor()
{
return $this->belongsTo(Vendor::class);
}
2021-05-15 04:19:36 +02:00
public function client()
{
return $this->belongsTo(Client::class);
}
2022-04-06 02:38:01 +02:00
public function translate_entity()
{
return ctrans('texts.expense');
}
2022-04-08 09:03:03 +02:00
public function currency()
{
return $this->belongsTo(Currency::class);
}
public function category()
{
2022-05-12 02:57:58 +02:00
return $this->belongsTo(ExpenseCategory::class)->withTrashed();
2022-04-08 09:03:03 +02:00
}
public function payment_type()
{
return $this->belongsTo(PaymentType::class);
}
public function project()
{
return $this->belongsTo(Project::class);
}
}