2015-03-17 02:30:56 +01:00
|
|
|
<?php namespace App\Http\Controllers;
|
|
|
|
|
2015-04-02 15:12:12 +02:00
|
|
|
use Auth;
|
|
|
|
use Str;
|
2015-03-17 02:30:56 +01:00
|
|
|
use DB;
|
|
|
|
use Datatable;
|
2015-04-02 15:12:12 +02:00
|
|
|
use Utils;
|
|
|
|
use URL;
|
2015-04-06 13:46:02 +02:00
|
|
|
use View;
|
|
|
|
use Input;
|
|
|
|
use Session;
|
|
|
|
use Redirect;
|
|
|
|
|
|
|
|
use App\Models\Product;
|
2015-10-21 13:11:08 +02:00
|
|
|
use App\Models\TaxRate;
|
2015-03-16 22:45:25 +01:00
|
|
|
|
2015-04-02 15:12:12 +02:00
|
|
|
class ProductController extends BaseController
|
2015-03-16 22:45:25 +01:00
|
|
|
{
|
2015-10-21 13:11:08 +02:00
|
|
|
public function index()
|
|
|
|
{
|
|
|
|
return Redirect::to('settings/' . ACCOUNT_PRODUCTS);
|
|
|
|
}
|
|
|
|
|
2015-03-16 22:45:25 +01:00
|
|
|
public function getDatatable()
|
|
|
|
{
|
2015-10-21 13:11:08 +02:00
|
|
|
$account = Auth::user()->account;
|
|
|
|
|
2015-03-16 22:45:25 +01:00
|
|
|
$query = DB::table('products')
|
2015-10-21 13:11:08 +02:00
|
|
|
->leftJoin('tax_rates', function($join){
|
|
|
|
$join->on('tax_rates.id', '=', 'products.default_tax_rate_id')
|
|
|
|
->whereNull('tax_rates.deleted_at');
|
|
|
|
})
|
2015-03-16 22:45:25 +01:00
|
|
|
->where('products.account_id', '=', Auth::user()->account_id)
|
|
|
|
->where('products.deleted_at', '=', null)
|
2015-10-21 13:11:08 +02:00
|
|
|
->select('products.public_id', 'products.product_key', 'products.notes', 'products.cost', 'tax_rates.name as tax_name', 'tax_rates.rate as tax_rate');
|
|
|
|
|
|
|
|
$datatable = Datatable::query($query)
|
|
|
|
->addColumn('product_key', function ($model) { return link_to('products/'.$model->public_id.'/edit', $model->product_key); })
|
|
|
|
->addColumn('notes', function ($model) { return nl2br(Str::limit($model->notes, 100)); })
|
|
|
|
->addColumn('cost', function ($model) { return Utils::formatMoney($model->cost); });
|
|
|
|
|
|
|
|
if ($account->invoice_item_taxes) {
|
|
|
|
$datatable->addColumn('tax_rate', function ($model) { return $model->tax_rate ? ($model->tax_name . ' ' . $model->tax_rate . '%') : ''; });
|
|
|
|
}
|
|
|
|
|
|
|
|
return $datatable->addColumn('dropdown', function ($model) {
|
|
|
|
return '<div class="btn-group tr-action" style="visibility:hidden;">
|
|
|
|
<button type="button" class="btn btn-xs btn-default dropdown-toggle" data-toggle="dropdown">
|
|
|
|
'.trans('texts.select').' <span class="caret"></span>
|
|
|
|
</button>
|
|
|
|
<ul class="dropdown-menu" role="menu">
|
|
|
|
<li><a href="'.URL::to('products/'.$model->public_id).'/edit">'.uctrans('texts.edit_product').'</a></li>
|
|
|
|
<li class="divider"></li>
|
|
|
|
<li><a href="'.URL::to('products/'.$model->public_id).'/archive">'.uctrans('texts.archive_product').'</a></li>
|
|
|
|
</ul>
|
|
|
|
</div>';
|
|
|
|
})
|
|
|
|
->orderColumns(['cost', 'product_key', 'cost'])
|
|
|
|
->make();
|
2015-03-16 22:45:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function edit($publicId)
|
|
|
|
{
|
2015-10-21 13:11:08 +02:00
|
|
|
$account = Auth::user()->account;
|
|
|
|
|
2015-03-16 22:45:25 +01:00
|
|
|
$data = [
|
2015-10-21 13:11:08 +02:00
|
|
|
'account' => $account,
|
|
|
|
'taxRates' => $account->invoice_item_taxes ? TaxRate::scope()->get(['id', 'name', 'rate']) : null,
|
|
|
|
'product' => Product::scope($publicId)->firstOrFail(),
|
|
|
|
'method' => 'PUT',
|
|
|
|
'url' => 'products/'.$publicId,
|
|
|
|
'title' => trans('texts.edit_product'),
|
|
|
|
];
|
2015-03-16 22:45:25 +01:00
|
|
|
|
|
|
|
return View::make('accounts.product', $data);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function create()
|
|
|
|
{
|
2015-10-21 13:11:08 +02:00
|
|
|
$account = Auth::user()->account;
|
|
|
|
|
2015-03-16 22:45:25 +01:00
|
|
|
$data = [
|
2015-10-21 13:11:08 +02:00
|
|
|
'account' => $account,
|
|
|
|
'taxRates' => $account->invoice_item_taxes ? TaxRate::scope()->get(['id', 'name', 'rate']) : null,
|
2015-10-14 16:15:39 +02:00
|
|
|
'product' => null,
|
|
|
|
'method' => 'POST',
|
|
|
|
'url' => 'products',
|
|
|
|
'title' => trans('texts.create_product'),
|
|
|
|
];
|
2015-03-16 22:45:25 +01:00
|
|
|
|
|
|
|
return View::make('accounts.product', $data);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function store()
|
|
|
|
{
|
|
|
|
return $this->save();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function update($publicId)
|
|
|
|
{
|
|
|
|
return $this->save($publicId);
|
|
|
|
}
|
|
|
|
|
|
|
|
private function save($productPublicId = false)
|
|
|
|
{
|
|
|
|
if ($productPublicId) {
|
|
|
|
$product = Product::scope($productPublicId)->firstOrFail();
|
|
|
|
} else {
|
|
|
|
$product = Product::createNew();
|
|
|
|
}
|
|
|
|
|
|
|
|
$product->product_key = trim(Input::get('product_key'));
|
|
|
|
$product->notes = trim(Input::get('notes'));
|
|
|
|
$product->cost = trim(Input::get('cost'));
|
2015-10-21 13:11:08 +02:00
|
|
|
$product->default_tax_rate_id = Input::get('default_tax_rate_id');
|
|
|
|
|
2015-03-16 22:45:25 +01:00
|
|
|
$product->save();
|
|
|
|
|
|
|
|
$message = $productPublicId ? trans('texts.updated_product') : trans('texts.created_product');
|
|
|
|
Session::flash('message', $message);
|
|
|
|
|
2015-10-14 16:15:39 +02:00
|
|
|
return Redirect::to('settings/' . ACCOUNT_PRODUCTS);
|
2015-03-16 22:45:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function archive($publicId)
|
|
|
|
{
|
|
|
|
$product = Product::scope($publicId)->firstOrFail();
|
|
|
|
$product->delete();
|
|
|
|
|
|
|
|
Session::flash('message', trans('texts.archived_product'));
|
|
|
|
|
2015-10-14 16:15:39 +02:00
|
|
|
return Redirect::to('settings/' . ACCOUNT_PRODUCTS);
|
2015-03-16 22:45:25 +01:00
|
|
|
}
|
|
|
|
}
|