Class: CieloTrailler
- Inherits:
-
FormatSection
- Object
- FormatSection
- CieloTrailler
- Defined in:
- lib/formatos/cielo/cielo_trailler.rb
Instance Method Summary collapse
- #get_total_registros ⇒ Object
- #get_valor_total ⇒ Object
-
#initialize(master) ⇒ CieloTrailler
constructor
A new instance of CieloTrailler.
-
#is_valid? ⇒ Boolean
——————————————————————- ——————————————————————- Validações.
-
#process_section(file) ⇒ Object
——————————————————————- ——————————————————————- Gerais.
- #set_data_prevista(valor = "0") ⇒ Object
- #set_reservado(valor = "") ⇒ Object
- #set_total_registros(registros) ⇒ Object
- #set_valor_aceito(valor = "0") ⇒ Object
- #set_valor_liquido(valor = "0") ⇒ Object
- #set_valor_total(valor) ⇒ Object
Constructor Details
#initialize(master) ⇒ CieloTrailler
Returns a new instance of CieloTrailler.
4 5 6 7 8 9 10 11 12 13 14 15 16 |
# File 'lib/formatos/cielo/cielo_trailler.rb', line 4 def initialize master super(master, true, true, false) @section = Section.new({ 0 => Position.new(1, 2, false, "99", true), # Código do Registro 1 => Position.new(2, 7, true), # Qtde de Registros 2 => Position.new(3, 15, true), # Valor total bruto 3 => Position.new(4, 15, true), # Valor total aceito 4 => Position.new(5, 15, true), # Valor total liquido 5 => Position.new(6, 8, true), # Data prevista do credito (Zeros na remessa) 6 => Position.new(7, 188, false), # Reservado (Brancos) }) end |
Instance Method Details
#get_total_registros ⇒ Object
31 32 33 |
# File 'lib/formatos/cielo/cielo_trailler.rb', line 31 def get_total_registros self.get_section_value(1) end |
#get_valor_total ⇒ Object
35 36 37 |
# File 'lib/formatos/cielo/cielo_trailler.rb', line 35 def get_valor_total self.get_section_value(2).to_i end |
#is_valid? ⇒ Boolean
Validações
81 82 83 |
# File 'lib/formatos/cielo/cielo_trailler.rb', line 81 def is_valid? self.get_total_registros.length > 0 and self.get_valor_total > 0 end |
#process_section(file) ⇒ Object
Gerais
21 22 23 24 25 26 27 28 |
# File 'lib/formatos/cielo/cielo_trailler.rb', line 21 def process_section file self.set_total_registros file[2..8] self.set_valor_total file[9..24] self.set_valor_aceito file[25..39] self.set_valor_liquido file[40..54] self.set_data_prevista file[55..62] self.set_reservado file[63..249] end |
#set_data_prevista(valor = "0") ⇒ Object
70 71 72 |
# File 'lib/formatos/cielo/cielo_trailler.rb', line 70 def set_data_prevista valor = "0" self.set_section_value(5, valor) end |
#set_reservado(valor = "") ⇒ Object
74 75 76 |
# File 'lib/formatos/cielo/cielo_trailler.rb', line 74 def set_reservado valor = "" self.set_section_value(6, valor) end |
#set_total_registros(registros) ⇒ Object
40 41 42 43 44 45 46 47 48 49 |
# File 'lib/formatos/cielo/cielo_trailler.rb', line 40 def set_total_registros registros registros = registros.to_i if registros > 0 self.set_section_value(1, registros) else raise "#{get_id}: A quantidade de registros deve ser positiva e maior que 0 Valor: #{registros}" end end |
#set_valor_aceito(valor = "0") ⇒ Object
62 63 64 |
# File 'lib/formatos/cielo/cielo_trailler.rb', line 62 def set_valor_aceito valor = "0" self.set_section_value(3, valor) end |
#set_valor_liquido(valor = "0") ⇒ Object
66 67 68 |
# File 'lib/formatos/cielo/cielo_trailler.rb', line 66 def set_valor_liquido valor = "0" self.set_section_value(4, valor) end |
#set_valor_total(valor) ⇒ Object
51 52 53 54 55 56 57 58 59 60 |
# File 'lib/formatos/cielo/cielo_trailler.rb', line 51 def set_valor_total valor valor = valor.to_i if valor > 0 self.set_section_value(2, valor) else raise "#{get_id}: A quantidade de registros deve ser positiva e maior que 0 Valor: #{valor}" end end |