mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-29 10:24:20 +01:00
31 lines
883 B
Ruby
31 lines
883 B
Ruby
# frozen_string_literal: true
|
|
|
|
# OpenAPI controller for the invoices
|
|
class OpenAPI::V1::InvoicesController < OpenAPI::V1::BaseController
|
|
extend OpenAPI::APIDoc
|
|
include Rails::Pagination
|
|
expose_doc
|
|
|
|
def index
|
|
@invoices = Invoice.order(created_at: :desc)
|
|
.includes(:payment_gateway_object, :invoicing_profile)
|
|
.references(:invoicing_profiles)
|
|
|
|
@invoices = @invoices.where(invoicing_profiles: { user_id: may_array(params[:user_id]) }) if params[:user_id].present?
|
|
|
|
@invoices = @invoices.page(params[:page]).per(per_page)
|
|
paginate @invoices, per_page: per_page
|
|
end
|
|
|
|
def download
|
|
@invoice = Invoice.find(params[:id])
|
|
send_file Rails.root.join(@invoice.file), type: 'application/pdf', disposition: 'inline', filename: @invoice.filename
|
|
end
|
|
|
|
private
|
|
|
|
def per_page
|
|
params[:per_page] || 20
|
|
end
|
|
end
|