1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 00:11:35 +02:00
invoiceninja/app/Http/Controllers/ProductController.php

211 lines
5.5 KiB
PHP
Raw Normal View History

2017-01-30 20:40:43 +01:00
<?php
namespace App\Http\Controllers;
2015-03-17 02:30:56 +01:00
use App\Http\Requests\CreateProductRequest;
2018-06-10 12:34:07 +02:00
use App\Http\Requests\UpdateProductRequest;
2018-03-18 10:09:24 +01:00
use App\Http\Requests\ProductRequest;
2015-04-06 13:46:02 +02:00
use App\Models\Product;
2015-10-21 13:11:08 +02:00
use App\Models\TaxRate;
use App\Ninja\Datatables\ProductDatatable;
use App\Ninja\Repositories\ProductRepository;
2017-01-30 20:40:43 +01:00
use App\Services\ProductService;
use Auth;
use Illuminate\Auth\Access\AuthorizationException;
2017-01-30 20:40:43 +01:00
use Redirect;
use Session;
use URL;
use Utils;
use View;
2015-03-16 22:45:25 +01:00
/**
2017-01-30 20:40:43 +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;
/**
* @var ProductRepository
*/
protected $productRepo;
/**
* ProductController constructor.
2016-09-23 16:00:47 +02:00
*
* @param ProductService $productService
*/
public function __construct(ProductService $productService, ProductRepository $productRepo)
2015-11-05 23:37:04 +01:00
{
2016-03-02 14:36:42 +01:00
//parent::__construct();
2015-11-05 23:37:04 +01:00
$this->productService = $productService;
$this->productRepo = $productRepo;
2015-11-05 23:37:04 +01:00
}
/**
* @return \Illuminate\Http\RedirectResponse
*/
2015-10-21 13:11:08 +02:00
public function index()
{
return View::make('list_wrapper', [
2016-09-23 16:00:47 +02:00
'entityType' => ENTITY_PRODUCT,
'datatable' => new ProductDatatable(),
2016-09-23 16:00:47 +02:00
'title' => trans('texts.products'),
2016-11-18 14:31:43 +01:00
'statuses' => Product::getStatuses(),
2016-09-23 16:00:47 +02:00
]);
}
public function show($publicId)
{
Session::reflash();
return Redirect::to("products/$publicId/edit");
2015-10-21 13:11:08 +02:00
}
/**
* @return \Illuminate\Http\JsonResponse
*/
2015-03-16 22:45:25 +01:00
public function getDatatable()
{
2021-09-26 02:13:01 +02:00
return $this->productService->getDatatable(Auth::user()->account_id, \Request::input('sSearch'));
2015-03-16 22:45:25 +01:00
}
2018-03-18 10:09:24 +01:00
public function cloneProduct(ProductRequest $request, $publicId)
{
return self::edit($request, $publicId, true);
}
/**
* @param $publicId
2017-01-30 20:40:43 +01:00
*
* @return \Illuminate\Contracts\View\View
*/
2018-03-20 12:54:24 +01:00
public function edit(ProductRequest $request, $publicId, $clone = false)
2015-03-16 22:45:25 +01:00
{
Auth::user()->can('view', [ENTITY_PRODUCT, $request->entity()]);
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
2018-03-18 10:09:24 +01:00
if ($clone) {
$product->id = null;
$product->public_id = null;
$product->deleted_at = null;
$url = 'products';
$method = 'POST';
} else {
$url = 'products/'.$publicId;
$method = 'PUT';
}
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()->whereIsInclusive(false)->get() : null,
2016-10-18 16:55:07 +02:00
'product' => $product,
'entity' => $product,
2018-03-18 10:09:24 +01:00
'method' => $method,
'url' => $url,
2015-10-21 13:11:08 +02:00
'title' => trans('texts.edit_product'),
];
2015-03-16 22:45:25 +01:00
return View::make('accounts.product', $data);
}
/**
* @return \Illuminate\Contracts\View\View
*/
2018-06-08 08:50:34 +02:00
public function create(ProductRequest $request)
2015-03-16 22:45:25 +01:00
{
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,
2017-01-02 12:38:58 +01:00
'taxRates' => $account->invoice_item_taxes ? TaxRate::scope()->whereIsInclusive(false)->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
*/
2018-06-08 08:50:34 +02:00
public function store(CreateProductRequest $request)
2015-03-16 22:45:25 +01:00
{
return $this->save();
}
/**
* @param $publicId
2017-01-30 20:40:43 +01:00
*
* @return \Illuminate\Http\RedirectResponse
*/
2018-06-08 08:50:34 +02:00
public function update(UpdateProductRequest $request, $publicId)
2015-03-16 22:45:25 +01:00
{
return $this->save($publicId);
}
/**
* @param bool $productPublicId
2017-01-30 20:40:43 +01:00
*
* @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();
}
2021-09-26 02:13:01 +02:00
$this->productRepo->save(\Request::all(), $product);
2015-03-16 22:45:25 +01:00
$message = $productPublicId ? trans('texts.updated_product') : trans('texts.created_product');
Session::flash('message', $message);
2018-03-18 10:09:24 +01:00
$action = request('action');
if (in_array($action, ['archive', 'delete', 'restore', 'invoice'])) {
2017-11-03 10:25:14 +01:00
return self::bulk();
}
2018-03-18 10:09:24 +01:00
if ($action == 'clone') {
return redirect()->to(sprintf('products/%s/clone', $product->public_id));
} else {
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
{
2021-09-26 02:13:01 +02:00
$action = \Request::input('action');
$ids = \Request::input('public_id') ? \Request::input('public_id') : \Request::input('ids');
2017-11-03 09:19:03 +01:00
if ($action == 'invoice') {
$products = Product::scope($ids)->get();
2017-11-03 10:25:14 +01:00
$data = [];
2017-11-03 09:19:03 +01:00
foreach ($products as $product) {
$data[] = $product->product_key;
}
return redirect("invoices/create")->with('selectedProducts', $data);
} else {
$count = $this->productService->bulk($ids, $action);
}
2015-03-16 22:45:25 +01:00
2016-11-29 18:47:26 +01:00
$message = Utils::pluralize($action.'d_product', $count);
Session::flash('message', $message);
2015-03-16 22:45:25 +01:00
2016-09-23 16:00:47 +02:00
return $this->returnBulk(ENTITY_PRODUCT, $action, $ids);
2015-03-16 22:45:25 +01:00
}
}