creditRepo = $creditRepo; } /** * Display a listing of the resource. * * @return Response */ public function index() { return View::make('list', array( 'entityType'=>ENTITY_CREDIT, 'title' => '- Credits', 'columns'=>['checkbox', 'Client', 'Credit Amount', 'Credit Date', 'Action'] )); } public function getDatatable($clientPublicId = null) { $credits = $this->creditRepo->find($clientPublicId, Input::get('sSearch')); $table = Datatable::query($credits); if (!$clientPublicId) { $table->addColumn('checkbox', function($model) { return ''; }) ->addColumn('client_name', function($model) { return link_to('clients/' . $model->client_public_id, Utils::getClientDisplayName($model)); }); } return $table->addColumn('amount', function($model){ return Utils::formatMoney($model->amount, $model->currency_id); }) ->addColumn('credit_date', function($model) { return Utils::fromSqlDate($model->credit_date); }) ->addColumn('dropdown', function($model) { return ''; }) ->make(); } public function create($clientPublicId = 0, $invoicePublicId = 0) { $data = array( 'clientPublicId' => $clientPublicId, 'invoicePublicId' => $invoicePublicId, 'credit' => null, 'method' => 'POST', 'url' => 'credits', 'title' => '- New Credit', 'currencies' => Currency::remember(DEFAULT_QUERY_CACHE)->orderBy('name')->get(), 'invoices' => Invoice::scope()->with('client', 'invoice_status')->where('balance','>',0)->orderBy('invoice_number')->get(), 'clients' => Client::scope()->with('contacts')->orderBy('name')->get()); return View::make('credits.edit', $data); } public function edit($publicId) { $credit = Credit::scope($publicId)->firstOrFail(); $credit->credit_date = Utils::fromSqlDate($credit->credit_date); $data = array( 'client' => null, 'credit' => $credit, 'method' => 'PUT', 'url' => 'credits/' . $publicId, 'title' => '- Edit Credit', 'currencies' => Currency::remember(DEFAULT_QUERY_CACHE)->orderBy('name')->get(), 'clients' => Client::scope()->with('contacts')->orderBy('name')->get()); return View::make('credit.edit', $data); } public function store() { return $this->save(); } public function update($publicId) { return $this->save($publicId); } private function save($publicId = null) { $rules = array( 'client' => 'required', 'amount' => 'required', ); $validator = Validator::make(Input::all(), $rules); if ($validator->fails()) { $url = $publicId ? 'credits/' . $publicId . '/edit' : 'credits/create'; return Redirect::to($url) ->withErrors($validator) ->withInput(); } else { $this->creditRepo->save($publicId, Input::all()); $message = $publicId ? 'Successfully updated credit' : 'Successfully created credit'; Session::flash('message', $message); return Redirect::to('clients/' . Input::get('client')); } } public function bulk() { $action = Input::get('action'); $ids = Input::get('id') ? Input::get('id') : Input::get('ids'); $count = $this->creditRepo->bulk($ids, $action); $message = Utils::pluralize('Successfully '.$action.'d ? credit', $count); Session::flash('message', $message); return Redirect::to('credits'); } }