Sha256: b158f5d34885812dd223b6b3cb6cec8c5c39849397a08ccda33ec6cdcf55003a
Contents?: true
Size: 1.47 KB
Versions: 4
Compression:
Stored size: 1.47 KB
Contents
# frozen_string_literal: true module Api module V1 module Income # This class is responsible for all the API calls related to income invoices. class Invoices < Api::V1::Base def by(id:, pdf: false) if pdf == true return get("#{@url_api_path}/income/invoices/#{id}/pdf", nil, { headers: { 'Content-Type' => 'application/pdf' } }) end get("#{@url_api_path}/income/invoices/#{id}") end def all(page: 1, # rubocop:disable Metrics/CyclomaticComplexity page_size: 100, order_by: nil, order_direction: nil, creditor_id: nil, project_id: nil, document_date_range_start: nil, document_date_range_end: nil) query = { page: page, page_size: page_size } query[:order_by] = order_by if order_by query[:order_direction] = order_direction if order_direction query[:creditor_id] = creditor_id if creditor_id query[:project_id] = project_id if project_id query[:document_date_range_start] = document_date_range_start if document_date_range_start if document_date_range_end && document_date_range_start query[:document_date_range_end] = document_date_range_end end get("#{@url_api_path}/income/invoices", query) end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems