formatos-febraban 0.3.28 → 0.3.29
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6dfdaa2b5429efa05158f91ff2372fd7d30de833
|
|
4
|
+
data.tar.gz: ce655ac266439afd7db56ac549fbf1187f6142d4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 77f69d3e0aadb43fd5b16772df77ff9e5362cef01a9474e035a77a4550b4778cc7dcb2e21f116daa8b0f45a0ff575ca25f7b931493cc5fb8f01c8a876f32b1b1
|
|
7
|
+
data.tar.gz: da819e7ae9fd2616ed9ab6c185c4e7ec5178c14349ae19b2e546051bb24cb5b14e17853de6a7add312527e35b9d9d7fe75a3f9499b0b33cd21559502fa4692a5
|
|
@@ -29,8 +29,8 @@ class Febraban150E < FormatSection
|
|
|
29
29
|
5 => Position.new(6, 15, true), # Valor do Débito
|
|
30
30
|
6 => Position.new(7, 2, false), # Código da Moeda (01-UFIR, 03-REAL)
|
|
31
31
|
7 => Position.new(8, 60, false), # Uso da Empresa, sem processamento
|
|
32
|
-
|
|
33
|
-
|
|
32
|
+
8 => Position.new(9, 20, false), # Reservado pelo Sistema
|
|
33
|
+
9 => Position.new(10, 1, true) # Código de Movimento (0-Normal, 1-Cancelar)
|
|
34
34
|
})
|
|
35
35
|
end
|
|
36
36
|
|
|
@@ -297,7 +297,7 @@ class Febraban150E < FormatSection
|
|
|
297
297
|
if cod_movimento == 0 or cod_movimento == 1
|
|
298
298
|
case @versao
|
|
299
299
|
when '04'
|
|
300
|
-
self.set_section_value(
|
|
300
|
+
self.set_section_value(9, cod_movimento)
|
|
301
301
|
when '05'
|
|
302
302
|
self.set_section_value(11, cod_movimento)
|
|
303
303
|
end
|
|
@@ -29,8 +29,8 @@ class Febraban150F < FormatSection
|
|
|
29
29
|
5 => Position.new(6, 15, true), # Valor Original/Debitado
|
|
30
30
|
6 => Position.new(7, 2, false), # Código de Retorno
|
|
31
31
|
7 => Position.new(8, 60, false), # Uso da Empresa (Seção E)
|
|
32
|
-
|
|
33
|
-
|
|
32
|
+
8 => Position.new(11, 20, false), # Reservado pelo Sistema
|
|
33
|
+
9 => Position.new(12, 1, true) # Código de movimento (Seção E)
|
|
34
34
|
})
|
|
35
35
|
end
|
|
36
36
|
|
|
@@ -344,7 +344,7 @@ class Febraban150F < FormatSection
|
|
|
344
344
|
if cod_movimento == 0 or cod_movimento == 1
|
|
345
345
|
case @versao
|
|
346
346
|
when '04'
|
|
347
|
-
self.set_section_value(
|
|
347
|
+
self.set_section_value(9, cod_movimento)
|
|
348
348
|
when '05'
|
|
349
349
|
self.set_section_value(11, cod_movimento)
|
|
350
350
|
end
|