maestrano/mno-enterprise

View on GitHub
frontend/app/controllers/mno_enterprise/invoices_controller.rb

Summary

Maintainability
A
40 mins
Test Coverage
module MnoEnterprise
  class InvoicesController < ApplicationController
    before_filter :authenticate_user!
    before_filter :redirect_to_lounge_if_unconfirmed
    
    # GET /mnoe/invoices/201504-NU4
    def show
      @invoice = MnoEnterprise::Invoice.where(slug: params[:id].upcase).reload.first
      authorize! :manage_billing, current_user.organizations.find(@invoice.organization_id)
    
      respond_to do |format|
        if @invoice
          filename = "Invoice - #{@invoice.slug}.pdf"
          pdf_view = MnoEnterprise::InvoicePdf.new(@invoice).render
          format.html { send_data pdf_view, filename: filename, type: "application/pdf", disposition: 'inline'  }
        else
          format.html { redirect_to root_path, :alert => 'Sorry, the page requested could not be displayed' }
        end
      end
    end
  end
end