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

200 lines
8.1 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
*
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
*/
namespace App\Models;
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;
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-21 12:37:06 +01:00
* @property int|null $tax_id
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Document> $documents
* @method static \Illuminate\Database\Eloquent\Builder|Product whereTaxId($value)
2023-03-24 02:12:12 +01:00
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Document> $documents
2023-03-27 05:47:01 +02:00
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Document> $documents
2023-03-27 22:47:07 +02:00
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Document> $documents
2023-03-24 08:02:34 +01:00
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Document> $documents
2023-03-29 04:13:50 +02:00
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Document> $documents
2023-03-29 05:23:06 +02:00
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Document> $documents
2023-03-08 08:33:42 +01:00
* @mixin \Eloquent
*/
class Product extends BaseModel
{
use MakesHash;
2019-04-03 02:09:22 +02:00
use SoftDeletes;
use Filterable;
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;
2023-03-24 08:02:34 +01:00
public const PRODUCT_TYPE_SHIPPING = 4;
2023-03-28 22:53:46 +02:00
public const PRODUCT_TYPE_EXEMPT = 5;
2023-03-26 22:46:26 +02:00
public const PRODUCT_TYPE_REDUCED_TAX = 6;
2023-03-28 23:27:13 +02:00
public const PRODUCT_TYPE_OVERRIDE_TAX = 7;
public const PRODUCT_TYPE_ZERO_RATED = 8;
public const PRODUCT_TYPE_REVERSE_TAX = 9;
2023-03-21 07:04:01 +01:00
protected $fillable = [
'custom_value1',
'custom_value2',
'custom_value3',
'custom_value4',
'product_key',
'notes',
'cost',
'price',
2019-09-04 14:01:19 +02:00
'quantity',
'tax_name1',
'tax_name2',
'tax_name3',
'tax_rate1',
'tax_rate2',
'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',
'max_quantity',
'product_image',
'tax_id',
2019-04-03 04:34:28 +02:00
];
2020-07-23 05:55:11 +02:00
protected $touches = [];
public function getEntityType()
{
return self::class;
}
2019-04-03 02:09:22 +02:00
public function company()
{
2019-04-03 02:09:22 +02:00
return $this->belongsTo(Company::class);
}
2019-04-03 02:09:22 +02:00
public function user()
{
return $this->belongsTo(User::class)->withTrashed();
}
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();
}
public function assigned_user()
{
return $this->belongsTo(User::class, 'assigned_user_id', 'id')->withTrashed();
}
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);
}
}