2018-10-15 14:40:34 +02:00
|
|
|
<?php
|
2019-05-11 05:32:07 +02:00
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2023-01-28 23:21:40 +01:00
|
|
|
* @copyright Copyright (c) 2023. 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
|
|
|
*/
|
2018-10-15 14:40:34 +02:00
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
2018-11-20 05:36:56 +01:00
|
|
|
use App\Utils\Traits\MakesHash;
|
2019-04-03 02:09:22 +02:00
|
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
2023-03-18 08:24:56 +01:00
|
|
|
use League\CommonMark\CommonMarkConverter;
|
2018-10-15 14:40:34 +02:00
|
|
|
|
2023-03-08 08:33:42 +01:00
|
|
|
/**
|
|
|
|
* App\Models\Product
|
|
|
|
*
|
|
|
|
* @property int $id
|
|
|
|
* @property int $company_id
|
|
|
|
* @property int $user_id
|
|
|
|
* @property int|null $assigned_user_id
|
|
|
|
* @property int|null $project_id
|
|
|
|
* @property int|null $vendor_id
|
|
|
|
* @property string|null $custom_value1
|
|
|
|
* @property string|null $custom_value2
|
|
|
|
* @property string|null $custom_value3
|
|
|
|
* @property string|null $custom_value4
|
|
|
|
* @property string|null $product_key
|
|
|
|
* @property string|null $notes
|
|
|
|
* @property string $cost
|
|
|
|
* @property string $price
|
|
|
|
* @property string $quantity
|
|
|
|
* @property string|null $tax_name1
|
|
|
|
* @property string $tax_rate1
|
|
|
|
* @property string|null $tax_name2
|
|
|
|
* @property string $tax_rate2
|
|
|
|
* @property string|null $tax_name3
|
|
|
|
* @property string $tax_rate3
|
|
|
|
* @property int|null $deleted_at
|
|
|
|
* @property int|null $created_at
|
|
|
|
* @property int|null $updated_at
|
|
|
|
* @property int $is_deleted
|
|
|
|
* @property int $in_stock_quantity
|
|
|
|
* @property int $stock_notification
|
|
|
|
* @property int $stock_notification_threshold
|
|
|
|
* @property int|null $max_quantity
|
|
|
|
* @property string|null $product_image
|
|
|
|
* @property-read \App\Models\User|null $assigned_user
|
|
|
|
* @property-read \App\Models\Company $company
|
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Document> $documents
|
|
|
|
* @property-read int|null $documents_count
|
|
|
|
* @property-read mixed $hashed_id
|
|
|
|
* @property-read \App\Models\User $user
|
|
|
|
* @property-read \App\Models\Vendor|null $vendor
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|BaseModel company()
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|BaseModel exclude($columns)
|
|
|
|
* @method static \Database\Factories\ProductFactory factory($count = null, $state = [])
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Product filter(\App\Filters\QueryFilters $filters)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Product newModelQuery()
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Product newQuery()
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Product onlyTrashed()
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Product query()
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|BaseModel scope()
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Product whereAssignedUserId($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Product whereCompanyId($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Product whereCost($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Product whereCreatedAt($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Product whereCustomValue1($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Product whereCustomValue2($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Product whereCustomValue3($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Product whereCustomValue4($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Product whereDeletedAt($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Product whereId($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Product whereInStockQuantity($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Product whereIsDeleted($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Product whereMaxQuantity($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Product whereNotes($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Product wherePrice($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Product whereProductImage($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Product whereProductKey($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Product whereProjectId($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Product whereQuantity($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Product whereStockNotification($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Product whereStockNotificationThreshold($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Product whereTaxName1($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Product whereTaxName2($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Product whereTaxName3($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Product whereTaxRate1($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Product whereTaxRate2($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Product whereTaxRate3($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Product whereUpdatedAt($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Product whereUserId($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Product whereVendorId($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Product withTrashed()
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Product withoutTrashed()
|
2023-03-16 05:20:38 +01:00
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Document> $documents
|
2023-03-08 08:33:42 +01:00
|
|
|
* @mixin \Eloquent
|
|
|
|
*/
|
2018-11-02 11:54:46 +01:00
|
|
|
class Product extends BaseModel
|
2018-10-15 14:40:34 +02:00
|
|
|
{
|
2018-11-20 05:36:56 +01:00
|
|
|
use MakesHash;
|
2019-04-03 02:09:22 +02:00
|
|
|
use SoftDeletes;
|
|
|
|
use Filterable;
|
|
|
|
|
2023-03-21 08:14:25 +01:00
|
|
|
|
2023-03-21 07:04:01 +01:00
|
|
|
public const PRODUCT_TYPE_PHYSICAL = 1;
|
|
|
|
public const PRODUCT_TYPE_SERVICE = 2;
|
|
|
|
public const PRODUCT_TYPE_DIGITAL = 3;
|
|
|
|
public const PRODUCT_TYPE_FREIGHT = 4;
|
2023-03-21 08:14:25 +01:00
|
|
|
public const PRODUCT_TAX_EXEMPT = 5;
|
2023-03-21 07:04:01 +01:00
|
|
|
|
2019-06-26 06:04:10 +02:00
|
|
|
protected $fillable = [
|
|
|
|
'custom_value1',
|
|
|
|
'custom_value2',
|
|
|
|
'custom_value3',
|
2019-12-30 22:59:12 +01:00
|
|
|
'custom_value4',
|
2019-06-26 06:04:10 +02:00
|
|
|
'product_key',
|
|
|
|
'notes',
|
|
|
|
'cost',
|
|
|
|
'price',
|
2019-09-04 14:01:19 +02:00
|
|
|
'quantity',
|
2019-06-26 06:04:10 +02:00
|
|
|
'tax_name1',
|
|
|
|
'tax_name2',
|
2019-10-05 04:28:23 +02:00
|
|
|
'tax_name3',
|
2019-06-26 06:04:10 +02:00
|
|
|
'tax_rate1',
|
|
|
|
'tax_rate2',
|
2019-10-05 04:28:23 +02:00
|
|
|
'tax_rate3',
|
2022-05-31 13:17:18 +02:00
|
|
|
'in_stock_quantity',
|
|
|
|
'stock_notification_threshold',
|
2022-06-03 12:50:19 +02:00
|
|
|
'stock_notification',
|
2023-02-07 12:47:43 +01:00
|
|
|
'max_quantity',
|
|
|
|
'product_image',
|
2023-03-21 08:14:25 +01:00
|
|
|
'tax_id',
|
2019-04-03 04:34:28 +02:00
|
|
|
];
|
2018-11-20 05:36:56 +01:00
|
|
|
|
2020-07-23 05:55:11 +02:00
|
|
|
protected $touches = [];
|
2020-07-16 13:01:39 +02:00
|
|
|
|
2020-05-06 13:49:42 +02:00
|
|
|
public function getEntityType()
|
|
|
|
{
|
2020-09-06 11:38:10 +02:00
|
|
|
return self::class;
|
2020-05-06 13:49:42 +02:00
|
|
|
}
|
|
|
|
|
2019-04-03 02:09:22 +02:00
|
|
|
public function company()
|
2018-11-20 05:36:56 +01:00
|
|
|
{
|
2019-04-03 02:09:22 +02:00
|
|
|
return $this->belongsTo(Company::class);
|
2018-11-20 05:36:56 +01:00
|
|
|
}
|
|
|
|
|
2019-04-03 02:09:22 +02:00
|
|
|
public function user()
|
2018-11-20 05:36:56 +01:00
|
|
|
{
|
2019-11-25 10:38:55 +01:00
|
|
|
return $this->belongsTo(User::class)->withTrashed();
|
2018-11-20 05:36:56 +01:00
|
|
|
}
|
2019-04-03 02:09:22 +02:00
|
|
|
|
2022-05-10 08:39:05 +02:00
|
|
|
public function vendor()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(Vendor::class)->withTrashed();
|
|
|
|
}
|
|
|
|
|
2019-11-05 11:16:38 +01:00
|
|
|
public function assigned_user()
|
|
|
|
{
|
2019-12-30 22:59:12 +01:00
|
|
|
return $this->belongsTo(User::class, 'assigned_user_id', 'id')->withTrashed();
|
2019-11-05 11:16:38 +01:00
|
|
|
}
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2019-04-28 07:31:32 +02:00
|
|
|
public function documents()
|
|
|
|
{
|
|
|
|
return $this->morphMany(Document::class, 'documentable');
|
|
|
|
}
|
2022-04-06 02:38:01 +02:00
|
|
|
|
|
|
|
public function translate_entity()
|
|
|
|
{
|
|
|
|
return ctrans('texts.product');
|
|
|
|
}
|
2023-03-01 07:57:52 +01:00
|
|
|
|
|
|
|
public function markdownNotes()
|
|
|
|
{
|
|
|
|
$converter = new CommonMarkConverter([
|
|
|
|
'allow_unsafe_links' => false,
|
|
|
|
'renderer' => [
|
|
|
|
'soft_break' => '<br>',
|
|
|
|
],
|
|
|
|
]);
|
|
|
|
|
|
|
|
return $converter->convert($this->notes);
|
|
|
|
}
|
2022-06-21 11:57:17 +02:00
|
|
|
}
|