add authentication to group_order_invoices controller
This commit is contained in:
parent
0539edce82
commit
b6854bc416
1 changed files with 12 additions and 9 deletions
|
@ -1,7 +1,9 @@
|
|||
class GroupOrderInvoicesController < ApplicationController
|
||||
include Concerns::SendGroupOrderInvoicePdf
|
||||
before_action :authenticate_finance
|
||||
|
||||
def show
|
||||
begin
|
||||
@group_order_invoice = GroupOrderInvoice.find(params[:id])
|
||||
if FoodsoftConfig[:contact][:tax_number]
|
||||
respond_to do |format|
|
||||
|
@ -12,9 +14,10 @@ class GroupOrderInvoicesController < ApplicationController
|
|||
else
|
||||
raise RecordInvalid
|
||||
end
|
||||
rescue => error
|
||||
rescue ActiveRecord::RecordInvalid => error
|
||||
redirect_back fallback_location: root_path, notice: 'Something went wrong', alert: I18n.t('errors.general_msg', msg: "#{error} " + I18n.t('errors.check_tax_number'))
|
||||
end
|
||||
end
|
||||
|
||||
def destroy
|
||||
goi = GroupOrderInvoice.find(params[:id])
|
||||
|
|
Loading…
Reference in a new issue