2016-01-30 10:56:27 +01:00
|
|
|
<?php namespace App\Http\Controllers;
|
|
|
|
|
2016-01-30 10:57:47 +01:00
|
|
|
use App\Ninja\Transformers\ProductTransformer;
|
2016-01-30 10:56:27 +01:00
|
|
|
use Auth;
|
|
|
|
use Str;
|
|
|
|
use DB;
|
|
|
|
use Datatable;
|
|
|
|
use Utils;
|
|
|
|
use URL;
|
|
|
|
use View;
|
|
|
|
use Input;
|
|
|
|
use Session;
|
|
|
|
use Redirect;
|
|
|
|
|
|
|
|
use App\Models\Product;
|
|
|
|
use App\Models\TaxRate;
|
|
|
|
use App\Services\ProductService;
|
|
|
|
|
|
|
|
class ProductApiController extends BaseAPIController
|
|
|
|
{
|
|
|
|
protected $productService;
|
|
|
|
|
|
|
|
public function __construct(ProductService $productService)
|
|
|
|
{
|
|
|
|
parent::__construct();
|
|
|
|
|
|
|
|
$this->productService = $productService;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function index()
|
|
|
|
{
|
2016-01-30 11:51:52 +01:00
|
|
|
|
2016-01-30 12:18:30 +01:00
|
|
|
$products = Product::scope()->withTrashed();
|
2016-01-30 12:27:26 +01:00
|
|
|
$products = $products->paginate();
|
|
|
|
|
2016-01-30 12:20:09 +01:00
|
|
|
$paginator = Product::scope()->withTrashed()->paginate();
|
|
|
|
|
2016-01-30 11:51:52 +01:00
|
|
|
$transformer = new ProductTransformer(\Auth::user()->account, $this->serializer);
|
2016-01-30 12:20:09 +01:00
|
|
|
$data = $this->createCollection($products, $transformer, 'products', $paginator);
|
2016-01-30 11:51:52 +01:00
|
|
|
|
|
|
|
return $this->response($data);
|
|
|
|
|
2016-01-30 10:56:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getDatatable()
|
|
|
|
{
|
|
|
|
return $this->productService->getDatatable(Auth::user()->account_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function store()
|
|
|
|
{
|
|
|
|
return $this->save();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function update($publicId)
|
|
|
|
{
|
|
|
|
return $this->save($publicId);
|
|
|
|
}
|
|
|
|
|
2016-01-30 12:29:22 +01:00
|
|
|
public function destroy($publicId)
|
2016-01-30 10:56:27 +01:00
|
|
|
{
|
|
|
|
//stub
|
|
|
|
}
|
|
|
|
|
|
|
|
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'));
|
|
|
|
//$product->default_tax_rate_id = Input::get('default_tax_rate_id');
|
|
|
|
|
|
|
|
$product->save();
|
|
|
|
|
2016-01-30 10:57:47 +01:00
|
|
|
$transformer = new ProductTransformer(\Auth::user()->account, Input::get('serializer'));
|
2016-01-30 10:56:27 +01:00
|
|
|
$data = $this->createItem($product, $transformer, 'products');
|
|
|
|
|
|
|
|
return $this->response($data);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|