You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Boa tarde.
Segue o código para uma config onde clientes que não demonstram o total de ICMS com o FCP somado, possam ter essa flexibilidade na impressão da DANFE. Se possível, por favor, realizar a implementação.
nfephp-org/sped-da/src/NFe/Danfe.php
/**
* Parâmetro para exibir o FCP somado ao ICMS.
*
* @var boolean
*/
public $exibirSomatorioFcp = true;
if($this->exibirSomatorioFcp == true){
if ($campoImposto == 'vICMS') { // soma junto ao ICMS o FCP
$the_field_aux = $this->ICMSTot->getElementsByTagName('vFCP')->item(0);
if (isset($the_field_aux)) {
$value2 = $the_field_aux->nodeValue;
}
} elseif ($campoImposto == 'vST') { // soma junto ao ICMS ST o FCP ST
$the_field_aux = $this->ICMSTot->getElementsByTagName('vFCPST')->item(0);
if (isset($the_field_aux)) {
$value2 = $the_field_aux->nodeValue;
}
}
}
The text was updated successfully, but these errors were encountered:
Boa tarde.
Segue o código para uma config onde clientes que não demonstram o total de ICMS com o FCP somado, possam ter essa flexibilidade na impressão da DANFE. Se possível, por favor, realizar a implementação.
nfephp-org/sped-da/src/NFe/Danfe.php
The text was updated successfully, but these errors were encountered: