Class: WorkAccountsController

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

Constant Summary

Constants included from Localization

Localization::LOCALIZED_STRINGS

Instance Method Summary collapse

Methods inherited from ApplicationController

in_place_edit_for, #initialize

Methods included from ApplicationHelper

#back_or_link_to, #detour?, #detour_to, #display_notice, #h, #image_button_to, #image_detour_to, #image_link_to, #image_link_to_remote, #insert, #record, #resolution_image, #t, #update_task, #with_detour

Methods included from Localization

#l, load_localized_strings, #valid_language?

Constructor Details

This class inherits a constructor from ApplicationController

Instance Method Details

#createObject



28
29
30
31
32
33
34
35
36
# File 'app/controllers/work_accounts_controller.rb', line 28

def create
  @work_account = WorkAccount.new(params[:work_account])
  if @work_account.save
    flash[:notice] = 'WorkAccount was successfully created.'
    redirect_to :action => 'list'
  else
    render :action => 'new'
  end
end

#destroyObject



52
53
54
55
# File 'app/controllers/work_accounts_controller.rb', line 52

def destroy
  WorkAccount.find(params[:id]).destroy
  redirect_to :action => 'list'
end

#editObject



38
39
40
# File 'app/controllers/work_accounts_controller.rb', line 38

def edit
  @work_account = WorkAccount.find(params[:id])
end

#indexObject



2
3
4
5
# File 'app/controllers/work_accounts_controller.rb', line 2

def index
  list
  render :action => 'list'
end

#listObject



11
12
13
# File 'app/controllers/work_accounts_controller.rb', line 11

def list
  @work_accounts = WorkAccount.paginate :page => params[:page], :order => 'name'
end

#newObject



24
25
26
# File 'app/controllers/work_accounts_controller.rb', line 24

def new
  @work_account = WorkAccount.new
end

#showObject



15
16
17
18
19
20
21
22
# File 'app/controllers/work_accounts_controller.rb', line 15

def show
  @work_account = WorkAccount.find(params[:id])
  works = @work_account.works.select{|w|w.user_id == current_user.id}
  @backlog_totals = works.to_summarized_hash {|work| [work.task && work.task.backlog, work.hours]}
  @task_totals = works.to_summarized_hash {|work| [work.task, work.hours]}
  @task_totals_per_backlog = @task_totals.to_a.to_grouped_hash {|task, hours| [task && task.backlog, [task, hours]]}
  @total_hours = works.inject(BigDecimal('0')) {|total, work| total += work.hours}
end

#updateObject



42
43
44
45
46
47
48
49
50
# File 'app/controllers/work_accounts_controller.rb', line 42

def update
  @work_account = WorkAccount.find(params[:id])
  if @work_account.update_attributes(params[:work_account])
    flash[:notice] = 'WorkAccount was successfully updated.'
    back_or_redirect_to :action => 'show', :id => @work_account
  else
    render :action => 'edit'
  end
end