@plasoft/boletos 1.0.35 → 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 +3 -3
- package/build/index.js +3 -4
- package/build/index.mjs +3 -4
- package/package.json +1 -1
|
@@ -377,7 +377,7 @@
|
|
|
377
377
|
|
|
378
378
|
<td style="border-bottom: none">
|
|
379
379
|
<div class="td-content align-right">
|
|
380
|
-
<strong class="align-right">RECIBO DO
|
|
380
|
+
<strong class="align-right">RECIBO DO PAGADOR</strong>
|
|
381
381
|
<strong style="font-size: 16px;">
|
|
382
382
|
{{boleto.linhaDigitavel}}
|
|
383
383
|
</strong>
|
|
@@ -648,7 +648,7 @@
|
|
|
648
648
|
|
|
649
649
|
<td style="border-bottom: none">
|
|
650
650
|
<div class="td-content align-right">
|
|
651
|
-
<strong class="align-right"
|
|
651
|
+
<strong class="align-right"> </strong>
|
|
652
652
|
<strong style="font-size: 16px;">
|
|
653
653
|
{{boleto.linhaDigitavel}}
|
|
654
654
|
</strong>
|
|
@@ -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
|
@@ -2241,13 +2241,12 @@ function gerarRemessa5({ dados }) {
|
|
|
2241
2241
|
arquivo.add("1");
|
|
2242
2242
|
arquivo.add("R");
|
|
2243
2243
|
arquivo.add("01");
|
|
2244
|
-
arquivo.add("
|
|
2245
|
-
arquivo.add("0");
|
|
2244
|
+
arquivo.add(" ");
|
|
2246
2245
|
arquivo.add("020");
|
|
2247
2246
|
arquivo.add(" ");
|
|
2248
2247
|
arquivo.add("2");
|
|
2249
2248
|
arquivo.add(beneficiario.cnpj.padStart(15, "0"));
|
|
2250
|
-
arquivo.add(dadosBancario.convenio.
|
|
2249
|
+
arquivo.add(dadosBancario.convenio.padStart(9, "0"));
|
|
2251
2250
|
arquivo.add("0014");
|
|
2252
2251
|
arquivo.add(dadosBancario.carteira.padStart(2, "0"));
|
|
2253
2252
|
arquivo.add(dadosBancario.variacao_carteira.padStart(3, "0"));
|
|
@@ -2418,7 +2417,7 @@ function gerarRemessa5({ dados }) {
|
|
|
2418
2417
|
arquivo.add("0001");
|
|
2419
2418
|
arquivo.add("5");
|
|
2420
2419
|
arquivo.add(" ".padEnd(9, " "));
|
|
2421
|
-
arquivo.add((sequencia +
|
|
2420
|
+
arquivo.add((sequencia + 2).toString().padStart(6, "0"));
|
|
2422
2421
|
arquivo.add("000000");
|
|
2423
2422
|
arquivo.add("00");
|
|
2424
2423
|
arquivo.add("000000000000000");
|
package/build/index.mjs
CHANGED
|
@@ -2204,13 +2204,12 @@ function gerarRemessa5({ dados }) {
|
|
|
2204
2204
|
arquivo.add("1");
|
|
2205
2205
|
arquivo.add("R");
|
|
2206
2206
|
arquivo.add("01");
|
|
2207
|
-
arquivo.add("
|
|
2208
|
-
arquivo.add("0");
|
|
2207
|
+
arquivo.add(" ");
|
|
2209
2208
|
arquivo.add("020");
|
|
2210
2209
|
arquivo.add(" ");
|
|
2211
2210
|
arquivo.add("2");
|
|
2212
2211
|
arquivo.add(beneficiario.cnpj.padStart(15, "0"));
|
|
2213
|
-
arquivo.add(dadosBancario.convenio.
|
|
2212
|
+
arquivo.add(dadosBancario.convenio.padStart(9, "0"));
|
|
2214
2213
|
arquivo.add("0014");
|
|
2215
2214
|
arquivo.add(dadosBancario.carteira.padStart(2, "0"));
|
|
2216
2215
|
arquivo.add(dadosBancario.variacao_carteira.padStart(3, "0"));
|
|
@@ -2381,7 +2380,7 @@ function gerarRemessa5({ dados }) {
|
|
|
2381
2380
|
arquivo.add("0001");
|
|
2382
2381
|
arquivo.add("5");
|
|
2383
2382
|
arquivo.add(" ".padEnd(9, " "));
|
|
2384
|
-
arquivo.add((sequencia +
|
|
2383
|
+
arquivo.add((sequencia + 2).toString().padStart(6, "0"));
|
|
2385
2384
|
arquivo.add("000000");
|
|
2386
2385
|
arquivo.add("00");
|
|
2387
2386
|
arquivo.add("000000000000000");
|