protected function GenerateResponse() { try { $this->response = ContabilidadController::EditarCuenta(isset($_POST['id_cuenta_contable']) ? $_POST['id_cuenta_contable'] : null, isset($_POST['abonos_aumentan']) ? $_POST['abonos_aumentan'] : "", isset($_POST['afectable']) ? $_POST['afectable'] : "", isset($_POST['cargos_aumentan']) ? $_POST['cargos_aumentan'] : "", isset($_POST['es_cuenta_mayor']) ? $_POST['es_cuenta_mayor'] : "", isset($_POST['es_cuenta_orden']) ? $_POST['es_cuenta_orden'] : "", isset($_POST['id_cuenta_padre']) ? $_POST['id_cuenta_padre'] : "", isset($_POST['naturaleza']) ? $_POST['naturaleza'] : "", isset($_POST['nombre_cuenta']) ? $_POST['nombre_cuenta'] : "", isset($_POST['tipo_cuenta']) ? $_POST['tipo_cuenta'] : ""); } catch (Exception $e) { //Logger::error($e); throw new ApiException($this->error_dispatcher->invalidDatabaseOperation($e->getMessage())); } }