1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-10 05:02:36 +01:00
invoiceninja/app/Http/Controllers/ProductController.php

175 lines
4.3 KiB
PHP
Raw Normal View History

2015-03-17 02:30:56 +01:00
<?php namespace App\Http\Controllers;
2015-04-02 15:12:12 +02:00
use Auth;
use URL;
2015-04-06 13:46:02 +02:00
use View;
2016-09-23 16:00:47 +02:00
use Utils;
2015-04-06 13:46:02 +02:00
use Input;
use Session;
use Redirect;
use App\Models\Product;
2015-10-21 13:11:08 +02:00
use App\Models\TaxRate;
2015-11-05 23:37:04 +01:00
use App\Services\ProductService;
2015-03-16 22:45:25 +01:00
/**
* Class ProductController
*/
2015-04-02 15:12:12 +02:00
class ProductController extends BaseController
2015-03-16 22:45:25 +01:00
{
/**
* @var ProductService
*/
2015-11-05 23:37:04 +01:00
protected $productService;
/**
* ProductController constructor.
2016-09-23 16:00:47 +02:00
*
* @param ProductService $productService
*/
2015-11-05 23:37:04 +01:00
public function __construct(ProductService $productService)
{
2016-03-02 14:36:42 +01:00
//parent::__construct();
2015-11-05 23:37:04 +01:00
$this->productService = $productService;
}
/**
* @return \Illuminate\Http\RedirectResponse
*/
2015-10-21 13:11:08 +02:00
public function index()
{
2016-09-23 16:00:47 +02:00
$columns = [
'checkbox',
'product',
'description',
'unit_cost'
];
if (Auth::user()->account->invoice_item_taxes) {
$columns[] = 'tax_rate';
}
$columns[] = 'action';
return View::make('list', [
'entityType' => ENTITY_PRODUCT,
'title' => trans('texts.products'),
2016-11-18 14:31:43 +01:00
'statuses' => Product::getStatuses(),
2016-09-23 16:00:47 +02:00
'sortCol' => '4',
'columns' => Utils::trans($columns),
]);
}
public function show($publicId)
{
Session::reflash();
return Redirect::to("products/$publicId/edit");
2015-10-21 13:11:08 +02:00
}
2016-09-23 16:00:47 +02:00
/**
* @return \Illuminate\Http\JsonResponse
*/
2015-03-16 22:45:25 +01:00
public function getDatatable()
{
2016-10-18 20:15:08 +02:00
return $this->productService->getDatatable(Auth::user()->account_id, Input::get('sSearch'));
2015-03-16 22:45:25 +01:00
}
/**
* @param $publicId
* @return \Illuminate\Contracts\View\View
*/
2015-03-16 22:45:25 +01:00
public function edit($publicId)
{
2015-10-21 13:11:08 +02:00
$account = Auth::user()->account;
2016-10-18 16:55:07 +02:00
$product = Product::scope($publicId)->withTrashed()->firstOrFail();
2015-10-21 13:11:08 +02:00
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,
2016-10-18 16:55:07 +02:00
'product' => $product,
'entity' => $product,
2015-10-21 13:11:08 +02:00
'method' => 'PUT',
'url' => 'products/'.$publicId,
'title' => trans('texts.edit_product'),
];
2015-03-16 22:45:25 +01:00
return View::make('accounts.product', $data);
}
/**
* @return \Illuminate\Contracts\View\View
*/
2015-03-16 22:45:25 +01:00
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);
}
/**
* @return \Illuminate\Http\RedirectResponse
*/
2015-03-16 22:45:25 +01:00
public function store()
{
return $this->save();
}
/**
* @param $publicId
* @return \Illuminate\Http\RedirectResponse
*/
2015-03-16 22:45:25 +01:00
public function update($publicId)
{
return $this->save($publicId);
}
/**
* @param bool $productPublicId
* @return \Illuminate\Http\RedirectResponse
*/
2015-03-16 22:45:25 +01:00
private function save($productPublicId = false)
{
if ($productPublicId) {
2016-10-10 10:40:04 +02:00
$product = Product::scope($productPublicId)->withTrashed()->firstOrFail();
2015-03-16 22:45:25 +01:00
} 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);
2016-10-02 10:47:24 +02:00
return Redirect::to("products/{$product->public_id}/edit");
2015-03-16 22:45:25 +01:00
}
/**
* @return \Illuminate\Http\RedirectResponse
*/
2015-11-05 23:37:04 +01:00
public function bulk()
2015-03-16 22:45:25 +01:00
{
2016-09-23 16:00:47 +02:00
$action = Input::get('action');
$ids = Input::get('public_id') ? Input::get('public_id') : Input::get('ids');
2015-11-05 23:37:04 +01:00
$count = $this->productService->bulk($ids, $action);
2015-03-16 22:45:25 +01:00
Session::flash('message', trans('texts.archived_product'));
2016-09-23 16:00:47 +02:00
return $this->returnBulk(ENTITY_PRODUCT, $action, $ids);
2015-03-16 22:45:25 +01:00
}
}