7af796c09c
Conflicts: app/controllers/admin/ordergroups_controller.rb app/controllers/finance/balancing_controller.rb app/controllers/suppliers_controller.rb app/views/articles/_article.html.haml app/views/finance/balancing/_summary.haml app/views/finance/balancing/new.html.haml app/views/group_orders/_form.html.haml app/views/home/_apple_bar.html.haml app/views/suppliers/index.haml
23 lines
695 B
Ruby
23 lines
695 B
Ruby
# encoding: utf-8
|
|
class Admin::OrdergroupsController < Admin::BaseController
|
|
inherit_resources
|
|
|
|
def index
|
|
@ordergroups = Ordergroup.undeleted.order('name ASC')
|
|
|
|
# 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
|