Class: CamtParser::Format052::Report

Inherits:
Object
  • Object
show all
Defined in:
lib/camt_parser/052/report.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(xml_data) ⇒ Report

Returns a new instance of Report.



7
8
9
# File 'lib/camt_parser/052/report.rb', line 7

def initialize(xml_data)
  @xml_data = xml_data
end

Instance Attribute Details

#xml_dataObject (readonly)

Returns the value of attribute xml_data.



5
6
7
# File 'lib/camt_parser/052/report.rb', line 5

def xml_data
  @xml_data
end

Class Method Details

.parse(xml) ⇒ Object



66
67
68
# File 'lib/camt_parser/052/report.rb', line 66

def self.parse(xml)
  self.new Nokogiri::XML(xml).xpath('Report')
end

Instance Method Details

#accountObject



19
20
21
# File 'lib/camt_parser/052/report.rb', line 19

def 
  @account ||= CamtParser::Account.new(xml_data.xpath('Acct').first)
end

#closing_balanceObject Also known as: closing_or_intermediary_balance



50
51
52
53
54
55
56
57
58
# File 'lib/camt_parser/052/report.rb', line 50

def closing_balance
  @closing_balance ||= begin
    bal = xml_data.xpath('Bal/Tp//Cd[contains(text(), "CLBD")]').first.ancestors('Bal')
    date = bal.xpath('Dt/Dt/text()').text
    credit = bal.xpath('CdtDbtInd/text()').text == 'CRDT'
    currency = bal.xpath('Amt').attribute('Ccy').value
    CamtParser::AccountBalance.new bal.xpath('Amt/text()').text, currency, date, credit
  end
end

#entriesObject



23
24
25
# File 'lib/camt_parser/052/report.rb', line 23

def entries
  @entries ||= xml_data.xpath('Ntry').map{ |x| CamtParser::Entry.new(x) }
end

#from_date_timeObject



31
32
33
# File 'lib/camt_parser/052/report.rb', line 31

def from_date_time
  @from_date_time ||= (x = xml_data.xpath('FrToDt/FrDtTm')).empty? ? nil : Time.parse(x.first.content)
end

#generation_dateObject



15
16
17
# File 'lib/camt_parser/052/report.rb', line 15

def generation_date
  @generation_date ||= Time.parse(xml_data.xpath('CreDtTm/text()').text)
end

#identificationObject



11
12
13
# File 'lib/camt_parser/052/report.rb', line 11

def identification
  @identification ||= xml_data.xpath('Id/text()').text
end


27
28
29
# File 'lib/camt_parser/052/report.rb', line 27

def legal_sequence_number
  @legal_sequence_number ||= xml_data.xpath('LglSeqNb/text()').text
end

#opening_balanceObject Also known as: opening_or_intermediary_balance



39
40
41
42
43
44
45
46
47
# File 'lib/camt_parser/052/report.rb', line 39

def opening_balance
  @opening_balance ||= begin
    bal = xml_data.xpath('Bal/Tp//Cd[contains(text(), "PRCD")]').first.ancestors('Bal')
    date = bal.xpath('Dt/Dt/text()').text
    credit = bal.xpath('CdtDbtInd/text()').text == 'CRDT'
    currency = bal.xpath('Amt').attribute('Ccy').value
    CamtParser::AccountBalance.new bal.xpath('Amt/text()').text, currency, date, credit
  end
end

#sourceObject



62
63
64
# File 'lib/camt_parser/052/report.rb', line 62

def source
  xml_data.to_s
end

#to_date_timeObject



35
36
37
# File 'lib/camt_parser/052/report.rb', line 35

def to_date_time
  @to_date_time ||= (x = xml_data.xpath('FrToDt/ToDtTm')).empty? ? nil : Time.parse(x.first.content)
end