Module: V08TraillerCommons

Included in:
V08::Remessa::Trailler, V08::Retorno::Trailler
Defined in:
lib/formatos/cnab400/arquivo/V08/trailler_commons.rb

Instance Method Summary collapse

Instance Method Details

#get_codigo_arquivoObject



14
15
16
# File 'lib/formatos/cnab400/arquivo/V08/trailler_commons.rb', line 14

def get_codigo_arquivo
  self.get_section_value(1)
end

#get_codigo_remessaObject



Getters



6
7
8
# File 'lib/formatos/cnab400/arquivo/V08/trailler_commons.rb', line 6

def get_codigo_remessa
  self.get_section_value(1).to_i
end

#get_sequencialObject



10
11
12
# File 'lib/formatos/cnab400/arquivo/V08/trailler_commons.rb', line 10

def get_sequencial
  self.get_section_value(3)
end

#get_sequencial_retornoObject



26
27
28
# File 'lib/formatos/cnab400/arquivo/V08/trailler_commons.rb', line 26

def get_sequencial_retorno
  self.get_section_value(28)
end

#get_total_cobrancaObject



22
23
24
# File 'lib/formatos/cnab400/arquivo/V08/trailler_commons.rb', line 22

def get_total_cobranca
  self.get_section_value(6)
end

#get_total_titulosObject



18
19
20
# File 'lib/formatos/cnab400/arquivo/V08/trailler_commons.rb', line 18

def get_total_titulos
  self.get_section_value(5)
end

#set_branco(valor = " ") ⇒ Object



Setters



34
35
36
# File 'lib/formatos/cnab400/arquivo/V08/trailler_commons.rb', line 34

def set_branco valor = " "
  self.set_section_value(1, valor)
end

#set_codigo_arquivo(valor = "") ⇒ Object



38
39
40
# File 'lib/formatos/cnab400/arquivo/V08/trailler_commons.rb', line 38

def set_codigo_arquivo valor = ""
  self.set_section_value(1, valor)
end

#set_codigo_banco(valor = "") ⇒ Object



50
51
52
# File 'lib/formatos/cnab400/arquivo/V08/trailler_commons.rb', line 50

def set_codigo_banco valor = ""
  self.set_section_value(3, valor)
end

#set_numero_aviso(valor = "") ⇒ Object



66
67
68
# File 'lib/formatos/cnab400/arquivo/V08/trailler_commons.rb', line 66

def set_numero_aviso valor = ""
  self.set_section_value(7, valor)
end

#set_qtde_abatimento_cancelado(valor = "") ⇒ Object



102
103
104
# File 'lib/formatos/cnab400/arquivo/V08/trailler_commons.rb', line 102

def set_qtde_abatimento_cancelado valor = ""
  self.set_section_value(16, valor)
end

#set_qtde_abatimento_concedido(valor = "") ⇒ Object



118
119
120
# File 'lib/formatos/cnab400/arquivo/V08/trailler_commons.rb', line 118

def set_qtde_abatimento_concedido valor = ""
  self.set_section_value(20, valor)
end

#set_qtde_baixados(valor = "") ⇒ Object



94
95
96
# File 'lib/formatos/cnab400/arquivo/V08/trailler_commons.rb', line 94

def set_qtde_baixados valor = ""
  self.set_section_value(14, valor)
end

#set_qtde_confirmados(valor = "") ⇒ Object



74
75
76
# File 'lib/formatos/cnab400/arquivo/V08/trailler_commons.rb', line 74

def set_qtde_confirmados valor = ""
  self.set_section_value(9, valor)
end

#set_qtde_liquidados(valor = "") ⇒ Object



86
87
88
# File 'lib/formatos/cnab400/arquivo/V08/trailler_commons.rb', line 86

def set_qtde_liquidados valor = ""
  self.set_section_value(12, valor)
end

#set_qtde_protesto_confirmado(valor = "") ⇒ Object



126
127
128
# File 'lib/formatos/cnab400/arquivo/V08/trailler_commons.rb', line 126

def set_qtde_protesto_confirmado valor = ""
  self.set_section_value(22, valor)
end

#set_qtde_rateios(valor = "") ⇒ Object



142
143
144
# File 'lib/formatos/cnab400/arquivo/V08/trailler_commons.rb', line 142

def set_qtde_rateios valor = ""
  self.set_section_value(26, valor)
end

#set_qtde_titulos(valor = "") ⇒ Object



58
59
60
# File 'lib/formatos/cnab400/arquivo/V08/trailler_commons.rb', line 58

def set_qtde_titulos valor = ""
  self.set_section_value(5, valor)
end

