kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
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.
155 lines
4.9 KiB
155 lines
4.9 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
|
|
unloadable
|
|
|
|
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.all(
|
|
:conditions => { :user_id => @user, :project_id => @project },
|
|
:order => "#{HourlyRate.table_name}.valid_from desc")
|
|
else
|
|
@rates = HourlyRate.history_for_user(@user, true)
|
|
@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.all(
|
|
:conditions => {: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
|
|
|
|
@user.add_rates(@project, permitted_params.user_rates[:new_rate_attributes])
|
|
@user.set_existing_rates(@project, permitted_params.user_rates[:existing_rate_attributes])
|
|
|
|
if @user.save
|
|
flash[:notice] = l(:notice_successful_update)
|
|
if @project.nil?
|
|
redirect_back_or_default(:action => 'show', :id => @user)
|
|
else
|
|
redirect_back_or_default(:action => 'show', :id => @user, :project_id => @project)
|
|
end
|
|
else
|
|
if @project.nil?
|
|
@rates = DefaultHourlyRate.all(
|
|
:conditions => {: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
|
|
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 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
|
|
|