Sha256: eecc536ccef21db9abbc020a7f3044163e27fd1a9827e955185318c9b265a8b3

Contents?: true

Size: 1.56 KB

Versions: 21

Compression:

Stored size: 1.56 KB

Contents

# frozen_string_literal: true

module BrInvoicesPdf
  module Nfce
    module Renderer
      module FiscalMessage
        extend Util::BaseRenderer
        extend BaseRenderer

        module_function

        def execute(pdf, data)
          box(pdf, [0, pdf.cursor], page_content_width(pdf)) do
            emission_details(pdf, data)
            emission_date(pdf, data)
            consult_key(pdf, data[:emission_details])
          end
        end

        def consult_key(pdf, details)
          key = details[:access_key]
          if key
            pdf.text("Consulte pela chave de acesso em: #{details[:check_url]} \n\n", align: :center)
            pdf.text("CHAVE DE ACESSO:\n#{key.scan(/.{1,4}/).join(' ')}", align: :center)
          else
            pdf.text("EMITIDA EM CONTIGÊNCIA\nPendente de Autorização \n\n", align: :center)
          end
        end
        private_class_method :consult_key

        # :reek:FeatureEnvy
        def emission_date(pdf, data)
          details = data[:emission_details]
          text = "Emissão: #{format_date(details[:emission_timestamp])} - Via Consumidor\n\n"
          pdf.text(text, align: :center)
        end
        private_class_method :emission_date

        # :reek:FeatureEnvy
        def emission_details(pdf, data)
          pdf.text("Mensagem Fiscal\n\n", style: :italic)
          details = data[:emission_details]
          text = "Número: #{details[:number]} - Série: #{details[:serie]}\n\n"
          pdf.text(text, align: :center)
        end
        private_class_method :emission_details
      end
    end
  end
end

Version data entries

21 entries across 21 versions & 1 rubygems

Version Path
br_invoices_pdf-0.2.24 lib/br_invoices_pdf/nfce/renderer/fiscal_message.rb
br_invoices_pdf-0.2.23 lib/br_invoices_pdf/nfce/renderer/fiscal_message.rb
br_invoices_pdf-0.2.22 lib/br_invoices_pdf/nfce/renderer/fiscal_message.rb
br_invoices_pdf-0.2.21 lib/br_invoices_pdf/nfce/renderer/fiscal_message.rb
br_invoices_pdf-0.2.20 lib/br_invoices_pdf/nfce/renderer/fiscal_message.rb
br_invoices_pdf-0.2.19 lib/br_invoices_pdf/nfce/renderer/fiscal_message.rb
br_invoices_pdf-0.2.18 lib/br_invoices_pdf/nfce/renderer/fiscal_message.rb
br_invoices_pdf-0.2.17 lib/br_invoices_pdf/nfce/renderer/fiscal_message.rb
br_invoices_pdf-0.2.16 lib/br_invoices_pdf/nfce/renderer/fiscal_message.rb
br_invoices_pdf-0.2.15 lib/br_invoices_pdf/nfce/renderer/fiscal_message.rb
br_invoices_pdf-0.2.14 lib/br_invoices_pdf/nfce/renderer/fiscal_message.rb
br_invoices_pdf-0.2.14.alpha.23 lib/br_invoices_pdf/nfce/renderer/fiscal_message.rb
br_invoices_pdf-0.2.13 lib/br_invoices_pdf/nfce/renderer/fiscal_message.rb
br_invoices_pdf-0.2.13.alpha.22 lib/br_invoices_pdf/nfce/renderer/fiscal_message.rb
br_invoices_pdf-0.2.12.alpha.21 lib/br_invoices_pdf/nfce/renderer/fiscal_message.rb
br_invoices_pdf-0.2.12.alpha.20 lib/br_invoices_pdf/nfce/renderer/fiscal_message.rb
br_invoices_pdf-0.2.12 lib/br_invoices_pdf/nfce/renderer/fiscal_message.rb
br_invoices_pdf-0.2.11 lib/br_invoices_pdf/nfce/renderer/fiscal_message.rb
br_invoices_pdf-0.2.10 lib/br_invoices_pdf/nfce/renderer/fiscal_message.rb
br_invoices_pdf-0.2.9 lib/br_invoices_pdf/nfce/renderer/fiscal_message.rb