2018-10-15 23:40:34 +11:00
|
|
|
<?php
|
2019-05-11 13:32:07 +10:00
|
|
|
/**
|
2020-09-06 19:38:10 +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
|
|
|
*/
|
2018-10-15 23:40:34 +11:00
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
2018-11-20 15:36:56 +11:00
|
|
|
use App\Utils\Traits\MakesHash;
|
2019-04-03 11:09:22 +11:00
|
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
2018-10-15 23:40:34 +11:00
|
|
|
|
2018-11-02 21:54:46 +11:00
|
|
|
class Product extends BaseModel
|
2018-10-15 23:40:34 +11:00
|
|
|
{
|
2018-11-20 15:36:56 +11:00
|
|
|
use MakesHash;
|
2019-04-03 11:09:22 +11:00
|
|
|
use SoftDeletes;
|
|
|
|
|
use Filterable;
|
|
|
|
|
|
2019-06-26 14:04:10 +10:00
|
|
|
protected $fillable = [
|
|
|
|
|
'custom_value1',
|
|
|
|
|
'custom_value2',
|
|
|
|
|
'custom_value3',
|
2019-12-31 08:59:12 +11:00
|
|
|
'custom_value4',
|
2019-06-26 14:04:10 +10:00
|
|
|
'product_key',
|
|
|
|
|
'notes',
|
|
|
|
|
'cost',
|
|
|
|
|
'price',
|
2019-09-04 22:01:19 +10:00
|
|
|
'quantity',
|
2019-06-26 14:04:10 +10:00
|
|
|
'tax_name1',
|
|
|
|
|
'tax_name2',
|
2019-10-05 12:28:23 +10:00
|
|
|
'tax_name3',
|
2019-06-26 14:04:10 +10:00
|
|
|
'tax_rate1',
|
|
|
|
|
'tax_rate2',
|
2019-10-05 12:28:23 +10:00
|
|
|
'tax_rate3',
|
2022-05-31 21:17:18 +10:00
|
|
|
'in_stock_quantity',
|
|
|
|
|
'stock_notification_threshold',
|
2022-06-03 20:50:19 +10:00
|
|
|
'stock_notification',
|
2019-04-03 13:34:28 +11:00
|
|
|
];
|
2018-11-20 15:36:56 +11:00
|
|
|
|
2020-07-23 13:55:11 +10:00
|
|
|
protected $touches = [];
|
2020-07-16 21:01:39 +10:00
|
|
|
|
2020-05-06 21:49:42 +10:00
|
|
|
public function getEntityType()
|
|
|
|
|
{
|
2020-09-06 19:38:10 +10:00
|
|
|
return self::class;
|
2020-05-06 21:49:42 +10:00
|
|
|
}
|
|
|
|
|
|
2019-04-03 11:09:22 +11:00
|
|
|
public function company()
|
2018-11-20 15:36:56 +11:00
|
|
|
{
|
2019-04-03 11:09:22 +11:00
|
|
|
return $this->belongsTo(Company::class);
|
2018-11-20 15:36:56 +11:00
|
|
|
}
|
|
|
|
|
|
2019-04-03 11:09:22 +11:00
|
|
|
public function user()
|
2018-11-20 15:36:56 +11:00
|
|
|
{
|
2019-11-25 20:38:55 +11:00
|
|
|
return $this->belongsTo(User::class)->withTrashed();
|
2018-11-20 15:36:56 +11:00
|
|
|
}
|
2019-04-03 11:09:22 +11:00
|
|
|
|
2022-05-10 16:39:05 +10:00
|
|
|
public function vendor()
|
|
|
|
|
{
|
|
|
|
|
return $this->belongsTo(Vendor::class)->withTrashed();
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-05 21:16:38 +11:00
|
|
|
public function assigned_user()
|
|
|
|
|
{
|
2019-12-31 08:59:12 +11:00
|
|
|
return $this->belongsTo(User::class, 'assigned_user_id', 'id')->withTrashed();
|
2019-11-05 21:16:38 +11:00
|
|
|
}
|
2020-09-06 19:38:10 +10:00
|
|
|
|
2019-04-28 15:31:32 +10:00
|
|
|
public function documents()
|
|
|
|
|
{
|
|
|
|
|
return $this->morphMany(Document::class, 'documentable');
|
|
|
|
|
}
|
2022-04-06 10:38:01 +10:00
|
|
|
|
|
|
|
|
public function translate_entity()
|
|
|
|
|
{
|
|
|
|
|
return ctrans('texts.product');
|
|
|
|
|
}
|
2022-06-21 09:57:17 +00:00
|
|
|
}
|