payment_order_id to the package in the payment api */ protected $table = 'products'; protected $casts = [ 'trans_name' => 'array', 'trans_title' => 'array', 'trans_copy' => 'array', 'icons' => 'array', 'trans_description' => 'array', 'trans_usage' => 'array', 'trans_ingredients' => 'array', 'show_on' => 'array', 'action' => 'array', 'wp_number' => 'int', 'single_commission' => 'bool', 'amount_commission' => 'bool', 'active' => 'bool', 'shipping_addon' => 'bool', 'max_buy' => 'bool', 'max_buy_num' => 'int' ]; use Sluggable; use SoftDeletes; protected $dates = ['deleted_at']; protected $fillable = [ 'name', 'title', 'copy', 'short_copy', 'price', 'price_ek', 'tax', 'price_old', 'points', 'weight', 'contents', 'contents_total', 'unit', 'number', 'wp_number', 'icons', 'description', 'usage', 'ingredients', 'pos', 'amount', 'active', 'show_at', 'show_on', 'single_commission', 'amount_commission', 'value_commission', 'partner_commission', 'identifier', 'action', 'upgrade_to_id', 'shipping_addon', 'max_buy', 'max_buy_num' ]; public $identifiers_types = [ '' => '-', 'show_upgrade' => 'Kann geupdatet werden', 'show_order' => 'Wird immer als Option angezeigt', 'upgrade' => 'Produktupgrade zur Produkt ID', 'upgrade_member' => 'Vertriebspartnerupgrade zur Karriere ID', //'proportional_voucher' => 'Anteiliger Gutschein Vertriebspartner', ]; public $unitTypes = [ 0 => '', 1 => 'ml', 2 => 'g', 3 => 'Liter', 4 => 'KG', ]; public $actions = [ 0 => 'payment_for_account', // 1 => 'payment_for_shop', // 2 => 'payment_for_shop_upgrade', // 4 => 'payment_for_lead_upgrade', ]; public function sluggable() { return [ 'slug' => [ 'source' => 'name' ] ]; } public function attributes(){ return $this->hasMany('App\Models\ProductAttribute', 'product_id', 'id'); } public function categories(){ return $this->hasMany('App\Models\ProductCategory', 'product_id', 'id'); } public function images(){ return $this->hasMany('App\Models\ProductImage', 'product_id', 'id')->orderBy('pos'); } public function imagesActive(){ return $this->hasMany('App\Models\ProductImage', 'product_id', 'id')->where('active', true)->orderBy('pos'); } public function country_prices() { return $this->hasMany(CountryPrice::class, 'product_id'); } public function product_buys() { return $this->hasMany(ProductBuy::class, 'product_id'); } public function p_ingredients() { return $this->belongsToMany(Ingredient::class, 'product_ingredients') ->withPivot('id') ->withTimestamps(); } public function product_ingredients() { return $this->hasMany(ProductIngredient::class, 'product_ingredients', 'id'); } public function getShortCopy($clean = false, $len = false){ $ret = $this->short_copy ? $this->short_copy : $this->description; if($len && $clean){ return substr_ellipsis($ret, $len, $clean); } return $ret; } public function getActionName($id = 0){ if(isset($this->actions[$id])){ return $this->actions[$id]; } return false; } public function _format_number($value){ return preg_replace("/[^0-9,]/", "", $value); } public function setPriceAttribute( $value ) { $this->attributes['price'] = $value ? Util::reFormatNumber($value) : null; } public function setPriceEkAttribute( $value ) { $this->attributes['price_ek'] = $value ? Util::reFormatNumber($value) : null; } public function setTaxAttribute( $value ) { $this->attributes['tax'] = $value != "" ? Util::reFormatNumber($value) : null; } public function setPriceOldAttribute( $value ) { $this->attributes['price_old'] = $value ? Util::reFormatNumber($value) : null; } public function setValueCommissionAttribute( $value ) { $this->attributes['value_commission'] = $value ? Util::reFormatNumber($value) : 0; } public function setPartnerCommissionAttribute( $value ) { $this->attributes['partner_commission'] = $value ? Util::reFormatNumber($value) : 0; } public function getFormattedPrice() { return isset($this->attributes['price']) ? Util::formatNumber($this->attributes['price']) : ""; } public function getFormattedPriceEk() { return isset($this->attributes['price_ek']) ? Util::formatNumber($this->attributes['price_ek']) : ""; } public function getFormattedTax() { return isset($this->attributes['tax']) ? Util::formatNumber($this->attributes['tax'], 0) : ""; } public function getFormattedPriceOld() { return isset($this->attributes['price_old']) ? Util::formatNumber($this->attributes['price_old']) : ""; } public function getFormattedValueCommission() { return isset($this->attributes['value_commission']) ? Util::formatNumber($this->attributes['value_commission']) : 0; } public function getFormattedPartnerCommission() { return isset($this->attributes['partner_commission']) ? Util::formatNumber($this->attributes['partner_commission']) : 0; } /*price by user Factor*/ private function calcPriceUserFactor($price){ /* Nicht in benutzung, die margin errechnet sich im Warenkorb, wegen der Staffelprovision if(\Auth::user() && \Auth::user()->user_level){ $margin = ((\Auth::user()->user_level->margin -100)*-1) / 100; $price = $price * $margin; } */ return $price; } /*price net*/ private function calcPriceNet($price){ $tax_rate = ($this->attributes['tax'] + 100) / 100; return $price / $tax_rate; } //price calu with public function getPriceWith(Bool $net = true, Bool $ufactor = true){ $price = $this->attributes['price']; $price = $net ? $this->calcPriceNet($price) : $price; $price = $ufactor ? $this->calcPriceUserFactor($price) : $price; return round($price, 2); } /*out*/ public function getFormattedPriceWith(Bool $net = true, Bool $ufactor = true) { return isset($this->attributes['price']) ? Util::formatNumber($this->getPriceWith($net, $ufactor)) : ""; } public function getBasePriceFormattedFull(){ if($price = $this->getBasePrice()){ $unit = $this->attributes['unit']; //ml g if($unit === 1 || $unit === 2){ return Util::formatNumber($price) . ' € / 100 '.$this->getUnitType(); } //l kg if($unit === 3 || $unit === 4){ return Util::formatNumber($price) . ' € / 1 '.$this->getUnitType(); } } return ""; } public function getBasePriceFormatted(){ if($price = $this->getBasePrice()){ return Util::formatNumber($price); } return ""; } public function getBasePrice(){ if(isset($this->attributes['unit']) && isset($this->attributes['contents_total']) && $this->attributes['contents_total'] != 0){ $unit = $this->attributes['unit']; //ml g if($unit === 1 || $unit === 2){ return $this->attributes['price'] * 100 / $this->attributes['contents_total']; } //l kg if($unit === 3 || $unit === 4){ return $this->attributes['price'] * 1000 / $this->attributes['contents_total']; } } return ""; } public function getUnitType(){ return isset($this->unitTypes[$this->unit]) ? $this->unitTypes[$this->unit] : '-'; } public function getShowAtType(){ return isset(Type::$showATs[$this->show_at]) ? Type::$showATs[$this->show_at] : '-'; } public function getShowOnTypes(){ $ret = []; foreach($this->show_on as $show){ $ret[] = isset(Type::$showONs[$show]) ? Type::$showONs[$show] : '-'; } return $ret; } public function setPosAttribute($value){ $this->attributes['pos'] = is_numeric($value) ? $value : null; } public function getLang($key) { $lang = \App::getLocale(); if ($lang == 'de') { return $this->{$key}; } $trans = $this->getTrans($key, $lang); if (!$trans || $trans == '') { return $this->{$key}; } return $trans; } public function getTrans($key, $lang) { $key = 'trans_' . $key; if (!empty($this->{$key}[$lang])) { return $this->{$key}[$lang]; } } public function getTranNames() { $ret = ""; foreach ((array) $this->trans_name as $value){ $ret .= $value.', '; } return rtrim($ret, ', '); } public function getCountryPrice($country_id){ return $this->country_prices->where('country_id', '=', $country_id)->first() ?: new CountryPrice(); } public function getCPrice($country_id){ return $this->getCountryPrice($country_id)->c_price; } public function getCTax($country_id){ return $this->getCountryPrice($country_id)->c_tax; } public function getCPriceOld($country_id){ return $this->getCountryPrice($country_id)->c_price_old; } public function getCCurrency($country_id){ return $this->getCountryPrice($country_id)->c_currency; } public function getRealPrice(Country $country){ if($country->own_eur && $this->getCPrice($country->id)){ return $this->getCPrice($country->id); } return $this->price; } }