@plasoft/boletos 1.0.36 → 1.0.37
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.
- package/build/banco-brasil-boleto.hbs +1 -1
- package/build/index.js +1 -1
- package/build/index.mjs +1 -1
- package/package.json +1 -1
package/build/index.js
CHANGED
|
@@ -2417,7 +2417,7 @@ function gerarRemessa5({ dados }) {
|
|
|
2417
2417
|
arquivo.add("0001");
|
|
2418
2418
|
arquivo.add("5");
|
|
2419
2419
|
arquivo.add(" ".padEnd(9, " "));
|
|
2420
|
-
arquivo.add((sequencia +
|
|
2420
|
+
arquivo.add((sequencia + 2).toString().padStart(6, "0"));
|
|
2421
2421
|
arquivo.add("000000");
|
|
2422
2422
|
arquivo.add("00");
|
|
2423
2423
|
arquivo.add("000000000000000");
|
package/build/index.mjs
CHANGED
|
@@ -2380,7 +2380,7 @@ function gerarRemessa5({ dados }) {
|
|
|
2380
2380
|
arquivo.add("0001");
|
|
2381
2381
|
arquivo.add("5");
|
|
2382
2382
|
arquivo.add(" ".padEnd(9, " "));
|
|
2383
|
-
arquivo.add((sequencia +
|
|
2383
|
+
arquivo.add((sequencia + 2).toString().padStart(6, "0"));
|
|
2384
2384
|
arquivo.add("000000");
|
|
2385
2385
|
arquivo.add("00");
|
|
2386
2386
|
arquivo.add("000000000000000");
|