invoiceninja/app/Models/Expense.php

136 lines
2.8 KiB
PHP
Raw Permalink Normal View History

<?php
2019-05-11 13:32:07 +10:00
/**
* Invoice Ninja (https://invoiceninja.com).
2019-05-11 13:32:07 +10:00
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2022-04-27 13:20:41 +10:00
* @copyright Copyright (c) 2022. Invoice Ninja LLC (https://invoiceninja.com)
2019-05-11 13:32:07 +10:00
*
2021-06-16 16:58:16 +10:00
* @license https://www.elastic.co/licensing/elastic-license
2019-05-11 13:32:07 +10: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 15:14:13 +11: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 20:40:13 +11:00
'number',
'tax_amount1',
'tax_amount2',
'tax_amount3',
'uses_inclusive_taxes',
'calculate_tax_by_amount',
'purchase_order_id',
];
protected $casts = [
'is_deleted' => 'boolean',
'updated_at' => 'timestamp',
'created_at' => 'timestamp',
'deleted_at' => 'timestamp',
];
2020-07-23 13:55:11 +10:00
protected $touches = [];
public function getEntityType()
{
return self::class;
}
2019-04-28 15:31:32 +10:00
public function documents()
{
return $this->morphMany(Document::class, 'documentable');
}
2021-01-04 22:22:48 +11: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-17 07:50:02 +10:00
public function company()
{
return $this->belongsTo(Company::class);
}
2020-12-07 21:43:21 +11:00
public function vendor()
{
return $this->belongsTo(Vendor::class);
}
2021-05-15 12:19:36 +10:00
public function client()
{
return $this->belongsTo(Client::class);
}
2022-04-06 10:38:01 +10:00
2022-07-06 19:25:22 +10:00
public function purchase_order()
{
2022-07-07 16:13:37 +10:00
return $this->hasOne(PurchaseOrder::class);
2022-07-06 19:25:22 +10:00
}
2022-04-06 10:38:01 +10:00
public function translate_entity()
{
return ctrans('texts.expense');
}
2022-04-08 17:03:03 +10:00
public function currency()
{
return $this->belongsTo(Currency::class);
}
public function category()
{
2022-05-12 10:57:58 +10:00
return $this->belongsTo(ExpenseCategory::class)->withTrashed();
2022-04-08 17:03:03 +10:00
}
public function payment_type()
{
return $this->belongsTo(PaymentType::class);
}
public function project()
{
return $this->belongsTo(Project::class);
}
}