module BrInvoicesPdf::Cfe::Parser::Sat

Constants

AVAILABLE_UF

Public Instance Methods

execute(xml) click to toggle source
# File lib/br_invoices_pdf/cfe/parser/sat.rb, line 13
def execute(xml)
  {
    pos_number: locate_element(xml, 'infCFe/ide/numeroCaixa'),
    ncfe_number: locate_element(xml, 'infCFe/ide/nCFe'),
    uf: AVAILABLE_UF[locate_element(xml, 'infCFe/ide/cUF')],
    sat_number: locate_element(xml, 'infCFe/ide/nserieSAT'),
    emission_date: locate_element(xml, 'infCFe/ide/dEmi'),
    emission_hour: locate_element(xml, 'infCFe/ide/hEmi'),
    document_qr_code_signature: locate_element(xml, 'infCFe/ide/assinaturaQRCODE')
  }
end