1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-29 10:24:20 +01:00
fab-manager/app/controllers/open_api/v1/invoices_controller.rb

31 lines
883 B
Ruby
Raw Normal View History

# frozen_string_literal: true
# OpenAPI controller for the invoices
2016-05-04 18:17:50 +02:00
class OpenAPI::V1::InvoicesController < OpenAPI::V1::BaseController
2023-02-24 17:26:55 +01:00
extend OpenAPI::APIDoc
include Rails::Pagination
2016-05-05 15:02:02 +02:00
expose_doc
2016-05-04 18:17:50 +02:00
def index
@invoices = Invoice.order(created_at: :desc)
2023-03-03 10:09:07 +01:00
.includes(:payment_gateway_object, :invoicing_profile)
.references(:invoicing_profiles)
2016-05-04 18:17:50 +02:00
@invoices = @invoices.where(invoicing_profiles: { user_id: may_array(params[:user_id]) }) if params[:user_id].present?
2016-05-04 18:17:50 +02:00
@invoices = @invoices.page(params[:page]).per(per_page)
paginate @invoices, per_page: per_page
2016-05-04 18:17:50 +02:00
end
def download
@invoice = Invoice.find(params[:id])
send_file Rails.root.join(@invoice.file), type: 'application/pdf', disposition: 'inline', filename: @invoice.filename
2016-05-04 18:17:50 +02:00
end
private
def per_page
params[:per_page] || 20
end
2016-05-04 18:17:50 +02:00
end