OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
openproject/app/controllers/hourly_rates_controller.rb

167 lines
5.0 KiB

#-- copyright
# OpenProject Costs Plugin
#
# Copyright (C) 2009 - 2014 the OpenProject Foundation (OPF)
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# version 3.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#++
class HourlyRatesController < ApplicationController
helper :users
helper :sort
include SortHelper
helper :hourly_rates
include HourlyRatesHelper
before_filter :find_user, only: [:show, :edit, :update, :set_rate]
before_filter :find_optional_project, only: [:show, :edit, :update]
before_filter :find_project, only: [:set_rate]
# #show, #edit have their own authorization
before_filter :authorize, except: [:show, :edit, :update]
# TODO: this should be an index
def show
if @project
return deny_access unless User.current.allowed_to?(:view_hourly_rates, @project, for: @user)
@rates = HourlyRate.where(user_id: @user, project_id: @project)
.order("#{HourlyRate.table_name}.valid_from desc")
else
@rates = HourlyRate.history_for_user(@user)
@rates_default = @rates.delete(nil)
end
end
def edit
# TODO: split into edit and update
# remove code where appropriate
if @project
# Hourly Rate
return deny_access unless User.current.allowed_to?(:edit_hourly_rates, @project)
else
# Default Hourly Rate
return deny_access unless User.current.admin?
end
if @project.nil?
@rates = DefaultHourlyRate.where(user_id: @user)
.order("#{DefaultHourlyRate.table_name}.valid_from desc")
@rates << @user.default_rates.build(valid_from: Date.today) if @rates.empty?
else
@rates = @user.rates.select { |r| r.project_id == @project.id }.sort { |a, b| b.valid_from <=> a.valid_from }
@rates << @user.rates.build(valid_from: Date.today, project: @project) if @rates.empty?
end
render action: 'edit', layout: !request.xhr?
end
def update
# TODO: copied over from edit
# remove code where appropriate
if @project
# Hourly Rate
return deny_access unless User.current.allowed_to?(:edit_hourly_rates, @project)
else
# Default Hourly Rate
return deny_access unless User.current.admin?
end
if params.include? 'user'
update_rates @user,
@project,
permitted_params.user_rates[:new_rate_attributes],
permitted_params.user_rates[:existing_rate_attributes]
else
delete_rates @user, @project
end
if @user.save
flash[:notice] = l(:notice_successful_update)
if @project.nil?
redirect_back_or_default(controller: 'users', action: 'edit', id: @user)
else
redirect_back_or_default(action: 'show', id: @user, project_id: @project)
end
else
if @project.nil?
@rates = @user.default_rates
@rates << @user.default_rates.build(valid_from: Date.today) if @rates.empty?
else
@rates = @user.rates.select { |r| r.project_id == @project.id }.sort { |a, b| b.valid_from <=> a.valid_from }
@rates << @user.rates.build(valid_from: Date.today, project: @project) if @rates.empty?
end
render action: 'edit', layout: !request.xhr?
end
end
def set_rate
today = Date.today
rate = @user.rate_at(today, @project)
rate = HourlyRate.new if rate.nil? || rate.valid_from != today
rate.tap do |hr|
hr.project = @project
hr.user = @user
hr.valid_from = today
hr.rate = clean_currency(params[:rate])
end
if rate.save
if request.xhr?
render :update do |page|
page.replace_html "rate_for_#{@user.id}", link_to(number_to_currency(rate.rate), action: 'edit', id: @user, project_id: @project)
end
else
flash[:notice] = l(:notice_successful_update)
redirect_to action: 'index'
end
end
end
private
def update_rates(user, project, added_rates, changed_rates)
user.add_rates(project, added_rates)
user.set_existing_rates(project, changed_rates)
end
def delete_rates(user, project)
if project.present?
user.rates.delete_all
else
user.default_rates.delete_all
end
end
def find_project
@project = Project.find(params[:project_id])
rescue ActiveRecord::RecordNotFound
render_404
end
def find_optional_project
@project = params[:project_id].blank? ? nil : Project.find(params[:project_id])
rescue ActiveRecord::RecordNotFound
render_404
end
def find_user
@user = params[:id] ? User.find(params[:id]) : User.current
rescue ActiveRecord::RecordNotFound
render_404
end
end