akaunting/app/View/Components/SelectItemButton.php

78 lines
1.8 KiB
PHP
Raw Normal View History

2020-12-24 01:28:38 +03:00
<?php
namespace App\View\Components;
use Illuminate\View\Component;
use App\Models\Common\Item;
class SelectItemButton extends Component
{
/** @var string */
public $type;
/** @var bool */
public $isSale;
/** @var bool */
public $isPurchase;
/**
* Create a new component instance.
*
* @return void
*/
2020-12-28 17:17:42 +03:00
public function __construct(string $type = 'sale', bool $isSale = false, bool $isPurchase = false)
2020-12-24 01:28:38 +03:00
{
$this->type = $type;
$this->isSale = $isSale;
$this->isPurchase = $isPurchase;
}
/**
* Get the view / contents that represent the component.
*
* @return \Illuminate\Contracts\View\View|string
*/
public function render()
{
$items = Item::enabled()->orderBy('name')->take(setting('default.select_limit'))->get();
2020-12-28 17:17:42 +03:00
$price_type= $this->getPriceType($this->type, $this->isSale, $this->isPurchase);
2020-12-24 01:28:38 +03:00
foreach ($items as $item) {
2020-12-28 17:17:42 +03:00
$price = $item->{$price_type . '_price'};
2020-12-24 01:28:38 +03:00
$item->price = $price;
}
$price = ($this->isPurchase) ? 'purchase_price' : 'sale_price';
return view('components.select-item-button', compact('items', 'price'));
}
2020-12-28 17:17:42 +03:00
protected function getPriceType($type, $is_sale, $is_purchase)
{
if (!empty($is_sale)) {
return 'sale';
}
if (!empty($is_sale)) {
return 'purchase';
}
switch ($type) {
case 'bill':
case 'expense':
case 'purchase':
$type = 'purchase';
break;
case 'sale':
case 'income':
case 'invoice':
default:
$type = 'sale';
}
return $type;
}
2020-12-24 01:28:38 +03:00
}