mirror of https://github.com/fspc/BikeShed-1.git
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.
80 lines
3.4 KiB
80 lines
3.4 KiB
class UserLogs < Netzke::Basepack::Grid
|
|
|
|
def configure(c)
|
|
super
|
|
|
|
#all users
|
|
user_log_strong_default_attrs = {
|
|
:loggable_type => 'User',
|
|
:log_action_type => 'ActsAsLoggable::UserAction',
|
|
:logger_type => 'User',
|
|
:logger_id => controller.current_user.id,
|
|
:copy_type => 'Bike',
|
|
:copy_action_type => 'ActsAsLoggable::BikeAction',
|
|
:copy_action_id => 4
|
|
}
|
|
|
|
#this seems inefficient
|
|
if can? :manage, ::ActsAsLoggable::Log.where(:loggable_type => "User").all
|
|
#admins and staff
|
|
|
|
#if selected user nil, then the admin is viewing their own profile
|
|
selected_user = User.find_by_id(session[:selected_user_id])
|
|
selected_user = controller.current_user if selected_user.nil?
|
|
|
|
user_log_scope = lambda { |rel| rel.where(:loggable_type => 'User',:loggable_id => selected_user.id );}
|
|
user_log_strong_default_attrs.merge!( { :loggable_id => selected_user.id } )
|
|
user_log_data_store = {auto_load: true }
|
|
else
|
|
#just users
|
|
user_log_scope = lambda { |rel| rel.where(:loggable_type => 'User',:loggable_id => controller.current_user.id)}
|
|
user_log_strong_default_attrs.merge!( { :loggable_id => controller.current_user.id } )
|
|
user_log_data_store = {auto_load: true }
|
|
end
|
|
|
|
c.model = "ActsAsLoggable::Log"
|
|
c.title = "User Timesheet"
|
|
c.force_fit = true
|
|
c.data_store = user_log_data_store
|
|
c.scope = user_log_scope
|
|
c.strong_default_attrs = user_log_strong_default_attrs
|
|
|
|
c.columns = [
|
|
{ :name => :start_date, :format => "g:ia - D, M j - Y", :width => 165, :default_value => Time.now.to_formatted_s(:db) },
|
|
{ :name => :end_date, :format => "g:ia - D, M j - Y", :default_value => Time.now.to_formatted_s(:db) },
|
|
{ :name => :hours, :getter => lambda { |rec| (rec.end_date - rec.start_date)/3600 }, :sorting_scope => :sort_by_duration},
|
|
:description,
|
|
{ :id => :user_action__action, :name => :user_action__action, :text => 'Action', :default_value => ::ActsAsLoggable::UserAction.all.first.id },
|
|
{ :name => :logged_by, :getter => lambda{ |rec|
|
|
user = User.find_by_id(rec.logger_id)
|
|
user.nil? ? "" : "#{user.first_name} #{user.last_name}"
|
|
}
|
|
}
|
|
]
|
|
end
|
|
|
|
def default_fields_for_forms
|
|
#figure out a better way to do this
|
|
bike_store = Bike.all.map { |b| [b.id, b.shop_id] }
|
|
current_user ||= User.find_by_id(session[:selected_user_id]) || controller.current_user
|
|
bike_id = current_user.bike.nil? ? nil : current_user.bike.id
|
|
[
|
|
{ :no_binding => true, :xtype => 'displayfield', :fieldLabel => "Log for:", :value => "#{current_user.to_s}"},
|
|
{ :name => :start_date},
|
|
{ :name => :end_date},
|
|
{ :name => :description},
|
|
#had to hack acts_as_loggable/log.rb to get this to work
|
|
{ :name => :user_action__action, :field_label => 'Action', :min_chars => 1},
|
|
{ :name => :for_bike, :checkboxName => :copy_log, :inputValue => true, :title => "Copy description to a Bike's History?", :xtype => 'fieldset', :checkboxToggle => true, :collapsed => true, :items => [
|
|
{:xtype => 'combo', :no_binding => true, :name => :copy_id, :title => 'Bike', :fieldLabel => 'Bike', :store => bike_store, :value => bike_id}
|
|
]
|
|
}
|
|
]
|
|
end
|
|
|
|
#override with nil to remove actions
|
|
def default_bbar
|
|
[ :apply, :add_in_form, :search ]
|
|
end
|
|
|
|
end
|
|
|