0a6345c60b
This commit implements the sort functionality for the user lists (by name, email, last_activity) and ordergroup lists (by name). It is a first attempt addressing issue #560.
26 lines
826 B
Ruby
26 lines
826 B
Ruby
class Admin::OrdergroupsController < Admin::BaseController
|
|
inherit_resources
|
|
|
|
def index
|
|
@ordergroups = Ordergroup.undeleted.sort_by_param(params["sort"])
|
|
|
|
if request.format.csv?
|
|
send_data OrdergroupsCsv.new(@ordergroups).to_csv, filename: 'ordergroups.csv', type: 'text/csv'
|
|
end
|
|
|
|
# if somebody uses the search field:
|
|
unless params[:query].blank?
|
|
@ordergroups = @ordergroups.where('name LIKE ?', "%#{params[:query]}%")
|
|
end
|
|
|
|
@ordergroups = @ordergroups.page(params[:page]).per(@per_page)
|
|
end
|
|
|
|
def destroy
|
|
@ordergroup = Ordergroup.find(params[:id])
|
|
@ordergroup.mark_as_deleted
|
|
redirect_to admin_ordergroups_url, notice: t('admin.ordergroups.destroy.notice')
|
|
rescue => error
|
|
redirect_to admin_ordergroups_url, alert: t('admin.ordergroups.destroy.error')
|
|
end
|
|
end
|