Skip to content

Commit

Permalink
inclusão do FCP no icms partilha
Browse files Browse the repository at this point in the history
  • Loading branch information
robmachado committed Apr 2, 2024
1 parent 289d50f commit 7657f9f
Showing 1 changed file with 26 additions and 1 deletion.
27 changes: 26 additions & 1 deletion src/Make.php
Original file line number Diff line number Diff line change
Expand Up @@ -3949,7 +3949,7 @@ public function tagICMS(stdClass $std): DOMElement
$this->conditionalNumberFormatting($std->pRedBCEfet, 4),
false,
"$identificador [item $std->item] Percentual de redução "
. "para obtenção da base de cálculo efetiva (vBCEfet)"
. "para obtenção da base de cálculo efetiva"
);
$this->dom->addChild(
$icms,
Expand Down Expand Up @@ -4410,6 +4410,9 @@ public function tagICMSPart(stdClass $std): DOMElement
'vBCST',
'pICMSST',
'vICMSST',
'vBCFCPST',
'pFCPST',
'vFCPST',
'pBCOp',
'UFST'
];
Expand Down Expand Up @@ -4510,6 +4513,28 @@ public function tagICMSPart(stdClass $std): DOMElement
true,
"[item $std->item] Valor do ICMS ST"
);
$this->dom->addChild(
$icmsPart,
'vBCFCPST',
$this->conditionalNumberFormatting($std->vBCFCPST),
false,
"[item $std->item] Valor da Base de Cálculo do FCP ST"
);
$this->dom->addChild(
$icmsPart,
'pFCPST',
$this->conditionalNumberFormatting($std->pFCPST, 4),
false,
"[item $std->item] Percentual do Fundo de "
. "Combate à Pobreza (FCP) ST"
);
$this->dom->addChild(
$icmsPart,
'vFCPST',
$this->conditionalNumberFormatting($std->vFCPST),
false,
"[item $std->item] Valor do FCP ST"
);
$this->dom->addChild(
$icmsPart,
'pBCOp',
Expand Down

0 comments on commit 7657f9f

Please sign in to comment.