2017-01-30 21:40:43 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace App\Http\Controllers;
|
2015-03-17 11:30:56 +10:00
|
|
|
|
2015-04-06 14:46:02 +03:00
|
|
|
use App\Models\Product;
|
2015-10-21 14:11:08 +03:00
|
|
|
use App\Models\TaxRate;
|
2016-11-24 11:22:37 +02:00
|
|
|
use App\Ninja\Datatables\ProductDatatable;
|
2017-03-09 11:33:55 +02:00
|
|
|
use App\Ninja\Repositories\ProductRepository;
|
2017-01-30 21:40:43 +02:00
|
|
|
use App\Services\ProductService;
|
|
|
|
|
use Auth;
|
|
|
|
|
use Input;
|
|
|
|
|
use Redirect;
|
|
|
|
|
use Session;
|
|
|
|
|
use URL;
|
|
|
|
|
use Utils;
|
|
|
|
|
use View;
|
2015-03-17 07:45:25 +10:00
|
|
|
|
2016-07-03 18:11:58 +02:00
|
|
|
/**
|
2017-01-30 21:40:43 +02:00
|
|
|
* Class ProductController.
|
2016-07-03 18:11:58 +02:00
|
|
|
*/
|
2015-04-02 16:12:12 +03:00
|
|
|
class ProductController extends BaseController
|
2015-03-17 07:45:25 +10:00
|
|
|
{
|
2016-07-03 18:11:58 +02:00
|
|
|
/**
|
|
|
|
|
* @var ProductService
|
|
|
|
|
*/
|
2015-11-06 00:37:04 +02:00
|
|
|
protected $productService;
|
|
|
|
|
|
2017-03-09 11:33:55 +02:00
|
|
|
/**
|
|
|
|
|
* @var ProductRepository
|
|
|
|
|
*/
|
|
|
|
|
protected $productRepo;
|
|
|
|
|
|
2016-07-03 18:11:58 +02:00
|
|
|
/**
|
|
|
|
|
* ProductController constructor.
|
2016-09-23 17:00:47 +03:00
|
|
|
*
|
2016-07-03 18:11:58 +02:00
|
|
|
* @param ProductService $productService
|
|
|
|
|
*/
|
2017-03-09 11:33:55 +02:00
|
|
|
public function __construct(ProductService $productService, ProductRepository $productRepo)
|
2015-11-06 00:37:04 +02:00
|
|
|
{
|
2016-03-02 15:36:42 +02:00
|
|
|
//parent::__construct();
|
2015-11-06 00:37:04 +02:00
|
|
|
|
|
|
|
|
$this->productService = $productService;
|
2017-03-09 11:33:55 +02:00
|
|
|
$this->productRepo = $productRepo;
|
2015-11-06 00:37:04 +02:00
|
|
|
}
|
|
|
|
|
|
2016-07-03 18:11:58 +02:00
|
|
|
/**
|
|
|
|
|
* @return \Illuminate\Http\RedirectResponse
|
|
|
|
|
*/
|
2015-10-21 14:11:08 +03:00
|
|
|
public function index()
|
|
|
|
|
{
|
2016-11-24 11:22:37 +02:00
|
|
|
return View::make('list_wrapper', [
|
2016-09-23 17:00:47 +03:00
|
|
|
'entityType' => ENTITY_PRODUCT,
|
2016-11-24 11:22:37 +02:00
|
|
|
'datatable' => new ProductDatatable(),
|
2016-09-23 17:00:47 +03:00
|
|
|
'title' => trans('texts.products'),
|
2016-11-18 15:31:43 +02:00
|
|
|
'statuses' => Product::getStatuses(),
|
2016-09-23 17:00:47 +03:00
|
|
|
]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function show($publicId)
|
|
|
|
|
{
|
|
|
|
|
Session::reflash();
|
|
|
|
|
|
|
|
|
|
return Redirect::to("products/$publicId/edit");
|
2015-10-21 14:11:08 +03:00
|
|
|
}
|
|
|
|
|
|
2016-07-03 18:11:58 +02:00
|
|
|
/**
|
|
|
|
|
* @return \Illuminate\Http\JsonResponse
|
|
|
|
|
*/
|
2015-03-17 07:45:25 +10:00
|
|
|
public function getDatatable()
|
|
|
|
|
{
|
2016-10-18 21:15:08 +03:00
|
|
|
return $this->productService->getDatatable(Auth::user()->account_id, Input::get('sSearch'));
|
2015-03-17 07:45:25 +10:00
|
|
|
}
|
|
|
|
|
|
2016-07-03 18:11:58 +02:00
|
|
|
/**
|
|
|
|
|
* @param $publicId
|
2017-01-30 21:40:43 +02:00
|
|
|
*
|
2016-07-03 18:11:58 +02:00
|
|
|
* @return \Illuminate\Contracts\View\View
|
|
|
|
|
*/
|
2015-03-17 07:45:25 +10:00
|
|
|
public function edit($publicId)
|
|
|
|
|
{
|
2015-10-21 14:11:08 +03:00
|
|
|
$account = Auth::user()->account;
|
2016-10-18 17:55:07 +03:00
|
|
|
$product = Product::scope($publicId)->withTrashed()->firstOrFail();
|
2015-10-21 14:11:08 +03:00
|
|
|
|
2015-03-17 07:45:25 +10:00
|
|
|
$data = [
|
2015-10-21 14:11:08 +03:00
|
|
|
'account' => $account,
|
2017-05-17 12:18:48 +03:00
|
|
|
'taxRates' => $account->invoice_item_taxes ? TaxRate::scope()->whereIsInclusive(false)->get() : null,
|
2016-10-18 17:55:07 +03:00
|
|
|
'product' => $product,
|
|
|
|
|
'entity' => $product,
|
2015-10-21 14:11:08 +03:00
|
|
|
'method' => 'PUT',
|
|
|
|
|
'url' => 'products/'.$publicId,
|
|
|
|
|
'title' => trans('texts.edit_product'),
|
|
|
|
|
];
|
2015-03-17 07:45:25 +10:00
|
|
|
|
|
|
|
|
return View::make('accounts.product', $data);
|
|
|
|
|
}
|
|
|
|
|
|
2016-07-03 18:11:58 +02:00
|
|
|
/**
|
|
|
|
|
* @return \Illuminate\Contracts\View\View
|
|
|
|
|
*/
|
2015-03-17 07:45:25 +10:00
|
|
|
public function create()
|
|
|
|
|
{
|
2015-10-21 14:11:08 +03:00
|
|
|
$account = Auth::user()->account;
|
|
|
|
|
|
2015-03-17 07:45:25 +10:00
|
|
|
$data = [
|
2015-10-21 14:11:08 +03:00
|
|
|
'account' => $account,
|
2017-01-02 13:38:58 +02:00
|
|
|
'taxRates' => $account->invoice_item_taxes ? TaxRate::scope()->whereIsInclusive(false)->get(['id', 'name', 'rate']) : null,
|
2015-10-14 17:15:39 +03:00
|
|
|
'product' => null,
|
|
|
|
|
'method' => 'POST',
|
|
|
|
|
'url' => 'products',
|
|
|
|
|
'title' => trans('texts.create_product'),
|
|
|
|
|
];
|
2015-03-17 07:45:25 +10:00
|
|
|
|
|
|
|
|
return View::make('accounts.product', $data);
|
|
|
|
|
}
|
|
|
|
|
|
2016-07-03 18:11:58 +02:00
|
|
|
/**
|
|
|
|
|
* @return \Illuminate\Http\RedirectResponse
|
|
|
|
|
*/
|
2015-03-17 07:45:25 +10:00
|
|
|
public function store()
|
|
|
|
|
{
|
|
|
|
|
return $this->save();
|
|
|
|
|
}
|
|
|
|
|
|
2016-07-03 18:11:58 +02:00
|
|
|
/**
|
|
|
|
|
* @param $publicId
|
2017-01-30 21:40:43 +02:00
|
|
|
*
|
2016-07-03 18:11:58 +02:00
|
|
|
* @return \Illuminate\Http\RedirectResponse
|
|
|
|
|
*/
|
2015-03-17 07:45:25 +10:00
|
|
|
public function update($publicId)
|
|
|
|
|
{
|
|
|
|
|
return $this->save($publicId);
|
|
|
|
|
}
|
|
|
|
|
|
2016-07-03 18:11:58 +02:00
|
|
|
/**
|
|
|
|
|
* @param bool $productPublicId
|
2017-01-30 21:40:43 +02:00
|
|
|
*
|
2016-07-03 18:11:58 +02:00
|
|
|
* @return \Illuminate\Http\RedirectResponse
|
|
|
|
|
*/
|
2015-03-17 07:45:25 +10:00
|
|
|
private function save($productPublicId = false)
|
|
|
|
|
{
|
|
|
|
|
if ($productPublicId) {
|
2016-10-10 11:40:04 +03:00
|
|
|
$product = Product::scope($productPublicId)->withTrashed()->firstOrFail();
|
2015-03-17 07:45:25 +10:00
|
|
|
} else {
|
|
|
|
|
$product = Product::createNew();
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-09 11:33:55 +02:00
|
|
|
$this->productRepo->save(Input::all(), $product);
|
2015-03-17 07:45:25 +10:00
|
|
|
|
|
|
|
|
$message = $productPublicId ? trans('texts.updated_product') : trans('texts.created_product');
|
|
|
|
|
Session::flash('message', $message);
|
|
|
|
|
|
2016-10-02 11:47:24 +03:00
|
|
|
return Redirect::to("products/{$product->public_id}/edit");
|
2015-03-17 07:45:25 +10:00
|
|
|
}
|
|
|
|
|
|
2016-07-03 18:11:58 +02:00
|
|
|
/**
|
|
|
|
|
* @return \Illuminate\Http\RedirectResponse
|
|
|
|
|
*/
|
2015-11-06 00:37:04 +02:00
|
|
|
public function bulk()
|
2015-03-17 07:45:25 +10:00
|
|
|
{
|
2016-09-23 17:00:47 +03:00
|
|
|
$action = Input::get('action');
|
|
|
|
|
$ids = Input::get('public_id') ? Input::get('public_id') : Input::get('ids');
|
2017-11-03 10:19:03 +02:00
|
|
|
|
|
|
|
|
if ($action == 'invoice') {
|
|
|
|
|
$products = Product::scope($ids)->get();
|
|
|
|
|
foreach ($products as $product) {
|
|
|
|
|
$data[] = $product->product_key;
|
|
|
|
|
}
|
|
|
|
|
return redirect("invoices/create")->with('selectedProducts', $data);
|
|
|
|
|
} else {
|
|
|
|
|
$count = $this->productService->bulk($ids, $action);
|
|
|
|
|
}
|
2015-03-17 07:45:25 +10:00
|
|
|
|
2016-11-29 19:47:26 +02:00
|
|
|
$message = Utils::pluralize($action.'d_product', $count);
|
|
|
|
|
Session::flash('message', $message);
|
2015-03-17 07:45:25 +10:00
|
|
|
|
2016-09-23 17:00:47 +03:00
|
|
|
return $this->returnBulk(ENTITY_PRODUCT, $action, $ids);
|
2015-03-17 07:45:25 +10:00
|
|
|
}
|
|
|
|
|
}
|