mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-04 08:07:34 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			113 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			113 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php namespace App\Http\Controllers;
 | 
						|
 | 
						|
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 ProductController extends BaseController
 | 
						|
{
 | 
						|
    protected $productService;
 | 
						|
 | 
						|
    public function __construct(ProductService $productService)
 | 
						|
    {
 | 
						|
        parent::__construct();
 | 
						|
 | 
						|
        $this->productService = $productService;
 | 
						|
    }
 | 
						|
 | 
						|
    public function index()
 | 
						|
    {
 | 
						|
        return Redirect::to('settings/' . ACCOUNT_PRODUCTS);
 | 
						|
    }
 | 
						|
 | 
						|
    public function getDatatable()
 | 
						|
    {
 | 
						|
        return $this->productService->getDatatable(Auth::user()->account_id);
 | 
						|
    }
 | 
						|
 | 
						|
    public function edit($publicId)
 | 
						|
    {
 | 
						|
        $account = Auth::user()->account;
 | 
						|
 | 
						|
        $data = [
 | 
						|
          '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'),
 | 
						|
        ];
 | 
						|
 | 
						|
        return View::make('accounts.product', $data);
 | 
						|
    }
 | 
						|
 | 
						|
    public function create()
 | 
						|
    {
 | 
						|
        $account = Auth::user()->account;
 | 
						|
 | 
						|
        $data = [
 | 
						|
          'account' => $account,
 | 
						|
          'taxRates' => $account->invoice_item_taxes ? TaxRate::scope()->get(['id', 'name', 'rate']) : null,
 | 
						|
          'product' => null,
 | 
						|
          'method' => 'POST',
 | 
						|
          'url' => 'products',
 | 
						|
          'title' => trans('texts.create_product'),
 | 
						|
        ];
 | 
						|
 | 
						|
        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'));
 | 
						|
        $product->default_tax_rate_id = Input::get('default_tax_rate_id');
 | 
						|
 | 
						|
        $product->save();
 | 
						|
 | 
						|
        $message = $productPublicId ? trans('texts.updated_product') : trans('texts.created_product');
 | 
						|
        Session::flash('message', $message);
 | 
						|
 | 
						|
        return Redirect::to('settings/' . ACCOUNT_PRODUCTS);
 | 
						|
    }
 | 
						|
 | 
						|
    public function bulk()
 | 
						|
    {
 | 
						|
        $action = Input::get('bulk_action');
 | 
						|
        $ids = Input::get('bulk_public_id');
 | 
						|
        $count = $this->productService->bulk($ids, $action);
 | 
						|
 | 
						|
        Session::flash('message', trans('texts.archived_product'));
 | 
						|
 | 
						|
        return Redirect::to('settings/' . ACCOUNT_PRODUCTS);
 | 
						|
    }
 | 
						|
}
 |