ctrlpanel/app/Models/ShopProduct.php
MrWeez 4bf534ad50
Fix error 500 on the checkout page, small code refactor and total display fix (#963)
* fix: replaced number_format by round because this caused error 500 on checkout

* refactor: code has been made more readable

* fix: incorrect display of total on checkout
2024-05-24 09:38:31 +02:00

110 lines
2.4 KiB
PHP

<?php
namespace App\Models;
use Hidehalo\Nanoid\Client;
use Illuminate\Database\Eloquent\Model;
use NumberFormatter;
use Spatie\Activitylog\LogOptions;
use Spatie\Activitylog\Traits\LogsActivity;
class ShopProduct extends Model
{
use LogsActivity;
public function getActivitylogOptions(): LogOptions
{
return LogOptions::defaults()
-> logOnlyDirty()
-> logOnly(['*'])
-> dontSubmitEmptyLogs();
}
/**
* @var bool
*/
public $incrementing = false;
/**
* @var string[]
*/
protected $fillable = [
'type',
'price',
'description',
'display',
'currency_code',
'quantity',
'disabled',
];
/**
* @var string[]
*/
protected $casts = [
'price' => 'float'
];
public static function boot()
{
parent::boot();
static::creating(function (ShopProduct $shopProduct) {
$client = new Client();
$shopProduct->{$shopProduct->getKeyName()} = $client->generateId($size = 21);
});
}
/**
* @param mixed $value
* @param string $locale
* @return float
*/
public function formatToCurrency($value, $locale = 'en_US')
{
$formatter = new NumberFormatter($locale, NumberFormatter::CURRENCY);
return $formatter->formatCurrency($value, $this->currency_code);
}
/**
* @description Returns the tax in % taken from the Configuration
*
* @return int
*/
public function getTaxPercent()
{
$tax = config('SETTINGS::PAYMENTS:SALES_TAX');
return $tax < 0 ? 0 : $tax;
}
public function getPriceAfterDiscount()
{
$discountRate = PartnerDiscount::getDiscount() / 100;
$discountedPrice = $this->price * (1 - $discountRate);
return round($discountedPrice, 2);
}
/**
* @description Returns the tax as Number
*
* @return float
*/
public function getTaxValue()
{
$taxValue = $this->getPriceAfterDiscount() * $this->getTaxPercent() / 100;
return round($taxValue, 2);
}
/**
* @description Returns the full price of a Product including tax
*
* @return float
*/
public function getTotalPrice()
{
$total = $this->getPriceAfterDiscount() + $this->getTaxValue();
return round($total, 2);
}
}