with('depreciation_options', $depreciation_options)->with('depreciation', new Depreciation); } /** * Validates and stores the new depreciation data. * * @author [A. Gianotto] [name = e(Input::get('name')); $depreciation->months = e(Input::get('months')); $depreciation->user_id = Auth::user()->id; // Was the asset created? if ($depreciation->save()) { // Redirect to the new depreciation page return Redirect::to("admin/settings/depreciations")->with('success', trans('admin/depreciations/message.create.success')); } return Redirect::back()->withInput()->withErrors($depreciation->getErrors()); } /** * Returns a view that displays a form to update a depreciation. * * @author [A. Gianotto] [with('error', trans('admin/depreciations/message.does_not_exist')); } // Show the page //$depreciation_options = array('' => 'Top Level') + Depreciation::lists('name', 'id'); $depreciation_options = array('' => 'Top Level') + DB::table('depreciations')->where('id', '!=', $depreciationId)->lists('name', 'id'); return View::make('depreciations/edit', compact('depreciation'))->with('depreciation_options', $depreciation_options); } /** * Validates and stores the updated depreciation data. * * @author [A. Gianotto] [with('error', trans('admin/depreciations/message.does_not_exist')); } // Depreciation data $depreciation->name = e(Input::get('name')); $depreciation->months = e(Input::get('months')); // Was the asset created? if ($depreciation->save()) { // Redirect to the depreciation page return Redirect::to("admin/settings/depreciations/")->with('success', trans('admin/depreciations/message.update.success')); } return Redirect::back()->withInput()->withErrors($depreciation->getErrors()); } /** * Validates and deletes a selected depreciation. * * This is a hard-delete. We do not currently soft-delete depreciations. * * @author [A. Gianotto] [with('error', trans('admin/depreciations/message.not_found')); } if ($depreciation->has_models() > 0) { // Redirect to the asset management page return Redirect::to('admin/settings/depreciations')->with('error', trans('admin/depreciations/message.assoc_users')); } else { $depreciation->delete(); // Redirect to the depreciations management page return Redirect::to('admin/settings/depreciations')->with('success', trans('admin/depreciations/message.delete.success')); } } /** * Generates the JSON used to display the depreciation listing. * * @see DepreciationsController::getIndex() * @author [A. Gianotto] [] * @param string $status * @since [v1.2] * @return String JSON */ public function getDatatable() { $depreciations = Depreciation::select(array('id','name','months')); if (Input::has('search')) { $depreciations = $depreciations->TextSearch(e(Input::get('search'))); } if (Input::has('offset')) { $offset = e(Input::get('offset')); } else { $offset = 0; } if (Input::has('limit')) { $limit = e(Input::get('limit')); } else { $limit = 50; } $allowed_columns = ['id','name','months']; $order = Input::get('order') === 'asc' ? 'asc' : 'desc'; $sort = in_array(Input::get('sort'), $allowed_columns) ? Input::get('sort') : 'created_at'; $depreciations->orderBy($sort, $order); $depreciationsCount = $depreciations->count(); $depreciations = $depreciations->skip($offset)->take($limit)->get(); $rows = array(); foreach ($depreciations as $depreciation) { $actions = ''; $rows[] = array( 'id' => $depreciation->id, 'name' => e($depreciation->name), 'months' => e($depreciation->months), 'actions' => $actions ); } $data = array('total' => $depreciationsCount, 'rows' => $rows); return $data; } }