1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 00:41:34 +02:00
invoiceninja/app/Http/Controllers/CreditController.php

124 lines
3.3 KiB
PHP
Raw Normal View History

2017-01-30 20:40:43 +01:00
<?php
2015-03-16 22:45:25 +01:00
2017-01-30 20:40:43 +01:00
namespace App\Http\Controllers;
use App\Http\Requests\CreateCreditRequest;
use App\Http\Requests\CreditRequest;
use App\Http\Requests\UpdateCreditRequest;
use App\Models\Client;
use App\Models\Credit;
use App\Ninja\Datatables\CreditDatatable;
use App\Ninja\Repositories\CreditRepository;
use App\Services\CreditService;
2015-03-26 07:24:02 +01:00
use Input;
use Redirect;
use Session;
2015-11-04 08:48:47 +01:00
use URL;
2015-03-26 07:24:02 +01:00
use Utils;
use View;
2015-03-16 22:45:25 +01:00
2015-03-26 07:24:02 +01:00
class CreditController extends BaseController
2015-03-16 22:45:25 +01:00
{
protected $creditRepo;
2015-11-05 23:37:04 +01:00
protected $creditService;
2016-04-28 14:16:33 +02:00
protected $entityType = ENTITY_CREDIT;
2015-03-16 22:45:25 +01:00
2015-10-28 20:22:07 +01:00
public function __construct(CreditRepository $creditRepo, CreditService $creditService)
2015-03-16 22:45:25 +01:00
{
2016-03-16 00:08:00 +01:00
// parent::__construct();
2015-03-16 22:45:25 +01:00
$this->creditRepo = $creditRepo;
2015-10-28 20:22:07 +01:00
$this->creditService = $creditService;
2015-03-16 22:45:25 +01:00
}
/**
* Display a listing of the resource.
*
* @return Response
*/
public function index()
{
return View::make('list_wrapper', [
2015-03-16 22:45:25 +01:00
'entityType' => ENTITY_CREDIT,
'datatable' => new CreditDatatable(),
2015-03-16 22:45:25 +01:00
'title' => trans('texts.credits'),
]);
2015-03-16 22:45:25 +01:00
}
public function getDatatable($clientPublicId = null)
{
2015-11-05 23:37:04 +01:00
return $this->creditService->getDatatable($clientPublicId, Input::get('sSearch'));
2015-03-16 22:45:25 +01:00
}
2016-05-01 13:31:10 +02:00
public function create(CreditRequest $request)
2015-03-16 22:45:25 +01:00
{
$data = [
2016-05-01 13:31:10 +02:00
'clientPublicId' => Input::old('client') ? Input::old('client') : ($request->client_id ?: 0),
2015-03-16 22:45:25 +01:00
'credit' => null,
'method' => 'POST',
'url' => 'credits',
'title' => trans('texts.new_credit'),
'clients' => Client::scope()->with('contacts')->orderBy('name')->get(),
];
2015-03-16 22:45:25 +01:00
return View::make('credits.edit', $data);
}
public function edit($publicId)
{
2016-11-30 19:21:50 +01:00
$credit = Credit::withTrashed()->scope($publicId)->firstOrFail();
2016-06-08 16:56:48 +02:00
2016-04-26 03:53:39 +02:00
$this->authorize('edit', $credit);
2016-06-08 16:56:48 +02:00
2015-03-16 22:45:25 +01:00
$credit->credit_date = Utils::fromSqlDate($credit->credit_date);
2017-01-30 20:40:43 +01:00
$data = [
2016-12-04 11:24:48 +01:00
'client' => $credit->client,
2016-11-30 19:21:50 +01:00
'clientPublicId' => $credit->client->public_id,
2015-03-16 22:45:25 +01:00
'credit' => $credit,
'method' => 'PUT',
'url' => 'credits/'.$publicId,
'title' => 'Edit Credit',
2016-12-04 11:24:48 +01:00
'clients' => null,
2017-01-30 20:40:43 +01:00
];
2015-03-16 22:45:25 +01:00
2016-11-30 19:21:50 +01:00
return View::make('credits.edit', $data);
}
public function update(UpdateCreditRequest $request)
{
$credit = $request->entity();
return $this->save($credit);
2015-03-16 22:45:25 +01:00
}
2016-06-08 16:56:48 +02:00
2015-10-28 20:22:07 +01:00
public function store(CreateCreditRequest $request)
2015-03-16 22:45:25 +01:00
{
2016-11-30 19:21:50 +01:00
return $this->save();
}
private function save($credit = null)
{
$credit = $this->creditService->save(Input::all(), $credit);
2016-03-02 14:36:42 +01:00
$message = $credit->wasRecentlyCreated ? trans('texts.created_credit') : trans('texts.updated_credit');
2016-11-30 19:21:50 +01:00
Session::flash('message', $message);
2016-03-02 14:36:42 +01:00
2016-12-04 11:24:48 +01:00
return redirect()->to("clients/{$credit->client->public_id}#credits");
2015-03-16 22:45:25 +01:00
}
public function bulk()
{
$action = Input::get('action');
2015-10-28 20:22:07 +01:00
$ids = Input::get('public_id') ? Input::get('public_id') : Input::get('ids');
$count = $this->creditService->bulk($ids, $action);
2015-03-16 22:45:25 +01:00
if ($count > 0) {
$message = Utils::pluralize($action.'d_credit', $count);
Session::flash('message', $message);
}
2016-11-27 10:46:32 +01:00
return $this->returnBulk(ENTITY_CREDIT, $action, $ids);
2015-03-16 22:45:25 +01:00
}
}