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

228 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
*
2024-04-12 06:15:41 +02:00
* @copyright Copyright (c) 2024. 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
2023-10-13 12:35:22 +02:00
* @property float $cost
* @property float $price
* @property float $quantity
2023-03-08 08:33:42 +01:00
* @property string|null $tax_name1
2023-10-13 12:35:22 +02:00
* @property float $tax_rate1
2023-03-08 08:33:42 +01:00
* @property string|null $tax_name2
2023-10-13 12:35:22 +02:00
* @property float $tax_rate2
2023-03-08 08:33:42 +01:00
* @property string|null $tax_name3
2023-10-13 12:35:22 +02:00
* @property float $tax_rate3
2023-03-08 08:33:42 +01:00
* @property int|null $deleted_at
* @property int|null $created_at
* @property int|null $updated_at
2023-10-13 12:35:22 +02:00
* @property bool $is_deleted
* @property float $in_stock_quantity
* @property bool $stock_notification
2023-03-08 08:33:42 +01:00
* @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 int|null $documents_count
* @property-read mixed $hashed_id
* @property-read \App\Models\User $user
* @property-read \App\Models\Vendor|null $vendor
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-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
];
2024-04-03 01:58:16 +02:00
public array $ubl_tax_map = [
self::PRODUCT_TYPE_REVERSE_TAX => 'AE', // VAT_REVERSE_CHARGE =
self::PRODUCT_TYPE_EXEMPT => 'E', // EXEMPT_FROM_TAX =
self::PRODUCT_TYPE_PHYSICAL => 'S', // STANDARD_RATE =
self::PRODUCT_TYPE_ZERO_RATED => 'Z', // ZERO_RATED_GOODS =
// self::PRODUCT_TYPE_ZERO_RATED => 'G', // FREE_EXPORT_ITEM =
// self::PRODUCT_TYPE_ZERO_RATED => 'O', // OUTSIDE_TAX_SCOPE =
// self::PRODUCT_TYPE_EXEMPT => 'K', // EEA_GOODS_AND_SERVICES =
// self::PRODUCT_TYPE_PHYSICAL => 'L', // CANARY_ISLANDS_INDIRECT_TAX =
// self::PRODUCT_TYPE_PHYSICAL => 'M', // CEUTA_AND_MELILLA =
// self::PRODUCT_TYPE_PHYSICAL => 'B', // TRANSFERRED_VAT_ITALY =
// self::PRODUCT_TYPE_PHYSICAL => 'A', // MIXED_TAX_RATE =
self::PRODUCT_TYPE_REDUCED_TAX => 'AA', // LOWER_RATE =
// self::PRODUCT_TYPE_PHYSICAL => 'AB', // EXEMPT_FOR_RESALE =
// self::PRODUCT_TYPE_PHYSICAL => 'AC', // VAT_NOT_NOW_DUE =
// self::PRODUCT_TYPE_PHYSICAL => 'AD', // VAT_DUE_PREVIOUS_INVOICE =
// self::PRODUCT_TYPE_PHYSICAL => 'B', // TRANSFERRED_VAT =
// self::PRODUCT_TYPE_PHYSICAL => 'C', // DUTY_PAID_BY_SUPPLIER =
// self::PRODUCT_TYPE_PHYSICAL => 'D', // VAT_MARGIN_SCHEME_TRAVEL_AGENTS =
// self::PRODUCT_TYPE_PHYSICAL => 'F', // VAT_MARGIN_SCHEME_SECOND_HAND_GOODS =
// self::PRODUCT_TYPE_PHYSICAL => 'H', // HIGHER_RATE =
// self::PRODUCT_TYPE_PHYSICAL => 'I', // VAT_MARGIN_SCHEME_WORKS_OF_ART =
// self::PRODUCT_TYPE_PHYSICAL => 'J', // VAT_MARGIN_SCHEME_COLLECTORS_ITEMS =
// self::PRODUCT_TYPE_PHYSICAL => 'K', // VAT_EXEMPT_EEA_INTRA_COMMUNITY =
// self::PRODUCT_TYPE_PHYSICAL => 'L', // CANARY_ISLANDS_TAX =
// self::PRODUCT_TYPE_PHYSICAL => 'M', // TAX_CEUTA_MELILLA =
// self::PRODUCT_TYPE_PHYSICAL => 'O', // SERVICES_OUTSIDE_SCOPE =
];
public array $ubl_tax_translations = [
'texts.reverse_tax' => 'AE', // VAT_REVERSE_CHARGE
'texts.tax_exempt' => 'E', // EXEMPT_FROM_TAX
'texts.physical_goods' => 'S', // STANDARD_RATE
'texts.zero_rated' => 'Z', // ZERO_RATED_GOODS
'ubl.vat_exempt_eea_intra_community' => 'K', // VAT_EXEMPT_EEA_INTRA_COMMUNITY
'ubl.free_export_item' => 'G', // FREE_EXPORT_ITEM
'ubl.outside_tax_scope' => 'O', // OUTSIDE_TAX_SCOPE
'ubl.eea_goods_and_services' => 'K', // EEA_GOODS_AND_SERVICES
'ubl.canary_islands_indirect_tax' => 'L', // CANARY_ISLANDS_INDIRECT_TAX
'ubl.ceuta_and_melilla' => 'M', // CEUTA_AND_MELILLA
'ubl.transferred_vat_italy' => 'B', // TRANSFERRED_VAT_ITALY
'ubl.mixed_tax_rate' => 'A', // MIXED_TAX_RATE
'ubl.lower_rate' => 'AA', // LOWER_RATE
'ubl.exempt_for_resale' => 'AB', // EXEMPT_FOR_RESALE
'ubl.vat_not_now_due' => 'AC', // VAT_NOT_NOW_DUE
'ubl.vat_due_previous_invoice' => 'AD', // VAT_DUE_PREVIOUS_INVOICE
'ubl.transferred_vat' => 'B', // TRANSFERRED_VAT
'ubl.duty_paid_by_supplier' => 'C', // DUTY_PAID_BY_SUPPLIER
'ubl.vat_margin_scheme_travel_agents' => 'D', // VAT_MARGIN_SCHEME_TRAVEL_AGENTS
'ubl.vat_margin_scheme_second_hand_goods' => 'F', // VAT_MARGIN_SCHEME_SECOND_HAND_GOODS
'ubl.higher_rate' => 'H', // HIGHER_RATE
'ubl.vat_margin_scheme_works_of_art' => 'I', // VAT_MARGIN_SCHEME_WORKS_OF_ART
'ubl.vat_margin_scheme_collectors_items' => 'J', // VAT_MARGIN_SCHEME_COLLECTORS_ITEMS
'ubl.canary_islands_tax' => 'L', // CANARY_ISLANDS_TAX
'ubl.tax_ceuta_melilla' => 'M', // TAX_CEUTA_MELILLA
'ubl.services_outside_scope' => 'O', // SERVICES_OUTSIDE_SCOPE
];
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>',
],
]);
2023-07-31 10:22:34 +02:00
return $converter->convert($this->notes ?? '');
2023-03-01 07:57:52 +01:00
}
2023-06-07 08:25:41 +02:00
2024-02-22 04:36:59 +01:00
public static function markdownHelp(string $notes = '')
{
$converter = new CommonMarkConverter([
'allow_unsafe_links' => false,
'renderer' => [
'soft_break' => '<br>',
],
]);
return $converter->convert($notes);
}
2023-06-07 08:25:41 +02:00
public function portalUrl($use_react_url): string
{
2023-06-11 08:09:16 +02:00
return $use_react_url ? config('ninja.react_url') . "/#/products/{$this->hashed_id}/edit" : config('ninja.app_url');
2023-06-07 08:25:41 +02:00
}
}