Class: ClientEngine::ClientsController

Inherits:
ApplicationController show all
Defined in:
app/controllers/client_engine/clients_controller.rb

Instance Method Summary collapse

Methods inherited from ApplicationController

#get_client_data_from_afip, #sort_column, #sort_direction

Instance Method Details

#createObject

POST /clients



26
27
28
29
30
31
32
33
34
35
# File 'app/controllers/client_engine/clients_controller.rb', line 26

def create
  @client             = Client.new(client_params)
  @client.company_id  = current_user.company_id
  
  if @client.save
    redirect_to @client, notice: 'Client was successfully created.'
  else
    render :new
  end
end

#destroyObject

DELETE /clients/1



47
48
49
50
# File 'app/controllers/client_engine/clients_controller.rb', line 47

def destroy
  @client.destroy
  redirect_to clients_url, notice: 'Client was successfully destroyed.'
end

#editObject

GET /clients/1/edit



22
23
# File 'app/controllers/client_engine/clients_controller.rb', line 22

def edit
end

#indexObject

GET /clients



8
9
10
# File 'app/controllers/client_engine/clients_controller.rb', line 8

def index
  @clients = current_user.clients.search(params[:search]).paginate(page: params[:page], per_page: 10)
end

#newObject

GET /clients/new



17
18
19
# File 'app/controllers/client_engine/clients_controller.rb', line 17

def new
  @client = Client.new
end

#showObject

GET /clients/1



13
14
# File 'app/controllers/client_engine/clients_controller.rb', line 13

def show
end

#updateObject

PATCH/PUT /clients/1



38
39
40
41
42
43
44
# File 'app/controllers/client_engine/clients_controller.rb', line 38

def update
  if @client.update(client_params)
    redirect_to @client, notice: 'Client was successfully updated.'
  else
    render :edit
  end
end