@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.
@@ -662,7 +662,7 @@
662
662
  <td colspan="4">
663
663
  <div class="td-content">
664
664
  <strong>BENEFICIÁRIO</strong>
665
- <span>{{beneficiario.nome}}</span>
665
+ <span>{{beneficiario.nome}} (CNPJ: {{beneficiario.cnpj}})</span>
666
666
  </div>
667
667
  </td>
668
668
 
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 + 3).toString().padStart(6, "0"));
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 + 3).toString().padStart(6, "0"));
2383
+ arquivo.add((sequencia + 2).toString().padStart(6, "0"));
2384
2384
  arquivo.add("000000");
2385
2385
  arquivo.add("00");
2386
2386
  arquivo.add("000000000000000");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plasoft/boletos",
3
- "version": "1.0.36",
3
+ "version": "1.0.37",
4
4
  "main": "build",
5
5
  "license": "ISC",
6
6
  "scripts": {