Class: Mindee::Product::FR::BankStatement::BankStatementV2Transaction

Inherits:
Mindee::Parsing::Standard::FeatureField show all
Includes:
Mindee::Parsing::Standard
Defined in:
lib/mindee/product/fr/bank_statement/bank_statement_v2_transaction.rb

Overview

The list of values that represent the financial transactions recorded in a bank statement.

Instance Attribute Summary collapse

Attributes inherited from Mindee::Parsing::Standard::AbstractField

#bounding_box, #confidence, #page_id, #polygon

Instance Method Summary collapse

Methods inherited from Mindee::Parsing::Standard::FeatureField

#format_for_display

Methods inherited from Mindee::Parsing::Standard::AbstractField

array_confidence, array_sum, float_to_string

Constructor Details

#initialize(prediction, page_id) ⇒ BankStatementV2Transaction

Returns a new instance of BankStatementV2Transaction.

Parameters:

  • prediction (Hash)
  • page_id (Integer, nil)


24
25
26
27
28
29
30
# File 'lib/mindee/product/fr/bank_statement/bank_statement_v2_transaction.rb', line 24

def initialize(prediction, page_id)
  super
  @amount = prediction['amount']
  @date = prediction['date']
  @description = prediction['description']
  @page_id = page_id
end

Instance Attribute Details

#amountFloat (readonly)

The monetary amount of the transaction.

Returns:

  • (Float)


14
15
16
# File 'lib/mindee/product/fr/bank_statement/bank_statement_v2_transaction.rb', line 14

def amount
  @amount
end

#dateString (readonly)

The date on which the transaction occurred.

Returns:

  • (String)


17
18
19
# File 'lib/mindee/product/fr/bank_statement/bank_statement_v2_transaction.rb', line 17

def date
  @date
end

#descriptionString (readonly)

The additional information about the transaction.

Returns:

  • (String)


20
21
22
# File 'lib/mindee/product/fr/bank_statement/bank_statement_v2_transaction.rb', line 20

def description
  @description
end

Instance Method Details

#printable_valuesHash

Returns:

  • (Hash)


33
34
35
36
37
38
39
40
# File 'lib/mindee/product/fr/bank_statement/bank_statement_v2_transaction.rb', line 33

def printable_values
  printable = {}
  printable[:amount] =
    @amount.nil? ? '' : Parsing::Standard::BaseField.float_to_string(@amount)
  printable[:date] = format_for_display(@date)
  printable[:description] = format_for_display(@description)
  printable
end

#table_printable_valuesHash

Returns:

  • (Hash)


43
44
45
46
47
48
49
50
# File 'lib/mindee/product/fr/bank_statement/bank_statement_v2_transaction.rb', line 43

def table_printable_values
  printable = {}
  printable[:amount] =
    @amount.nil? ? '' : Parsing::Standard::BaseField.float_to_string(@amount)
  printable[:date] = format_for_display(@date, 10)
  printable[:description] = format_for_display(@description, 36)
  printable
end

#to_sString

Returns:

  • (String)


63
64
65
66
67
68
69
70
# File 'lib/mindee/product/fr/bank_statement/bank_statement_v2_transaction.rb', line 63

def to_s
  printable = printable_values
  out_str = String.new
  out_str << "\n  :Amount: #{printable[:amount]}"
  out_str << "\n  :Date: #{printable[:date]}"
  out_str << "\n  :Description: #{printable[:description]}"
  out_str
end

#to_table_lineString

Returns:

  • (String)


53
54
55
56
57
58
59
60
# File 'lib/mindee/product/fr/bank_statement/bank_statement_v2_transaction.rb', line 53

def to_table_line
  printable = table_printable_values
  out_str = String.new
  out_str << format('| %- 11s', printable[:amount])
  out_str << format('| %- 11s', printable[:date])
  out_str << format('| %- 37s', printable[:description])
  out_str << '|'
end