#set_qtde_vencimento_alterado(valor = "") ⇒ Object



110
111
112
# File 'lib/formatos/cnab400/arquivo/V08/trailler_commons.rb', line 110

def set_qtde_vencimento_alterado valor = ""
  self.set_section_value(18, valor)
end

#set_reservado_1(valor = " ") ⇒ Object



54
55
56
# File 'lib/formatos/cnab400/arquivo/V08/trailler_commons.rb', line 54

def set_reservado_1 valor = " "
  self.set_section_value(4, valor)
end

#set_reservado_2(valor = " ") ⇒ Object



70
71
72
# File 'lib/formatos/cnab400/arquivo/V08/trailler_commons.rb', line 70

def set_reservado_2 valor = " "
  self.set_section_value(8, valor)
end

#set_reservado_3(valor = " ") ⇒ Object



134
135
136
# File 'lib/formatos/cnab400/arquivo/V08/trailler_commons.rb', line 134

def set_reservado_3 valor = " "
  self.set_section_value(24, valor)
end

#set_reservado_4(valor = "") ⇒ Object



146
147
148
# File 'lib/formatos/cnab400/arquivo/V08/trailler_commons.rb', line 146

def set_reservado_4 valor = ""
  self.set_section_value(27, valor)
end

#set_sequencial(valor) ⇒ Object



42
43
44
# File 'lib/formatos/cnab400/arquivo/V08/trailler_commons.rb', line 42

def set_sequencial valor
  self.set_section_value(2, valor.to_s)
end

#set_sequencial_retorno(valor = "") ⇒ Object



150
151
152
# File 'lib/formatos/cnab400/arquivo/V08/trailler_commons.rb', line 150

def set_sequencial_retorno valor = ""
  self.set_section_value(28, valor)
end

#set_tipo_registro(valor = "") ⇒ Object



46
47
48
# File 'lib/formatos/cnab400/arquivo/V08/trailler_commons.rb', line 46

def set_tipo_registro valor = ""
  self.set_section_value(2, valor)
end

#set_valor_abatimento_cancelado(valor = "") ⇒ Object



106
107
108
# File 'lib/formatos/cnab400/arquivo/V08/trailler_commons.rb', line 106

def set_valor_abatimento_cancelado valor = ""
  self.set_section_value(17, valor)
end

#set_valor_abatimento_concedido(valor = "") ⇒ Object



122
123
124
# File 'lib/formatos/cnab400/arquivo/V08/trailler_commons.rb', line 122

def set_valor_abatimento_concedido valor = ""
  self.set_section_value(21, valor)
end

#set_valor_baixados(valor = "") ⇒ Object



98
99
100
# File 'lib/formatos/cnab400/arquivo/V08/trailler_commons.rb', line 98

def set_valor_baixados valor = ""
  self.set_section_value(15, valor)
end

#set_valor_cobranca(valor = "") ⇒ Object



62
63
64
# File 'lib/formatos/cnab400/arquivo/V08/trailler_commons.rb', line 62

def set_valor_cobranca valor = ""
  self.set_section_value(6, valor)
end

#set_valor_confirmados(valor = "") ⇒ Object



78
79
80
# File 'lib/formatos/cnab400/arquivo/V08/trailler_commons.rb', line 78

def set_valor_confirmados valor = ""
  self.set_section_value(10, valor)
end

#set_valor_liquidados(valor = "") ⇒ Object



82
83
84
# File 'lib/formatos/cnab400/arquivo/V08/trailler_commons.rb', line 82

def set_valor_liquidados valor = ""
  self.set_section_value(11, valor)
end

#set_valor_ocorrencia_06(valor = "") ⇒ Object



90
91
92
# File 'lib/formatos/cnab400/arquivo/V08/trailler_commons.rb', line 90

def set_valor_ocorrencia_06 valor = ""
  self.set_section_value(13, valor)
end

#set_valor_protesto_confirmado(valor = "") ⇒ Object



130
131
132
# File 'lib/formatos/cnab400/arquivo/V08/trailler_commons.rb', line 130

def set_valor_protesto_confirmado valor = ""
  self.set_section_value(23, valor)
end

#set_valor_rateios(valor = "") ⇒ Object



138
139
140
# File 'lib/formatos/cnab400/arquivo/V08/trailler_commons.rb', line 138

def set_valor_rateios valor = ""
  self.set_section_value(25, valor)
end

#set_valor_vencimento_alterado(valor = "") ⇒ Object



114
115
116
# File 'lib/formatos/cnab400/arquivo/V08/trailler_commons.rb', line 114

def set_valor_vencimento_alterado valor = ""
  self.set_section_value(19, valor)
end